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
|
//! Clipboard access on macOS
//!
//! Implemented according to
//! https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/PasteboardGuide106/Articles/pbReading.html#//apple_ref/doc/uid/TP40008123-SW1
mod ns {
extern crate objc_id;
extern crate objc_foundation;
#[link(name = "AppKit", kind = "framework")]
extern {}
use std::mem;
use objc::runtime::{Class, Object};
use self::objc_id::{Id, Owned};
use self::objc_foundation::{NSArray, NSObject, NSDictionary, NSString};
use self::objc_foundation::{INSString, INSArray, INSObject};
/// Rust API for NSPasteboard
pub struct Pasteboard(Id<Object>);
/// Errors occurring when creating a Pasteboard
#[derive(Debug)]
pub enum NewPasteboardError {
GetPasteboardClass,
LoadGeneralPasteboard,
}
/// Errors occurring when reading a string from the pasteboard
#[derive(Debug)]
pub enum ReadStringError {
GetStringClass,
ReadObjectsForClasses,
}
/// Errors from writing strings to the pasteboard
#[derive(Debug)]
pub struct WriteStringError;
/// A trait for reading contents from the pasteboard
///
/// This is intended to reflect the underlying objective C API
/// `readObjectsForClasses:options:`.
pub trait PasteboardReadObject<T> {
type Err;
fn read_object(&self) -> Result<T, Self::Err>;
}
/// A trait for writing contents to the pasteboard
pub trait PasteboardWriteObject<T> {
type Err;
fn write_object(&mut self, T) -> Result<(), Self::Err>;
}
impl PasteboardReadObject<String> for Pasteboard {
type Err = ReadStringError;
fn read_object(&self) -> Result<String, ReadStringError> {
// Get string class; need this for passing to readObjectsForClasses
let ns_string_class = match Class::get("NSString") {
Some(class) => class,
None => return Err(ReadStringError::GetStringClass),
};
let ns_string: Id<Object> = unsafe {
let ptr: *mut Object = msg_send![ns_string_class, class];
if ptr.is_null() {
return Err(ReadStringError::GetStringClass);
} else {
Id::from_ptr(ptr)
}
};
let classes: Id<NSArray<NSObject, Owned>> = unsafe {
// I think this transmute is valid. It's going from an
// Id<Object> to an Id<NSObject>. From transmute's perspective,
// the only thing that matters is that they both have the same
// size (they do for now since the generic is phantom data). In
// both cases, the underlying pointer is an id (from `[NSString
// class]`), so again, this should be valid. There's just
// nothing implemented in objc_id or objc_foundation to do this
// "safely". By the way, the only reason this is necessary is
// because INSObject isn't implemented for Id<Object>.
//
// And if that argument isn't convincing, my final reasoning is
// that "it seems to work".
NSArray::from_vec(vec![mem::transmute(ns_string)])
};
// No options
//
// Apparently this doesn't compile without a type hint, so it maps
// objects to objects!
let options: Id<NSDictionary<NSObject, NSObject>> = NSDictionary::new();
// call [pasteboard readObjectsForClasses:options:]
let copied_items = unsafe {
let copied_items: *mut NSArray<NSString> = msg_send![
self.0,
readObjectsForClasses:&*classes
options:&*options
];
if copied_items.is_null() {
return Err(ReadStringError::ReadObjectsForClasses);
} else {
Id::from_ptr(copied_items) as Id<NSArray<NSString>>
}
};
// Ok, this is great. We have an NSArray<NSString>, and these have
// decent bindings. Use the first item returned (if an item was
// returned) or just return an empty string
//
// XXX Should this return an error if no items were returned?
let contents = copied_items
.first_object()
.map(|ns_string| ns_string.as_str().to_owned())
.unwrap_or_else(String::new);
Ok(contents)
}
}
impl PasteboardWriteObject<String> for Pasteboard {
type Err = WriteStringError;
fn write_object(&mut self, object: String) -> Result<(), Self::Err> {
let objects = NSArray::from_vec(vec![NSString::from_str(&object)]);
self.clear_contents();
// The writeObjects method returns true in case of success, and
// false otherwise.
let ok: bool = unsafe {
msg_send![self.0, writeObjects:objects]
};
if ok {
Ok(())
} else {
Err(WriteStringError)
}
}
}
impl ::std::error::Error for WriteStringError {
fn description(&self) -> &str {
"Failed writing string to the NSPasteboard (writeContents returned false)"
}
}
impl ::std::fmt::Display for WriteStringError {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.write_str(::std::error::Error::description(self))
}
}
impl ::std::error::Error for ReadStringError {
fn description(&self) -> &str {
match *self {
ReadStringError::GetStringClass => "NSString class not found",
ReadStringError::ReadObjectsForClasses => "readObjectsForClasses:options: failed",
}
}
}
impl ::std::fmt::Display for ReadStringError {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.write_str(::std::error::Error::description(self))
}
}
impl ::std::error::Error for NewPasteboardError {
fn description(&self) -> &str {
match *self {
NewPasteboardError::GetPasteboardClass => {
"NSPasteboard class not found"
},
NewPasteboardError::LoadGeneralPasteboard => {
"[NSPasteboard generalPasteboard] failed"
},
}
}
}
impl ::std::fmt::Display for NewPasteboardError {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
f.write_str(::std::error::Error::description(self))
}
}
impl Pasteboard {
pub fn new() -> Result<Pasteboard, NewPasteboardError> {
// NSPasteboard *pasteboard = [NSPasteboard generalPasteboard];
let ns_pasteboard_class = match Class::get("NSPasteboard") {
Some(class) => class,
None => return Err(NewPasteboardError::GetPasteboardClass),
};
let ptr = unsafe {
let ptr: *mut Object = msg_send![ns_pasteboard_class, generalPasteboard];
if ptr.is_null() {
return Err(NewPasteboardError::LoadGeneralPasteboard);
} else {
ptr
}
};
let id = unsafe {
Id::from_ptr(ptr)
};
Ok(Pasteboard(id))
}
/// Clears the existing contents of the pasteboard, preparing it for new
/// contents.
///
/// This is the first step in providing data on the pasteboard. The
/// return value is the change count of the pasteboard
pub fn clear_contents(&mut self) -> usize {
unsafe {
msg_send![self.0, clearContents]
}
}
}
}
#[derive(Debug)]
pub enum Error {
CreatePasteboard(ns::NewPasteboardError),
ReadString(ns::ReadStringError),
WriteString(ns::WriteStringError),
}
impl ::std::error::Error for Error {
fn cause(&self) -> Option<&::std::error::Error> {
match *self {
Error::CreatePasteboard(ref err) => Some(err),
Error::ReadString(ref err) => Some(err),
Error::WriteString(ref err) => Some(err),
}
}
fn description(&self) -> &str {
match *self {
Error::CreatePasteboard(ref _err) => "Failed to create pasteboard",
Error::ReadString(ref _err) => "Failed to read string from pasteboard",
Error::WriteString(ref _err) => "Failed to write string to pasteboard",
}
}
}
impl ::std::fmt::Display for Error {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
match *self {
Error::CreatePasteboard(ref err) => {
write!(f, "Failed to create pasteboard: {}", err)
},
Error::ReadString(ref err) => {
write!(f, "Failed to read string from pasteboard: {}", err)
},
Error::WriteString(ref err) => {
write!(f, "Failed to write string to pasteboard: {}", err)
},
}
}
}
impl From<ns::NewPasteboardError> for Error {
fn from(val: ns::NewPasteboardError) -> Error {
Error::CreatePasteboard(val)
}
}
impl From<ns::ReadStringError> for Error {
fn from(val: ns::ReadStringError) -> Error {
Error::ReadString(val)
}
}
impl From<ns::WriteStringError> for Error {
fn from(val: ns::WriteStringError) -> Error {
Error::WriteString(val)
}
}
pub struct Clipboard(ns::Pasteboard);
impl super::Load for Clipboard {
type Err = Error;
fn new() -> Result<Self, Error> {
Ok(Clipboard(ns::Pasteboard::new()?))
}
fn load_primary(&self) -> Result<String, Self::Err> {
use self::ns::PasteboardReadObject;
self.0.read_object()
.map_err(::std::convert::From::from)
}
}
impl super::Store for Clipboard {
fn store_primary<S>(&mut self, contents: S) -> Result<(), Self::Err>
where S: Into<String>
{
use self::ns::PasteboardWriteObject;
self.0.write_object(contents.into())
.map_err(::std::convert::From::from)
}
fn store_selection<S>(&mut self, _contents: S) -> Result<(), Self::Err>
where S: Into<String>
{
// No such thing on macOS
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::Clipboard;
use ::{Load, Store};
#[test]
fn create_clipboard_save_load_contents() {
let mut clipboard = Clipboard::new().unwrap();
clipboard.store_primary("arst").unwrap();
let loaded = clipboard.load_primary().unwrap();
assert_eq!("arst", loaded);
}
}
|