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
//! Module with `Storage` and `StoragePool` that are able to manage the storage of
//! an specific device, and perform certain operations like sending and getting
//! files, tracks, etc.

pub mod files;

use files::{File, FileMetadata};
use libmtp_sys as ffi;
use std::collections::HashMap;
use std::path::Path;

#[cfg(unix)]
use std::os::unix::io::AsRawFd;

use crate::{device::MtpDevice, object::AsObjectId, util::HandlerReturn, Result};

/// Internal function to retrieve files and folders from a single storage or the whole storage pool.
fn files_and_folders<'a>(mtpdev: &'a MtpDevice, storage_id: u32, parent: Parent) -> Vec<File<'a>> {
    let parent_id = parent.faf_id();

    let mut head =
        unsafe { ffi::LIBMTP_Get_Files_And_Folders(mtpdev.inner, storage_id, parent_id) };

    let mut files = Vec::new();
    while !head.is_null() {
        files.push(File {
            inner: head,
            owner: mtpdev,
        });

        head = unsafe { (*head).next };
    }

    files
}

/// Represents the parent folder of an object, the top-most parent is called the "root" as in
/// *nix like systems.
#[derive(Debug, Copy, Clone)]
pub enum Parent {
    Root,
    Folder(u32),
}

impl Parent {
    pub(crate) fn faf_id(self) -> u32 {
        match self {
            Parent::Root => ffi::LIBMTP_FILES_AND_FOLDERS_ROOT,
            Parent::Folder(id) => id,
        }
    }

    pub(crate) fn to_id(self) -> u32 {
        match self {
            Parent::Root => 0,
            Parent::Folder(id) => id,
        }
    }
}

/// Storage descriptor of some MTP device, note that updating the storage and
/// keeping a old copy of this struct is impossible.
pub struct Storage<'a> {
    pub(crate) inner: *mut ffi::LIBMTP_devicestorage_t,
    pub(crate) owner: &'a MtpDevice,
}

impl<'a> Storage<'a> {
    /// Retrieves the id of this storage.
    pub fn id(&self) -> u32 {
        unsafe { (*self.inner).id }
    }

    /// Formats this storage (if its device supports the operation).
    ///
    /// **WARNING:** This **WILL DELETE ALL DATA** from the device, make sure
    /// you've got confirmation from the user before calling this function.
    pub fn format_storage(&self) -> Result<()> {
        let res = unsafe { ffi::LIBMTP_Format_Storage(self.owner.inner, self.inner) };

        if res != 0 {
            Err(self.owner.latest_error().unwrap_or_default())
        } else {
            Ok(())
        }
    }

    /// Retrieves the contents of a certain folder (`parent`) in this storage, the result contains
    /// both files and folders, note that this request will always perform I/O with the device.
    pub fn files_and_folders(&self, parent: Parent) -> Vec<File<'a>> {
        let storage_id = unsafe { (*self.inner).id };
        files_and_folders(self.owner, storage_id, parent)
    }

    /// Retrieves a file from the device storage to a local file identified by a filename.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn get_file_to_path<C>(
        &self,
        file: impl AsObjectId,
        path: impl AsRef<Path>,
        callback: Option<C>,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> bool,
    {
        files::get_file_to_path(self.owner, file, path, callback)
    }

    /// Retrieves a file from the device storage to a local file identified by a descriptor.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    #[cfg(unix)]
    pub fn get_file_to_descriptor<C>(
        &self,
        file: impl AsObjectId,
        descriptor: impl AsRawFd,
        callback: Option<C>,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> bool,
    {
        files::get_file_to_descriptor(self.owner, file, descriptor, callback)
    }

    /// Retrieves a file from the device storage and calls handler with chunks of data.
    ///
    /// The `handler` parameter is the function that receives the chunks of data with
    /// the following signature `(data: &[u8], read_len: &mut u32) -> HandlerReturn`,
    /// where the `read_len` should be modified with the amount of bytes you actually
    /// read, the `HandlerReturn` allows you to specify if the operation was ok, had an
    /// error or if you want to cancel it.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn get_file_to_handler<H, C>(
        &self,
        file: impl AsObjectId,
        handler: H,
        callback: Option<C>,
    ) -> Result<()>
    where
        H: FnMut(&[u8], &mut u32) -> HandlerReturn,
        C: FnMut(u64, u64) -> bool,
    {
        files::get_file_to_handler(self.owner, file, handler, callback)
    }

    /// Sends a local file to the MTP device who this storage belongs to.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn send_file_from_path<C>(
        &self,
        path: impl AsRef<Path>,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: Option<C>,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> bool,
    {
        let storage_id = self.id();
        files::send_file_from_path(self.owner, storage_id, path, parent, metadata, callback)
    }

    /// Sends a local file via descriptor to the MTP device who this storage belongs to.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    #[cfg(unix)]
    pub fn send_file_from_descriptor<C>(
        &self,
        descriptor: impl AsRawFd,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: Option<C>,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> bool,
    {
        let storage_id = self.id();
        files::send_file_from_descriptor(
            self.owner, storage_id, descriptor, parent, metadata, callback,
        )
    }

    /// Sends a bunch of data to the MTP device who this storage belongs to.
    ///
    /// The `handler` parameter is the function that receives the chunks of data with
    /// the following signature `(data: &mut [u8], write_len: &mut u32) -> HandlerReturn`,
    /// where the `write_len` should be modified with the amount of bytes you actually
    /// write, the `HandlerReturn` allows you to specify if the operation was ok, had an
    /// error or if you want to cancel it.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn send_file_from_handler<H, C>(
        &self,
        handler: H,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: Option<C>,
    ) -> Result<File<'a>>
    where
        H: FnMut(&mut [u8], &mut u32) -> HandlerReturn,
        C: FnMut(u64, u64) -> bool,
    {
        let storage_id = self.id();
        files::send_file_from_handler(self.owner, storage_id, handler, parent, metadata, callback)
    }
}

/// Represents all the storage "pool" of one MTP device, contain all the storage entries
/// of one MTP device, and contains some methods to send or get files from the primary storage.
pub struct StoragePool<'a> {
    order: Vec<u32>,
    pool: HashMap<u32, Storage<'a>>,
    owner: &'a MtpDevice,
}

/// Iterator that allows us to get each `Storage` with its id.
pub struct StoragePoolIter<'a> {
    pool: &'a HashMap<u32, Storage<'a>>,
    itr: usize,
    order: &'a [u32],
}

impl<'a> Iterator for StoragePoolIter<'a> {
    type Item = (u32, &'a Storage<'a>);

    fn next(&mut self) -> Option<Self::Item> {
        if self.itr > self.pool.len() {
            None
        } else {
            let next_id = self.order[self.itr];
            let next_val = self.pool.get(&next_id)?;

            self.itr += 1;

            Some((next_id, next_val))
        }
    }
}

impl<'a> StoragePool<'a> {
    /// Build a StoragePool from a raw ptr of devicestorage_t
    pub(crate) fn from_raw(
        owner: &'a MtpDevice,
        mut ptr: *mut ffi::LIBMTP_devicestorage_t,
    ) -> Self {
        unsafe {
            let mut pool = HashMap::new();
            let mut order = Vec::new();
            while !ptr.is_null() {
                let id = (*ptr).id;
                order.push(id);
                pool.insert(id, Storage { inner: ptr, owner });

                ptr = (*ptr).next;
            }

            Self { order, pool, owner }
        }
    }

    /// Returns the storage that has the given id, if there's one.
    pub fn by_id(&self, id: u32) -> Option<&Storage<'a>> {
        self.pool.get(&id)
    }

    /// Returns an iterator over the storages, this is a HashMap iterator.
    pub fn iter(&'a self) -> StoragePoolIter<'a> {
        StoragePoolIter {
            pool: &self.pool,
            itr: 0,
            order: &self.order,
        }
    }

    /// Retrieves the contents of a certain folder (`parent`) in all storages, the result contains
    /// both files and folders, note that this request will always perform I/O with the device.
    pub fn files_and_folders(&self, parent: Parent) -> Vec<File<'a>> {
        files_and_folders(self.owner, 0, parent)
    }

    /// Retrieves a file from the device storage to a local file identified by a filename, note
    /// that this is just a convenience method since it's not necessary to depend on the `Storage`,
    /// this is because objects have unique ids across all the device.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn get_file_to_path<C>(
        &self,
        file: impl AsObjectId,
        path: impl AsRef<Path>,
        callback: Option<C>,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> bool,
    {
        files::get_file_to_path(self.owner, file, path, callback)
    }

    /// Retrieves a file from the device storage to a local file identified by a descriptor, note
    /// that this is just a convenience method since it's not necessary to depend on the `Storage`,
    /// this is because objects have unique ids across all the device.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    #[cfg(unix)]
    pub fn get_file_to_descriptor<C>(
        &self,
        file: impl AsObjectId,
        descriptor: impl AsRawFd,
        callback: Option<C>,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> bool,
    {
        files::get_file_to_descriptor(self.owner, file, descriptor, callback)
    }

    /// Retrieves a file from the device storage and calls handler with chunks of data, note that
    /// this is just a convenience method since it's not necessary to depend on the `Storage`, this
    /// is because objects have unique ids across all the device.
    ///
    /// The `handler` parameter is the function that receives the chunks of data with
    /// the following signature `(data: &[u8], read_len: &mut u32) -> HandlerReturn`,
    /// where the `read_len` should be modified with the amount of bytes you actually
    /// read, the `HandlerReturn` allows you to specify if the operation was ok, had an
    /// error or if you want to cancel it.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn get_file_to_handler<H, C>(
        &self,
        file: impl AsObjectId,
        handler: H,
        callback: Option<C>,
    ) -> Result<()>
    where
        H: FnMut(&[u8], &mut u32) -> HandlerReturn,
        C: FnMut(u64, u64) -> bool,
    {
        files::get_file_to_handler(self.owner, file, handler, callback)
    }

    /// Sends a local file to the MTP device who this storage belongs to, note that this method
    /// will send the file to the primary storage.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn send_file_from_path<C>(
        &self,
        path: impl AsRef<Path>,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: Option<C>,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> bool,
    {
        let storage_id = 0;
        files::send_file_from_path(self.owner, storage_id, path, parent, metadata, callback)
    }

    /// Sends a local file via descriptor to the MTP device who this storage belongs to, note
    /// that this method will send the file to the primary storage.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    #[cfg(unix)]
    pub fn send_file_from_descriptor<C>(
        &self,
        descriptor: impl AsRawFd,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: Option<C>,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> bool,
    {
        let storage_id = 0;
        files::send_file_from_descriptor(
            self.owner, storage_id, descriptor, parent, metadata, callback,
        )
    }

    /// Sends a bunch of data to the MTP device who this storage belongs to, note that this
    /// method will send the file to primary storage.
    ///
    /// The `handler` parameter is the function that receives the chunks of data with
    /// the following signature `(data: &mut [u8], write_len: &mut u32) -> HandlerReturn`,
    /// where the `write_len` should be modified with the amount of bytes you actually
    /// write, the `HandlerReturn` allows you to specify if the operation was ok, had an
    /// error or if you want to cancel it.
    ///
    /// The `callback` parameter is an optional progress function with the following signature
    /// `(sent_bytes: u64, total_bytes: u64) -> bool`, this way you can check the progress and
    /// if you want to cancel operation you just return `false`.
    pub fn send_file_from_handler<H, C>(
        &self,
        handler: H,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: Option<C>,
    ) -> Result<File<'a>>
    where
        H: FnMut(&mut [u8], &mut u32) -> HandlerReturn,
        C: FnMut(u64, u64) -> bool,
    {
        let storage_id = 0;
        files::send_file_from_handler(self.owner, storage_id, handler, parent, metadata, callback)
    }
}