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
//! 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;
pub mod folders;

use derivative::Derivative;
use files::{File, FileMetadata};
use libmtp_sys as ffi;
use num_derive::FromPrimitive;
use num_traits::FromPrimitive;

use std::borrow::Cow;
use std::collections::HashMap;
use std::ffi::CStr;
use std::fmt::{self, Debug};
use std::path::Path;

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

use crate::device::MtpDevice;
use crate::object::AsObjectId;
use crate::storage::folders::Folder;
use crate::storage::folders::{create_folder, get_folder_list, get_folder_list_storage};
use crate::util::{CallbackReturn, HandlerReturn};
use crate::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,
        }
    }
}

#[derive(Debug, Copy, Clone, FromPrimitive)]
pub enum StorageType {
    Undefined = 0,
    FixedRom,
    RemovableRom,
    FixedRam,
    RemovableRam,
}

#[derive(Debug, Copy, Clone, FromPrimitive)]
pub enum FilesystemType {
    Undefined = 0,
    GenericFlat,
    GenericHierarchical,
    DesignCameraFilesystem,
}

#[derive(Debug, Copy, Clone, FromPrimitive)]
pub enum AccessCapability {
    ReadWrite = 0,
    ReadOnly,
    ReadOnlyWithObjectDeletion,
}

/// 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 Debug for Storage<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Storage")
            .field("id", &self.id())
            .field("storage_type", &self.storage_type())
            .field("filesystem_type", &self.filesystem_type())
            .field("access_capability", &self.access_capability())
            .field("maximum_capacity", &self.maximum_capacity())
            .field("free_space_in_bytes", &self.free_space_in_bytes())
            .field("free_space_in_objects", &self.free_space_in_objects())
            .field("volume_identifier", &self.volume_identifier())
            .field("description", &self.description())
            .finish()
    }
}

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

    /// Returns the `MtpDevice` that owns this storage
    pub fn device(&self) -> &MtpDevice {
        self.owner
    }

    /// Returns the storage type
    pub fn storage_type(&self) -> StorageType {
        let stype = unsafe { (*self.inner).StorageType };
        StorageType::from_u16(stype).unwrap_or_else(|| StorageType::Undefined)
    }

    /// Returns the file system type
    pub fn filesystem_type(&self) -> FilesystemType {
        let ftype = unsafe { (*self.inner).FilesystemType };
        FilesystemType::from_u16(ftype).unwrap_or_else(|| FilesystemType::Undefined)
    }

    /// Returns the access capability
    pub fn access_capability(&self) -> AccessCapability {
        let cap = unsafe { (*self.inner).AccessCapability };
        AccessCapability::from_u16(cap).expect("Unknown access capability")
    }

    /// Returns the maximum capacity
    pub fn maximum_capacity(&self) -> u64 {
        unsafe { (*self.inner).MaxCapacity }
    }

    /// Returns the free space in bytes
    pub fn free_space_in_bytes(&self) -> u64 {
        unsafe { (*self.inner).FreeSpaceInBytes }
    }

    /// Returns the free space in objects
    pub fn free_space_in_objects(&self) -> u64 {
        unsafe { (*self.inner).FreeSpaceInObjects }
    }

    /// Returns the storage description
    pub fn description(&self) -> Option<&str> {
        unsafe {
            if (*self.inner).StorageDescription.is_null() {
                None
            } else {
                let cstr = CStr::from_ptr((*self.inner).StorageDescription);
                Some(cstr.to_str().expect("Invalid UTF-8"))
            }
        }
    }

    /// Returns the volume identifier
    pub fn volume_identifier(&self) -> Option<&str> {
        unsafe {
            if (*self.inner).VolumeIdentifier.is_null() {
                None
            } else {
                let cstr = CStr::from_ptr((*self.inner).VolumeIdentifier);
                Some(cstr.to_str().expect("Invalid UTF-8"))
            }
        }
    }

    /// 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)
    }

    /// Optionally returns a `Folder`, with this struct you can build a tree
    /// structure (see `Folder` for more info)
    pub fn folder_list(&self) -> Option<Folder<'a>> {
        unsafe { get_folder_list_storage(self.owner, (*self.inner).id) }
    }

    /// Tries to create a new folder in this storage for the relevant `MtpDevice`, returns the id
    /// of the new folder and its name, note that the name may be different due to device file
    /// system restrictions.
    pub fn create_folder<'b>(&self, name: &'b str, parent: Parent) -> Result<(u32, Cow<'b, str>)> {
        unsafe { create_folder(self.owner, name, parent, (*self.inner).id) }
    }

    /// Retrieves a file from the device storage to a local file identified by a filename. Note
    /// that `get_file_to_path` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    pub fn get_file_to_path(&self, file: impl AsObjectId, path: impl AsRef<Path>) -> Result<()> {
        files::get_file_to_path(self.owner, file, path)
    }

    /// Retrieves a file from the device storage to a local file identified by a filename. Note
    /// that `get_file_to_path` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    pub fn get_file_to_path_with_callback<C>(
        &self,
        file: impl AsObjectId,
        path: impl AsRef<Path>,
        callback: C,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        files::get_file_to_path_with_callback(self.owner, file, path, callback)
    }

    /// Retrieves a file from the device storage to a local file identified by a descriptor. Note
    /// that `get_file_to_descriptor` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    #[cfg(unix)]
    pub fn get_file_to_descriptor(
        &self,
        file: impl AsObjectId,
        descriptor: impl AsRawFd,
    ) -> Result<()> {
        files::get_file_to_descriptor(self.owner, file, descriptor)
    }

    /// Retrieves a file from the device storage to a local file identified by a descriptor. Note
    /// that `get_file_to_descriptor` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    #[cfg(unix)]
    pub fn get_file_to_descriptor_with_callback<C>(
        &self,
        file: impl AsObjectId,
        descriptor: impl AsRawFd,
        callback: C,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        files::get_file_to_descriptor_with_callback(self.owner, file, descriptor, callback)
    }

    /// Retrieves a file from the device storage and calls handler with chunks of data. Note
    /// that `get_file_to_descriptor` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `handler` parameter is a function that receives the chunks of data with the following
    /// signature `(data: &[u8]) -> HandlerReturn`, you should return `HandlerReturn::Ok(readed_bytes)`
    /// if there weren't errors with the amount of bytes you read from `data`.
    pub fn get_file_to_handler<H>(&self, file: impl AsObjectId, handler: H) -> Result<()>
    where
        H: FnMut(&[u8]) -> HandlerReturn,
    {
        files::get_file_to_handler(self.owner, file, handler)
    }

    /// Retrieves a file from the device storage and calls handler with chunks of data. Note
    /// that `get_file_to_descriptor` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `handler` parameter is a function that receives the chunks of data with the following
    /// signature `(data: &[u8]) -> HandlerReturn`, you should return `HandlerReturn::Ok(readed_bytes)`
    /// if there weren't errors with the amount of bytes you read from `data`.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    pub fn get_file_to_handler_with_callback<H, C>(
        &self,
        file: impl AsObjectId,
        handler: H,
        callback: C,
    ) -> Result<()>
    where
        H: FnMut(&[u8]) -> HandlerReturn,
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        files::get_file_to_handler_with_callback(self.owner, file, handler, callback)
    }

    /// Sends a local file to the MTP device who this storage belongs to.
    pub fn send_file_from_path<C>(
        &self,
        path: impl AsRef<Path>,
        parent: Parent,
        metadata: FileMetadata<'_>,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        let storage_id = self.id();
        files::send_file_from_path(self.owner, storage_id, path, parent, metadata)
    }

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

    /// Sends a local file via descriptor to the MTP device who this storage belongs to.
    #[cfg(unix)]
    pub fn send_file_from_descriptor(
        &self,
        descriptor: impl AsRawFd,
        parent: Parent,
        metadata: FileMetadata<'_>,
    ) -> Result<File<'a>> {
        let storage_id = self.id();
        files::send_file_from_descriptor(self.owner, storage_id, descriptor, parent, metadata)
    }

    /// Sends a local file via descriptor to the MTP device who this storage belongs to.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    #[cfg(unix)]
    pub fn send_file_from_descriptor_with_callback<C>(
        &self,
        descriptor: impl AsRawFd,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: C,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        let storage_id = self.id();
        files::send_file_from_descriptor_with_callback(
            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 a function that gives you a chunk to write data with the
    /// following signature `(data: &mut [u8]) -> HandlerReturn`, you should return
    /// `HandlerReturn::Ok(written_bytes)` if there weren't errors with the amount of bytes you
    /// wrote to `data`.
    pub fn send_file_from_handler<H>(
        &self,
        handler: H,
        parent: Parent,
        metadata: FileMetadata<'_>,
    ) -> Result<File<'a>>
    where
        H: FnMut(&mut [u8]) -> HandlerReturn,
    {
        let storage_id = self.id();
        files::send_file_from_handler(self.owner, storage_id, parent, metadata, handler)
    }

    /// Sends a bunch of data to the MTP device who this storage belongs to.
    ///
    /// The `handler` parameter is a function that gives you a chunk to write data with the
    /// following signature `(data: &mut [u8]) -> HandlerReturn`, you should return
    /// `HandlerReturn::Ok(written_bytes)` if there weren't errors with the amount of bytes you
    /// wrote to `data`.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    pub fn send_file_from_handler_with_callback<H, C>(
        &self,
        handler: H,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: C,
    ) -> Result<File<'a>>
    where
        H: FnMut(&mut [u8]) -> HandlerReturn,
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        let storage_id = self.id();
        files::send_file_from_handler_with_callback(
            self.owner, storage_id, parent, metadata, handler, 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.
#[derive(Derivative)]
#[derivative(Debug)]
pub struct StoragePool<'a> {
    order: Vec<u32>,
    pool: HashMap<u32, Storage<'a>>,

    #[derivative(Debug = "ignore")]
    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 `MtpDevice` that owns this storage pool
    pub fn device(&self) -> &MtpDevice {
        self.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)
    }

    /// Optionally returns a `Folder`, with this struct you can build a tree
    /// structure (see `Folder` for more info)
    pub fn folder_list(&self) -> Option<Folder<'_>> {
        get_folder_list(self.owner)
    }

    /// Tries to create a new folder in the default storage of the relevant `MtpDevice`, returns
    /// the id of the new folder and its name, note that the name may be different due to device
    /// file system restrictions.
    pub fn create_folder<'b>(&self, name: &'b str, parent: Parent) -> Result<(u32, Cow<'b, str>)> {
        create_folder(self.owner, name, parent, 0)
    }

    /// Retrieves a file from the device storage to a local file identified by a filename. Note
    /// that `get_file_to_path` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    pub fn get_file_to_path(&self, file: impl AsObjectId, path: impl AsRef<Path>) -> Result<()> {
        files::get_file_to_path(self.owner, file, path)
    }

    /// Retrieves a file from the device storage to a local file identified by a filename. Note
    /// that `get_file_to_path` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    pub fn get_file_to_path_with_callback<C>(
        &self,
        file: impl AsObjectId,
        path: impl AsRef<Path>,
        callback: C,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        files::get_file_to_path_with_callback(self.owner, file, path, callback)
    }

    /// Retrieves a file from the device storage to a local file identified by a descriptor. Note
    /// that `get_file_to_descriptor` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    #[cfg(unix)]
    pub fn get_file_to_descriptor(
        &self,
        file: impl AsObjectId,
        descriptor: impl AsRawFd,
    ) -> Result<()> {
        files::get_file_to_descriptor(self.owner, file, descriptor)
    }

    /// Retrieves a file from the device storage to a local file identified by a descriptor. Note
    /// that `get_file_to_descriptor` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    #[cfg(unix)]
    pub fn get_file_to_descriptor_with_callback<C>(
        &self,
        file: impl AsObjectId,
        descriptor: impl AsRawFd,
        callback: C,
    ) -> Result<()>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        files::get_file_to_descriptor_with_callback(self.owner, file, descriptor, callback)
    }

    /// Retrieves a file from the device storage and calls handler with chunks of data. Note
    /// that `get_file_to_handler` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `handler` parameter is a function that receives the chunks of data with the following
    /// signature `(data: &[u8]) -> HandlerReturn`, you should return `HandlerReturn::Ok(readed_bytes)`
    /// if there weren't errors with the amount of bytes you read from `data`.
    pub fn get_file_to_handler<H>(&self, file: impl AsObjectId, handler: H) -> Result<()>
    where
        H: FnMut(&[u8]) -> HandlerReturn,
    {
        files::get_file_to_handler(self.owner, file, handler)
    }

    /// Retrieves a file from the device storage and calls handler with chunks of data. Note
    /// that `get_file_to_handler` on `Storage` and `StoragePool` are semantically the same because
    /// objects have unique ids across all the device.
    ///
    /// The `handler` parameter is a function that receives the chunks of data with the following
    /// signature `(data: &[u8]) -> HandlerReturn`, you should return `HandlerReturn::Ok(readed_bytes)`
    /// if there weren't errors with the amount of bytes you read from `data`.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    pub fn get_file_to_handler_with_callback<H, C>(
        &self,
        file: impl AsObjectId,
        handler: H,
        callback: C,
    ) -> Result<()>
    where
        H: FnMut(&[u8]) -> HandlerReturn,
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        files::get_file_to_handler_with_callback(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.
    pub fn send_file_from_path<C>(
        &self,
        path: impl AsRef<Path>,
        parent: Parent,
        metadata: FileMetadata<'_>,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        let storage_id = 0;
        files::send_file_from_path(self.owner, storage_id, path, parent, metadata)
    }

    /// 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 a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    pub fn send_file_from_path_with_callback<C>(
        &self,
        path: impl AsRef<Path>,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: C,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        let storage_id = 0;
        files::send_file_from_path_with_callback(
            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.
    #[cfg(unix)]
    pub fn send_file_from_descriptor(
        &self,
        descriptor: impl AsRawFd,
        parent: Parent,
        metadata: FileMetadata<'_>,
    ) -> Result<File<'a>> {
        let storage_id = 0;
        files::send_file_from_descriptor(self.owner, storage_id, descriptor, parent, metadata)
    }

    /// 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 a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    #[cfg(unix)]
    pub fn send_file_from_descriptor_with_callback<C>(
        &self,
        descriptor: impl AsRawFd,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: C,
    ) -> Result<File<'a>>
    where
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        let storage_id = 0;
        files::send_file_from_descriptor_with_callback(
            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 a function that gives you a chunk to write data with the
    /// following signature `(data: &mut [u8]) -> HandlerReturn`, you should return
    /// `HandlerReturn::Ok(written_bytes)` if there weren't errors with the amount of bytes you
    /// wrote to `data`.
    pub fn send_file_from_handler<H>(
        &self,
        handler: H,
        parent: Parent,
        metadata: FileMetadata<'_>,
    ) -> Result<File<'a>>
    where
        H: FnMut(&mut [u8]) -> HandlerReturn,
    {
        let storage_id = 0;
        files::send_file_from_handler(self.owner, storage_id, parent, metadata, handler)
    }

    /// 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 a function that gives you a chunk to write data with the
    /// following signature `(data: &mut [u8]) -> HandlerReturn`, you should return
    /// `HandlerReturn::Ok(written_bytes)` if there weren't errors with the amount of bytes you
    /// wrote to `data`.
    ///
    /// The `callback` parameter is a progress function with the following signature `(sent_bytes:
    /// u64, total_bytes: u64) -> CallbackReturn`, this way you can check the progress and if you
    /// want to cancel operation you just return `CallbackReturn::Cancel`.
    pub fn send_file_from_handler_with_callback<H, C>(
        &self,
        handler: H,
        parent: Parent,
        metadata: FileMetadata<'_>,
        callback: C,
    ) -> Result<File<'a>>
    where
        H: FnMut(&mut [u8]) -> HandlerReturn,
        C: FnMut(u64, u64) -> CallbackReturn,
    {
        let storage_id = 0;
        files::send_file_from_handler_with_callback(
            self.owner, storage_id, parent, metadata, handler, callback,
        )
    }
}