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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
#![cfg(all(unix, feature = "with_x11"))] use crate::api::{EventData, EventHub}; use crate::clipboard::debounce::SelectionDebounce; use crate::clipboard::{ClipboardError, ClipboardResult, SelectionProvider}; use log::debug; use std::ffi::CString; use std::mem::MaybeUninit; use std::sync::atomic::{AtomicBool, Ordering}; use std::sync::{Arc, RwLock}; use std::thread; use x11::xlib; use zeroize::Zeroize; #[derive(Debug)] struct Atoms { pub primary: xlib::Atom, pub clipboard: xlib::Atom, pub targets: xlib::Atom, pub string: xlib::Atom, pub utf8_string: xlib::Atom, } struct Context { display: *mut xlib::Display, window: xlib::Window, atoms: Atoms, open: AtomicBool, provider: Arc<RwLock<dyn SelectionProvider>>, store_name: String, block_id: String, event_hub: Arc<dyn EventHub>, } impl Context { fn new( display_name: &str, store_name: String, block_id: String, event_hub: Arc<dyn EventHub>, provider: Arc<RwLock<dyn SelectionProvider>>, ) -> ClipboardResult<Self> { unsafe { let c_display_name = CString::new(display_name)?; let display = xlib::XOpenDisplay(c_display_name.as_ptr()); if display.is_null() { return Err(ClipboardError("Cannot open display".to_string())); } let root = xlib::XDefaultRootWindow(display); let black = xlib::XBlackPixel(display, xlib::XDefaultScreen(display)); let window = xlib::XCreateSimpleWindow(display, root, 0, 0, 1, 1, 0, black, black); debug!("Window id: {}", window); xlib::XSelectInput(display, window, xlib::StructureNotifyMask | xlib::PropertyChangeMask); let primary = Self::get_atom(display, "PRIMARY"); if primary != xlib::XA_PRIMARY { debug!("XA_PRIMARY is not named PRIMARY"); } let clipboard = Self::get_atom(display, "CLIPBOARD"); let targets = Self::get_atom(display, "TARGETS"); let string = Self::get_atom(display, "STRING"); if string != xlib::XA_STRING { debug!("XA_STRING is not named STRING"); } let utf8_string = Self::get_atom(display, "UTF8_STRING"); let atoms = Atoms { primary, clipboard, targets, string, utf8_string, }; debug!("{:?}", atoms); Ok(Context { display, window, atoms, open: AtomicBool::new(true), provider, store_name, block_id, event_hub, }) } } fn get_atom(display: *mut xlib::Display, name: &str) -> xlib::Atom { unsafe { let c_name = CString::new(name).unwrap(); xlib::XInternAtom(display, c_name.as_ptr(), xlib::False) } } fn destroy(&self) { if self.open.swap(false, Ordering::Relaxed) { unsafe { xlib::XDestroyWindow(self.display, self.window); xlib::XFlush(self.display); } } } fn own_selection(&self) -> bool { unsafe { xlib::XSetSelectionOwner(self.display, self.atoms.clipboard, self.window, xlib::CurrentTime); let owner = xlib::XGetSelectionOwner(self.display, self.atoms.clipboard); if owner != self.window { debug!("Failed taking ownership of {}", self.atoms.clipboard); return false; } } true } fn clear_selection(&self) { unsafe { for selection in &[self.atoms.primary, self.atoms.clipboard] { xlib::XSetSelectionOwner(self.display, *selection, 0, xlib::CurrentTime); } xlib::XFlush(self.display); } } fn is_open(&self) -> bool { self.open.load(Ordering::Relaxed) } fn currently_providing(&self) -> Option<String> { self.provider.read().ok()?.current_selection_name() } fn provide_next(&self) { if let Ok(mut provider) = self.provider.write() { provider.get_selection(); } } } impl Drop for Context { fn drop(&mut self) { unsafe { xlib::XCloseDisplay(self.display); } } } unsafe impl Send for Context {} unsafe impl Sync for Context {} pub struct Clipboard { context: Arc<Context>, handle: RwLock<Option<thread::JoinHandle<()>>>, } impl Clipboard { pub fn new<T>( display_name: &str, selection_provider: T, store_name: String, block_id: String, event_hub: Arc<dyn EventHub>, ) -> ClipboardResult<Clipboard> where T: SelectionProvider + 'static, { let context = Arc::new(Context::new( display_name, store_name, block_id, event_hub, Arc::new(RwLock::new(selection_provider)), )?); let handle = thread::spawn({ let cloned = context.clone(); move || run(cloned) }); Ok(Clipboard { context, handle: RwLock::new(Some(handle)), }) } pub fn destroy(&self) { self.context.destroy() } pub fn is_open(&self) -> bool { self.context.is_open() } pub fn currently_providing(&self) -> Option<String> { self.context.currently_providing() } pub fn provide_next(&self) { self.context.provide_next() } pub fn wait(&self) -> ClipboardResult<()> { let mut maybe_handle = self.handle.write().unwrap(); if let Some(handle) = maybe_handle.take() { handle.join().map_err(|_| ClipboardError("wait timeout".to_string()))?; } Ok(()) } } impl Drop for Clipboard { fn drop(&mut self) { self.destroy() } } fn run(context: Arc<Context>) { let mut debounce = SelectionDebounce::new(context.provider.clone()); unsafe { if !context.own_selection() { return; } let mut event: xlib::XEvent = MaybeUninit::zeroed().assume_init(); loop { xlib::XFlush(context.display); debug!("Wating for event"); xlib::XNextEvent(context.display, &mut event); debug!("Got event: {}", event.get_type()); match event.get_type() { xlib::SelectionRequest => { let mut selection: xlib::XSelectionEvent = MaybeUninit::zeroed().assume_init(); selection.type_ = xlib::SelectionNotify; selection.display = event.selection_request.display; selection.requestor = event.selection_request.requestor; selection.selection = event.selection_request.selection; selection.time = event.selection_request.time; selection.target = event.selection_request.target; selection.property = event.selection_request.property; debug!("Selection target: {}", selection.target); if selection.target == context.atoms.targets { let atoms = [context.atoms.targets, context.atoms.string, context.atoms.utf8_string]; xlib::XChangeProperty( context.display, selection.requestor, selection.property, xlib::XA_ATOM, 32, xlib::PropModeReplace, &atoms as *const xlib::Atom as *const u8, atoms.len() as i32, ); } else if selection.target == context.atoms.string || selection.target == context.atoms.utf8_string { match debounce.get_selection() { Some(mut value) => { if let Some(property) = debounce.current_selection_name() { context.event_hub.send(EventData::ClipboardProviding { store_name: context.store_name.clone(), block_id: context.block_id.clone(), property, }); } let content: &[u8] = value.as_ref(); xlib::XChangeProperty( context.display, selection.requestor, selection.property, selection.target, 8, xlib::PropModeReplace, content.as_ptr(), content.len() as i32, ); value.zeroize(); } None => { context.clear_selection(); debug!("Last part: Reply with NONE"); selection.property = 0; } } } else { debug!("Reply with NONE"); selection.property = 0; } xlib::XSendEvent( context.display, selection.requestor, xlib::False, xlib::NoEventMask, &mut xlib::XEvent { selection } as *mut xlib::XEvent, ); xlib::XSync(context.display, xlib::False); } xlib::SelectionClear => { debug!("Lost ownership"); break; } xlib::DestroyNotify => { debug!("Window destroyed"); break; } ignored => debug!("Ignoring event: {}", ignored), } } debug!("Ending event loop"); context.event_hub.send(EventData::ClipboardDone); context.destroy(); } }