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 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
//! Copying and clearing clipboard contents.
use std::{
cell::{Cell, RefCell},
collections::{hash_map::Entry, HashMap, HashSet},
ffi::OsString,
fs::{remove_dir, remove_file, File, OpenOptions},
io::{self, Read, Seek, SeekFrom, Write},
iter,
os::unix::io::IntoRawFd,
path::PathBuf,
rc::Rc,
sync::mpsc::sync_channel,
thread,
};
use log::trace;
use wayland_client::{ConnectError, EventQueue, Main, Proxy};
use wayland_protocols::wlr::unstable::data_control::v1::client::{
zwlr_data_control_device_v1::ZwlrDataControlDeviceV1, zwlr_data_control_manager_v1::ZwlrDataControlManagerV1,
zwlr_data_control_source_v1::ZwlrDataControlSourceV1,
};
use crate::{
common::{self, initialize, CommonData},
handlers::{data_device_handler, data_source_handler, DataDeviceHandler, DataSourceError, DataSourceHandler},
seat_data::SeatData,
utils::{self, copy_data, is_text},
};
/// The clipboard to operate on.
#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
pub enum ClipboardType {
/// The regular clipboard.
Regular,
/// The "primary" clipboard.
///
/// Working with the "primary" clipboard requires the compositor to support the data-control
/// protocol of version 2 or above.
Primary,
/// Operate on both clipboards at once.
///
/// Useful for atomically setting both clipboards at once. This option requires the "primary"
/// clipboard to be supported.
Both,
}
impl Default for ClipboardType {
#[inline]
fn default() -> Self {
ClipboardType::Regular
}
}
/// MIME type to offer the copied data under.
#[derive(Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
pub enum MimeType {
/// Detect the MIME type automatically from the data.
Autodetect,
/// Offer a number of common plain text MIME types.
Text,
/// Offer a specific MIME type.
Specific(String),
}
/// Source for copying.
#[derive(Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
pub enum Source {
/// Copy contents of the standard input.
StdIn,
/// Copy the given bytes.
Bytes(Box<[u8]>),
}
/// Source for copying, with a MIME type.
///
/// Used for [`copy_multi`].
///
/// [`copy_multi`]: fn.copy_multi.html
#[derive(Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
pub struct MimeSource {
pub source: Source,
pub mime_type: MimeType,
}
/// Seat to operate on.
#[derive(Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
pub enum Seat {
/// Operate on all existing seats at once.
All,
/// Operate on a seat with the given name.
Specific(String),
}
impl Default for Seat {
#[inline]
fn default() -> Self {
Seat::All
}
}
/// Number of paste requests to serve.
#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
pub enum ServeRequests {
/// Serve requests indefinitely.
Unlimited,
/// Serve only the given number of requests.
Only(usize),
}
impl Default for ServeRequests {
#[inline]
fn default() -> Self {
ServeRequests::Unlimited
}
}
/// Options and flags that are used to customize the copying.
#[derive(Clone, Eq, PartialEq, Debug, Default, Hash, PartialOrd, Ord)]
pub struct Options {
/// The clipboard to work with.
clipboard: ClipboardType,
/// The seat to work with.
seat: Seat,
/// Trim the trailing newline character before copying.
///
/// This flag is only applied for text MIME types.
trim_newline: bool,
/// Do not spawn a separate thread for serving copy requests.
///
/// Setting this flag will result in the call to `copy()` **blocking** until all data sources
/// it creates are destroyed, e.g. until someone else copies something into the clipboard.
foreground: bool,
/// Number of paste requests to serve.
///
/// Limiting the number of paste requests to one effectively clears the clipboard after the
/// first paste. It can be used when copying e.g. sensitive data, like passwords. Note however
/// that certain apps may have issues pasting when this option is used, in particular XWayland
/// clients are known to suffer from this.
serve_requests: ServeRequests,
}
/// A copy operation ready to start serving requests.
pub struct PreparedCopy {
should_quit: Rc<Cell<bool>>,
queue: EventQueue,
sources: Vec<Proxy<ZwlrDataControlSourceV1>>,
data_paths: HashMap<String, Rc<RefCell<PathBuf>>>,
error: Rc<RefCell<Option<DataSourceError>>>,
}
/// Errors that can occur for copying the source data to a temporary file.
#[derive(thiserror::Error, Debug)]
pub enum SourceCreationError {
#[error("Couldn't create a temporary directory")]
TempDirCreate(#[source] io::Error),
#[error("Couldn't create a temporary file")]
TempFileCreate(#[source] io::Error),
#[error("Couldn't copy data to the temporary file")]
DataCopy(#[source] utils::CopyDataError),
#[error("Couldn't write to the temporary file")]
TempFileWrite(#[source] io::Error),
#[error("Couldn't open the temporary file for newline trimming")]
TempFileOpen(#[source] io::Error),
#[error("Couldn't get the temporary file metadata for newline trimming")]
TempFileMetadata(#[source] io::Error),
#[error("Couldn't seek the temporary file for newline trimming")]
TempFileSeek(#[source] io::Error),
#[error("Couldn't read the last byte of the temporary file for newline trimming")]
TempFileRead(#[source] io::Error),
#[error("Couldn't truncate the temporary file for newline trimming")]
TempFileTruncate(#[source] io::Error),
}
/// Errors that can occur for copying and clearing the clipboard.
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error("There are no seats")]
NoSeats,
#[error("Couldn't connect to the Wayland compositor")]
WaylandConnection(#[source] ConnectError),
#[error("Wayland compositor communication error")]
WaylandCommunication(#[source] io::Error),
#[error("A required Wayland protocol ({} version {}) is not supported by the compositor",
name,
version)]
MissingProtocol { name: &'static str, version: u32 },
#[error("The compositor does not support primary selection")]
PrimarySelectionUnsupported,
#[error("The requested seat was not found")]
SeatNotFound,
#[error("Error copying the source into a temporary file")]
TempCopy(#[source] SourceCreationError),
#[error("Couldn't remove the temporary file")]
TempFileRemove(#[source] io::Error),
#[error("Couldn't remove the temporary directory")]
TempDirRemove(#[source] io::Error),
#[error("Error satisfying a paste request")]
Paste(#[source] DataSourceError),
}
impl From<common::Error> for Error {
fn from(x: common::Error) -> Self {
use common::Error::*;
match x {
WaylandConnection(err) => Error::WaylandConnection(err),
WaylandCommunication(err) => Error::WaylandCommunication(err),
MissingProtocol { name, version } => Error::MissingProtocol { name, version },
}
}
}
impl Options {
/// Creates a blank new set of options ready for configuration.
#[inline]
pub fn new() -> Self {
Self::default()
}
/// Sets the clipboard to work with.
#[inline]
pub fn clipboard(&mut self, clipboard: ClipboardType) -> &mut Self {
self.clipboard = clipboard;
self
}
/// Sets the seat to use for copying.
#[inline]
pub fn seat(&mut self, seat: Seat) -> &mut Self {
self.seat = seat;
self
}
/// Sets the flag for trimming the trailing newline.
///
/// This flag is only applied for text MIME types.
#[inline]
pub fn trim_newline(&mut self, trim_newline: bool) -> &mut Self {
self.trim_newline = trim_newline;
self
}
/// Sets the flag for not spawning a separate thread for serving copy requests.
///
/// Setting this flag will result in the call to `copy()` **blocking** until all data sources
/// it creates are destroyed, e.g. until someone else copies something into the clipboard.
#[inline]
pub fn foreground(&mut self, foreground: bool) -> &mut Self {
self.foreground = foreground;
self
}
/// Sets the number of requests to serve.
///
/// Limiting the number of requests to one effectively clears the clipboard after the first
/// paste. It can be used when copying e.g. sensitive data, like passwords. Note however that
/// certain apps may have issues pasting when this option is used, in particular XWayland
/// clients are known to suffer from this.
#[inline]
pub fn serve_requests(&mut self, serve_requests: ServeRequests) -> &mut Self {
self.serve_requests = serve_requests;
self
}
/// Invokes the copy operation. See `copy()`.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{MimeType, Options, Source};
///
/// let opts = Options::new();
/// opts.copy(Source::Bytes([1, 2, 3][..].into()), MimeType::Autodetect)?;
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn copy(self, source: Source, mime_type: MimeType) -> Result<(), Error> {
copy(self, source, mime_type)
}
/// Invokes the copy_multi operation. See `copy_multi()`.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{MimeSource, MimeType, Options, Source};
///
/// let opts = Options::new();
/// opts.copy_multi(vec![MimeSource { source: Source::Bytes([1, 2, 3][..].into()),
/// mime_type: MimeType::Autodetect },
/// MimeSource { source: Source::Bytes([7, 8, 9][..].into()),
/// mime_type: MimeType::Text }])?;
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn copy_multi(self, sources: Vec<MimeSource>) -> Result<(), Error> {
copy_multi(self, sources)
}
/// Invokes the prepare_copy operation. See `prepare_copy()`.
///
/// # Panics
///
/// Panics if `foreground` is `false`.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{MimeSource, MimeType, Options, Source};
///
/// let mut opts = Options::new();
/// opts.foreground(true);
/// let prepared_copy = opts.prepare_copy(Source::Bytes([1, 2, 3][..].into()),
/// MimeType::Autodetect)?;
/// prepared_copy.serve()?;
///
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn prepare_copy(self, source: Source, mime_type: MimeType) -> Result<PreparedCopy, Error> {
prepare_copy(self, source, mime_type)
}
/// Invokes the prepare_copy_multi operation. See `prepare_copy_multi()`.
///
/// # Panics
///
/// Panics if `foreground` is `false`.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{MimeSource, MimeType, Options, Source};
///
/// let mut opts = Options::new();
/// opts.foreground(true);
/// let prepared_copy =
/// opts.prepare_copy_multi(vec![MimeSource { source: Source::Bytes([1, 2, 3][..].into()),
/// mime_type: MimeType::Autodetect },
/// MimeSource { source: Source::Bytes([7, 8, 9][..].into()),
/// mime_type: MimeType::Text }])?;
/// prepared_copy.serve()?;
///
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn prepare_copy_multi(self, sources: Vec<MimeSource>) -> Result<PreparedCopy, Error> {
prepare_copy_multi(self, sources)
}
}
impl PreparedCopy {
/// Starts serving copy requests.
///
/// This function **blocks** until all requests are served or the clipboard is taken over by
/// some other application.
pub fn serve(mut self) -> Result<(), Error> {
// Loop until we're done.
while !self.should_quit.get() {
self.queue
.dispatch(&mut (), |_, _, _| {})
.map_err(Error::WaylandCommunication)?;
// Check if all sources have been destroyed.
let all_destroyed = self.sources.iter().all(|x| !x.is_alive());
if all_destroyed {
self.should_quit.set(true);
}
}
// Clean up the temp file and directory.
//
// We want to try cleaning up all files and folders, so if any errors occur in process,
// collect them into a vector without interruption, and then return the first one.
let mut results = Vec::new();
let mut dropped = HashSet::new();
for data_path in self.data_paths.values() {
let buf = data_path.as_ptr();
// data_paths can contain duplicate items, we want to free each only once.
if dropped.contains(&buf) {
continue;
};
dropped.insert(buf);
let mut data_path = data_path.borrow_mut();
match remove_file(&*data_path).map_err(Error::TempFileRemove) {
Ok(()) => {
data_path.pop();
results.push(remove_dir(&*data_path).map_err(Error::TempDirRemove));
}
result @ Err(_) => results.push(result),
}
}
// Return the error, if any.
let result: Result<_, _> = results.into_iter().collect();
result?;
// Check if an error occurred during data transfer.
if let Some(err) = self.error.borrow_mut().take() {
return Err(Error::Paste(err));
}
Ok(())
}
}
fn make_source(source: Source,
mime_type: MimeType,
trim_newline: bool)
-> Result<(String, PathBuf), SourceCreationError> {
let temp_dir = tempfile::tempdir().map_err(SourceCreationError::TempDirCreate)?;
let mut temp_filename = temp_dir.into_path();
temp_filename.push("stdin");
trace!("Temp filename: {}", temp_filename.to_string_lossy());
let mut temp_file = File::create(&temp_filename).map_err(SourceCreationError::TempFileCreate)?;
if let Source::Bytes(data) = source {
temp_file.write_all(&data).map_err(SourceCreationError::TempFileWrite)?;
} else {
// Copy the standard input into the target file.
copy_data(None, temp_file.into_raw_fd(), true).map_err(SourceCreationError::DataCopy)?;
}
let mime_type = match mime_type {
MimeType::Autodetect => {
match tree_magic_mini::from_filepath(&temp_filename) {
Some(magic) => Ok(magic),
None => Err(SourceCreationError::TempFileOpen(std::io::Error::new(std::io::ErrorKind::Other,
"problem with temp file"))),
}?.to_string()
}
MimeType::Text => "text/plain".to_string(),
MimeType::Specific(mime_type) => mime_type,
};
trace!("Base MIME type: {}", mime_type);
// Trim the trailing newline if needed.
if trim_newline && is_text(&mime_type) {
let mut temp_file = OpenOptions::new().read(true)
.write(true)
.open(&temp_filename)
.map_err(SourceCreationError::TempFileOpen)?;
let metadata = temp_file.metadata().map_err(SourceCreationError::TempFileMetadata)?;
let length = metadata.len();
if length > 0 {
temp_file.seek(SeekFrom::End(-1))
.map_err(SourceCreationError::TempFileSeek)?;
let mut buf = [0];
temp_file.read_exact(&mut buf)
.map_err(SourceCreationError::TempFileRead)?;
if buf[0] == b'\n' {
temp_file.set_len(length - 1)
.map_err(SourceCreationError::TempFileTruncate)?;
}
}
}
Ok((mime_type, temp_filename))
}
fn get_devices(primary: bool,
seat: Seat,
socket_name: Option<OsString>)
-> Result<(EventQueue, Main<ZwlrDataControlManagerV1>, Vec<ZwlrDataControlDeviceV1>), Error> {
let CommonData { mut queue,
clipboard_manager,
seats, } = initialize(primary, socket_name)?;
// Check if there are no seats.
if seats.borrow_mut().is_empty() {
return Err(Error::NoSeats);
}
let supports_primary = Rc::new(Cell::new(false));
// Go through the seats and get their data devices.
for seat in &*seats.borrow_mut() {
// TODO: fast path here if all seats.
let mut handler = DataDeviceHandler::new(seat.detach(), true, supports_primary.clone());
let device = clipboard_manager.get_data_device(seat);
device.quick_assign(move |data_device, event, dispatch_data| {
data_device_handler(&mut handler, data_device, event, dispatch_data)
});
let seat_data = seat.as_ref().user_data().get::<RefCell<SeatData>>().unwrap();
seat_data.borrow_mut().set_device(Some(device.detach()));
}
// Retrieve all seat names.
queue.sync_roundtrip(&mut (), |_, _, _| {})
.map_err(Error::WaylandCommunication)?;
// Check if the compositor supports primary selection.
if primary && !supports_primary.get() {
return Err(Error::PrimarySelectionUnsupported);
}
// Figure out which devices we're interested in.
let devices = seats.borrow_mut()
.iter()
.map(|seat| seat.as_ref().user_data().get::<RefCell<SeatData>>().unwrap().borrow())
.filter_map(|data| {
let SeatData { name, device, .. } = &*data;
if device.is_none() {
// Can't handle seats without devices.
return None;
}
let device = device.as_ref().cloned().unwrap();
match seat {
Seat::All => {
// If no seat was specified, handle all of them.
return Some(device);
}
Seat::Specific(ref desired_name) => {
if let Some(name) = name {
if name == desired_name {
return Some(device);
}
}
}
}
None
})
.collect::<Vec<_>>();
// If we didn't find the seat, print an error message and exit.
if devices.is_empty() {
return Err(Error::SeatNotFound);
}
Ok((queue, clipboard_manager, devices))
}
/// Clears the clipboard for the given seat.
///
/// If `seat` is `None`, clears clipboards of all existing seats.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::{copy::{clear, ClipboardType, Seat}};
///
/// clear(ClipboardType::Regular, Seat::All)?;
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn clear(clipboard: ClipboardType, seat: Seat) -> Result<(), Error> {
clear_internal(clipboard, seat, None)
}
pub(crate) fn clear_internal(clipboard: ClipboardType, seat: Seat, socket_name: Option<OsString>) -> Result<(), Error> {
let primary = clipboard != ClipboardType::Regular;
let (mut queue, _, devices) = get_devices(primary, seat, socket_name)?;
for device in devices {
if clipboard == ClipboardType::Primary || clipboard == ClipboardType::Both {
device.set_primary_selection(None);
}
if clipboard == ClipboardType::Regular || clipboard == ClipboardType::Both {
device.set_selection(None);
}
}
// We're clearing the clipboard so just do one roundtrip and quit.
queue.sync_roundtrip(&mut (), |_, _, _| {})
.map_err(Error::WaylandCommunication)?;
Ok(())
}
/// Prepares a data copy to the clipboard.
///
/// The data is copied from `source` and offered in the `mime_type` MIME type. See `Options` for
/// customizing the behavior of this operation.
///
/// This function can be used instead of `copy()` when it's desirable to separately prepare the
/// copy operation, handle any errors that this may produce, and then start the serving loop,
/// potentially past a fork (which is how `wl-copy` uses it). It is meant to be used in the
/// foreground mode and does not spawn any threads.
///
/// # Panics
///
/// Panics if `foreground` is `false`.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{MimeSource, MimeType, Options, Source};
///
/// let mut opts = Options::new();
/// opts.foreground(true);
/// let prepared_copy = opts.prepare_copy(Source::Bytes([1, 2, 3][..].into()),
/// MimeType::Autodetect)?;
/// prepared_copy.serve()?;
///
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn prepare_copy(options: Options, source: Source, mime_type: MimeType) -> Result<PreparedCopy, Error> {
assert!(options.foreground);
let sources = vec![MimeSource { source, mime_type }];
prepare_copy_internal(options, sources, None)
}
/// Prepares a data copy to the clipboard, offering multiple data sources.
///
/// The data from each source in `sources` is copied and offered in the corresponding MIME type.
/// See `Options` for customizing the behavior of this operation.
///
/// If multiple sources specify the same MIME type, the first one is offered. If one of the MIME
/// types is text, all automatically added plain text offers will fall back to the first source
/// with a text MIME type.
///
/// This function can be used instead of `copy()` when it's desirable to separately prepare the
/// copy operation, handle any errors that this may produce, and then start the serving loop,
/// potentially past a fork (which is how `wl-copy` uses it). It is meant to be used in the
/// foreground mode and does not spawn any threads.
///
/// # Panics
///
/// Panics if `foreground` is `false`.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{MimeSource, MimeType, Options, Source};
///
/// let mut opts = Options::new();
/// opts.foreground(true);
/// let prepared_copy =
/// opts.prepare_copy_multi(vec![MimeSource { source: Source::Bytes([1, 2, 3][..].into()),
/// mime_type: MimeType::Autodetect },
/// MimeSource { source: Source::Bytes([7, 8, 9][..].into()),
/// mime_type: MimeType::Text }])?;
/// prepared_copy.serve()?;
///
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn prepare_copy_multi(options: Options, sources: Vec<MimeSource>) -> Result<PreparedCopy, Error> {
assert!(options.foreground);
prepare_copy_internal(options, sources, None)
}
fn prepare_copy_internal(options: Options,
sources: Vec<MimeSource>,
socket_name: Option<OsString>)
-> Result<PreparedCopy, Error> {
let Options { clipboard,
seat,
trim_newline,
serve_requests,
.. } = options;
let primary = clipboard != ClipboardType::Regular;
let (queue, clipboard_manager, devices) = get_devices(primary, seat, socket_name)?;
// Collect the source data to copy.
let data_paths = {
let mut data_paths = HashMap::new();
let mut text_data_path = None;
for MimeSource { source, mime_type } in sources.into_iter() {
let (mime_type, mut data_path) = make_source(source, mime_type, trim_newline).map_err(Error::TempCopy)?;
let mime_type_is_text = is_text(&mime_type);
match data_paths.entry(mime_type) {
Entry::Occupied(_) => {
// This MIME type has already been specified, so ignore it.
remove_file(&*data_path).map_err(Error::TempFileRemove)?;
data_path.pop();
remove_dir(&*data_path).map_err(Error::TempDirRemove)?;
}
Entry::Vacant(entry) => {
let data_path = Rc::new(RefCell::new(data_path));
if text_data_path.is_none() && mime_type_is_text {
text_data_path = Some(data_path.clone());
}
entry.insert(data_path);
}
}
}
// If the MIME type is text, offer it in some other common formats.
if let Some(text_data_path) = text_data_path {
let text_mimes = ["text/plain;charset=utf-8",
"text/plain",
"STRING",
"UTF8_STRING",
"TEXT"];
for &mime_type in &text_mimes {
// We don't want to overwrite an explicit mime type, because it might be bound to a
// different data_path
if !data_paths.contains_key(mime_type) {
data_paths.insert(mime_type.to_string(), text_data_path.clone());
}
}
}
data_paths
};
// This bool can be set to true when serving a request: either if an error occurs, or if the
// number of requests to serve was limited and the last request was served.
let should_quit = Rc::new(Cell::new(false));
// An error that occurred while serving a request, if any.
let error = Rc::new(RefCell::new(None::<DataSourceError>));
let serve_requests = Rc::new(Cell::new(serve_requests));
// Create an iterator over (device, primary) for source creation later.
//
// This is needed because for ClipboardType::Both each device needs to appear twice because
// separate data sources need to be made for the regular and the primary clipboards (data
// sources cannot be reused).
let devices_iter = devices.iter().flat_map(|device| {
let first = match clipboard {
ClipboardType::Regular => iter::once((device, false)),
ClipboardType::Primary => iter::once((device, true)),
ClipboardType::Both => iter::once((device, false)),
};
let second = if clipboard == ClipboardType::Both {
iter::once(Some((device, true)))
} else {
iter::once(None)
};
first.chain(second.flatten())
});
// Create the data sources and set them as selections.
let sources = devices_iter.map(|(device, primary)| {
let mut handler = DataSourceHandler::new(data_paths.clone(),
should_quit.clone(),
serve_requests.clone());
let data_source = clipboard_manager.create_data_source();
let error = error.clone();
data_source.as_ref().user_data().set(move || error);
data_source.quick_assign(move |data_source, event, dispatch_data| {
data_source_handler(&mut handler, data_source, event, dispatch_data)
});
for mime_type in data_paths.keys() {
data_source.offer(mime_type.clone());
}
if primary {
device.set_primary_selection(Some(&data_source));
} else {
device.set_selection(Some(&data_source));
}
// If we need to serve 0 requests, kill the data source right away.
if let ServeRequests::Only(0) = serve_requests.get() {
data_source.destroy();
}
data_source.detach().into()
})
.collect::<Vec<Proxy<_>>>();
Ok(PreparedCopy { should_quit,
queue,
sources,
data_paths,
error })
}
/// Copies data to the clipboard.
///
/// The data is copied from `source` and offered in the `mime_type` MIME type. See `Options` for
/// customizing the behavior of this operation.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{copy, MimeType, Options, Source};
///
/// let opts = Options::new();
/// copy(opts, Source::Bytes([1, 2, 3][..].into()), MimeType::Autodetect)?;
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn copy(options: Options, source: Source, mime_type: MimeType) -> Result<(), Error> {
let sources = vec![MimeSource { source, mime_type }];
copy_internal(options, sources, None)
}
/// Copies data to the clipboard, offering multiple data sources.
///
/// The data from each source in `sources` is copied and offered in the corresponding MIME type.
/// See `Options` for customizing the behavior of this operation.
///
/// If multiple sources specify the same MIME type, the first one is offered. If one of the MIME
/// types is text, all automatically added plain text offers will fall back to the first source
/// with a text MIME type.
///
/// # Examples
///
/// ```no_run
/// # extern crate wl_clipboard_rs;
/// # use wl_clipboard_rs::copy::Error;
/// # fn foo() -> Result<(), Error> {
/// use wl_clipboard_rs::copy::{MimeSource, MimeType, Options, Source};
///
/// let opts = Options::new();
/// opts.copy_multi(vec![MimeSource { source: Source::Bytes([1, 2, 3][..].into()),
/// mime_type: MimeType::Autodetect },
/// MimeSource { source: Source::Bytes([7, 8, 9][..].into()),
/// mime_type: MimeType::Text }])?;
/// # Ok(())
/// # }
/// ```
#[inline]
pub fn copy_multi(options: Options, sources: Vec<MimeSource>) -> Result<(), Error> {
copy_internal(options, sources, None)
}
pub(crate) fn copy_internal(options: Options,
sources: Vec<MimeSource>,
socket_name: Option<OsString>)
-> Result<(), Error> {
if options.foreground {
prepare_copy_internal(options, sources, socket_name)?.serve()
} else {
// The copy must be prepared on the thread because PreparedCopy isn't Send.
// To receive errors from prepare_copy, use a channel.
let (tx, rx) = sync_channel(1);
thread::spawn(move || match prepare_copy_internal(options, sources, socket_name) {
Ok(prepared_copy) => {
// prepare_copy completed successfully, report that.
drop(tx.send(None));
// There's nobody listening for errors at this point, just drop it.
drop(prepared_copy.serve());
}
Err(err) => drop(tx.send(Some(err))),
});
if let Some(err) = rx.recv().unwrap() {
return Err(err);
}
Ok(())
}
}