1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
use std::any::Any;
use std::rc::Rc;
use std::cell::RefCell;
use std::sync::Arc;
use std::sync::RwLock;
/// Represents the user data that is provided to callbacks when they're invoked.
/// A `UserData` object is registered with the callback using one of the
/// hook commands. The user data can be virtually any type that implements the
/// `Any` trait capable of being downcast to its original type. There are
/// four variants for the user data. Which one to use depends on how the
/// callback user data is shared. If the data is unique to one callback, then
/// `BoxedData` should be enough. For single threaded sharing among more than
/// one callback, `SharedData` will do the trick. If, for any odd sort of reason
/// threading somehow becomes relevant to the user data object, `SyncData` would
/// be the variant to use.
///
/// The class has 4 creation functions - one for each variant. And a convenience
/// function that takes a closure that accepts the `UserData`'s wrapped value
/// as a parameter. A good way to avoid all the dereferencing it takes to
/// access the interior objects nested inside the sharing and mutability host
/// objects.
/// # Variants
/// * `BoxedData` - Can hold user data that only one callback uses.
/// * `SharedData` - Can allow more than one callback or other code to hold
/// a cloned copy that references the same user data.
/// * `SyncData` - Like `SharedData`, but uses the sync objects internally
/// to allow the user data to be shared among threads.
/// * `NoData` - Represents the absence of data.
///
#[derive(Debug)]
pub enum UserData {
BoxedData ( Box < RefCell < dyn Any > > ),
SharedData ( Rc < RefCell < dyn Any > > ),
SyncData ( Arc < RwLock < dyn Any > > ),
NoData,
}
unsafe impl Send for UserData {}
use UserData::*;
impl UserData {
/// Creates a `BoxedData` variant. The type to use for user data that
/// isn't shared between Hexchat callbacks.
/// # Arguments
/// * `user_data` - The user data to box.
/// # Returns
/// * `BoxedData(user_data)`.
///
pub fn boxed<D:'static>(user_data: D) -> Self {
BoxedData(Box::new(RefCell::new(user_data)))
}
/// Creates a `SharedData` variant instance. The type to use if the user
/// data needs to have shared access.
/// # Arguments
/// * `user_data` - The user data to wrap internally with `Rc<RefCell<_>>`.
/// # Returns
/// `SharedData(user_data)`.
///
pub fn shared<D:'static>(user_data: D) -> Self {
SharedData(Rc::new(RefCell::new(user_data)))
}
/// Creates a `SyncData` variant. The type to use if the user data needs
/// to be accessible from other threads.
/// # Arguments
/// `user_data` - The user data to wrap internally with `Arc<Mutex<_>>`.
/// # Returns
/// * `SyncData(user_data)`.
///
pub fn sync<D:'static>(user_data: D) -> Self {
SyncData(Arc::new(RwLock::new(user_data)))
}
/// Applies the given function to the wrapped object inside a `UserData`
/// object. The type of the wrapped data has to be compatible with the
/// type of the function's single parameter, or the downcast won't work
/// and `apply()` will panic.
/// # Arguments
/// * `f` - A function, or closure, to invoke with the user data, free of
/// any wrappers. The format of the function needs to be
/// `Fn(&T) -> R`, where `D` is the type of the user data; and `R`
/// is the return type that gets wrapped in an `Option` and returned
/// by `apply()`.
/// # Returns
/// * Returns the return value of function `f` if the downcast is
/// successful.
///
pub fn apply<D:'static, F, R>(&self, f: F) -> R
where
F: FnOnce(&D) -> R
{
const ERRMSG: &str = "Unable to downcast to requested type.";
match self {
BoxedData(d) => {
f(d.borrow().downcast_ref::<D>().expect(ERRMSG))
},
SharedData(d) => {
f(d.borrow().downcast_ref::<D>().expect(ERRMSG))
},
SyncData(d) => {
f((*d.read().unwrap()).downcast_ref::<D>().expect(ERRMSG))
},
NoData => { panic!("Can't downcast `NoData`.") },
}
}
/// Same as the `apply()` function except allows mutable access to the
/// user data contents.
///
pub fn apply_mut<D:'static, F, R>(&self, f: F) -> R
where
F: FnOnce(&mut D) -> R
{
const ERRMSG: &str = "Unable to downcast to requested type.";
match self {
BoxedData(d) => {
f(d.borrow_mut().downcast_mut::<D>().expect(ERRMSG))
},
SharedData(d) => {
f(d.borrow_mut().downcast_mut::<D>().expect(ERRMSG))
},
SyncData(d) => {
f((*d.write().unwrap()).downcast_mut::<D>().expect(ERRMSG))
},
NoData => { panic!("Can't downcast `NoData`.") },
}
}
}
impl Clone for UserData {
/// The clone operation for `UserData` allows each variant to be cloned,
/// except for `BoxedData`. The reason `BoxedData` is prohibited is to
/// deter sharing a box between callbacks, as that's not what
/// a box is meant to be used for. One of the shared variants is more
/// appropriate to share access to user data.
///
fn clone(&self) -> Self {
match self {
SharedData(d) => { SharedData(d.clone()) },
SyncData(d) => { SyncData(d.clone()) },
NoData => { NoData },
BoxedData(_) => {
panic!("Can't clone `BoxedData`. If user data needs to be \
shared, The `SharedData` or `SyncData` variants of \
`UserData` should be used.")
},
}
}
}
impl Default for UserData {
/// Implemented to support the `take()` operation in `CallbackData` so the
/// user data can be retrieved with ownership when a callback is
/// deregistered. That take operation replaces the user data the callback
/// owns with the default value (`NoData`).
///
fn default() -> Self { NoData }
}