use Cancellable;
use Drive;
use Error;
use File;
use Icon;
use Mount;
use MountMountFlags;
use MountOperation;
use MountUnmountFlags;
use ffi;
#[cfg(feature = "futures")]
use futures_core;
use glib;
use glib::object::Downcast;
use glib::object::IsA;
use glib::signal::SignalHandlerId;
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::boxed::Box as Box_;
use std::mem;
use std::mem::transmute;
use std::ptr;
glib_wrapper! {
pub struct Volume(Object<ffi::GVolume, ffi::GVolumeIface>);
match fn {
get_type => || ffi::g_volume_get_type(),
}
}
pub trait VolumeExt: Sized {
fn can_eject(&self) -> bool;
fn can_mount(&self) -> bool;
#[deprecated]
fn eject<'a, P: Into<Option<&'a Cancellable>>, Q: FnOnce(Result<(), Error>) + Send + 'static>(&self, flags: MountUnmountFlags, cancellable: P, callback: Q);
#[deprecated]
#[cfg(feature = "futures")]
fn eject_future(&self, flags: MountUnmountFlags) -> Box_<futures_core::Future<Item = (Self, ()), Error = (Self, Error)>>;
fn eject_with_operation<'a, 'b, P: Into<Option<&'a MountOperation>>, Q: Into<Option<&'b Cancellable>>, R: FnOnce(Result<(), Error>) + Send + 'static>(&self, flags: MountUnmountFlags, mount_operation: P, cancellable: Q, callback: R);
#[cfg(feature = "futures")]
fn eject_with_operation_future<'a, P: Into<Option<&'a MountOperation>>>(&self, flags: MountUnmountFlags, mount_operation: P) -> Box_<futures_core::Future<Item = (Self, ()), Error = (Self, Error)>>;
fn enumerate_identifiers(&self) -> Vec<String>;
fn get_activation_root(&self) -> Option<File>;
fn get_drive(&self) -> Option<Drive>;
fn get_icon(&self) -> Option<Icon>;
fn get_identifier(&self, kind: &str) -> Option<String>;
fn get_mount(&self) -> Option<Mount>;
fn get_name(&self) -> Option<String>;
fn get_sort_key(&self) -> Option<String>;
#[cfg(any(feature = "v2_34", feature = "dox"))]
fn get_symbolic_icon(&self) -> Option<Icon>;
fn get_uuid(&self) -> Option<String>;
fn mount<'a, 'b, P: Into<Option<&'a MountOperation>>, Q: Into<Option<&'b Cancellable>>, R: FnOnce(Result<(), Error>) + Send + 'static>(&self, flags: MountMountFlags, mount_operation: P, cancellable: Q, callback: R);
#[cfg(feature = "futures")]
fn mount_future<'a, P: Into<Option<&'a MountOperation>>>(&self, flags: MountMountFlags, mount_operation: P) -> Box_<futures_core::Future<Item = (Self, ()), Error = (Self, Error)>>;
fn should_automount(&self) -> bool;
fn connect_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_removed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<Volume> + IsA<glib::object::Object> + Clone + 'static> VolumeExt for O {
fn can_eject(&self) -> bool {
unsafe {
from_glib(ffi::g_volume_can_eject(self.to_glib_none().0))
}
}
fn can_mount(&self) -> bool {
unsafe {
from_glib(ffi::g_volume_can_mount(self.to_glib_none().0))
}
}
fn eject<'a, P: Into<Option<&'a Cancellable>>, Q: FnOnce(Result<(), Error>) + Send + 'static>(&self, flags: MountUnmountFlags, cancellable: P, callback: Q) {
let cancellable = cancellable.into();
let cancellable = cancellable.to_glib_none();
let user_data: Box<Box<Q>> = Box::new(Box::new(callback));
unsafe extern "C" fn eject_trampoline<Q: FnOnce(Result<(), Error>) + Send + 'static>(_source_object: *mut gobject_ffi::GObject, res: *mut ffi::GAsyncResult, user_data: glib_ffi::gpointer)
{
let mut error = ptr::null_mut();
let _ = ffi::g_volume_eject_finish(_source_object as *mut _, res, &mut error);
let result = if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) };
let callback: Box<Box<Q>> = Box::from_raw(user_data as *mut _);
callback(result);
}
let callback = eject_trampoline::<Q>;
unsafe {
ffi::g_volume_eject(self.to_glib_none().0, flags.to_glib(), cancellable.0, Some(callback), Box::into_raw(user_data) as *mut _);
}
}
#[cfg(feature = "futures")]
fn eject_future(&self, flags: MountUnmountFlags) -> Box_<futures_core::Future<Item = (Self, ()), Error = (Self, Error)>> {
use GioFuture;
use fragile::Fragile;
GioFuture::new(self, move |obj, send| {
let cancellable = Cancellable::new();
let send = Fragile::new(send);
let obj_clone = Fragile::new(obj.clone());
obj.eject(
flags,
Some(&cancellable),
move |res| {
let obj = obj_clone.into_inner();
let res = res.map(|v| (obj.clone(), v)).map_err(|v| (obj.clone(), v));
let _ = send.into_inner().send(res);
},
);
cancellable
})
}
fn eject_with_operation<'a, 'b, P: Into<Option<&'a MountOperation>>, Q: Into<Option<&'b Cancellable>>, R: FnOnce(Result<(), Error>) + Send + 'static>(&self, flags: MountUnmountFlags, mount_operation: P, cancellable: Q, callback: R) {
let mount_operation = mount_operation.into();
let mount_operation = mount_operation.to_glib_none();
let cancellable = cancellable.into();
let cancellable = cancellable.to_glib_none();
let user_data: Box<Box<R>> = Box::new(Box::new(callback));
unsafe extern "C" fn eject_with_operation_trampoline<R: FnOnce(Result<(), Error>) + Send + 'static>(_source_object: *mut gobject_ffi::GObject, res: *mut ffi::GAsyncResult, user_data: glib_ffi::gpointer)
{
let mut error = ptr::null_mut();
let _ = ffi::g_volume_eject_with_operation_finish(_source_object as *mut _, res, &mut error);
let result = if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) };
let callback: Box<Box<R>> = Box::from_raw(user_data as *mut _);
callback(result);
}
let callback = eject_with_operation_trampoline::<R>;
unsafe {
ffi::g_volume_eject_with_operation(self.to_glib_none().0, flags.to_glib(), mount_operation.0, cancellable.0, Some(callback), Box::into_raw(user_data) as *mut _);
}
}
#[cfg(feature = "futures")]
fn eject_with_operation_future<'a, P: Into<Option<&'a MountOperation>>>(&self, flags: MountUnmountFlags, mount_operation: P) -> Box_<futures_core::Future<Item = (Self, ()), Error = (Self, Error)>> {
use GioFuture;
use fragile::Fragile;
let mount_operation = mount_operation.into();
let mount_operation = mount_operation.map(ToOwned::to_owned);
GioFuture::new(self, move |obj, send| {
let cancellable = Cancellable::new();
let send = Fragile::new(send);
let obj_clone = Fragile::new(obj.clone());
obj.eject_with_operation(
flags,
mount_operation.as_ref().map(::std::borrow::Borrow::borrow),
Some(&cancellable),
move |res| {
let obj = obj_clone.into_inner();
let res = res.map(|v| (obj.clone(), v)).map_err(|v| (obj.clone(), v));
let _ = send.into_inner().send(res);
},
);
cancellable
})
}
fn enumerate_identifiers(&self) -> Vec<String> {
unsafe {
FromGlibPtrContainer::from_glib_full(ffi::g_volume_enumerate_identifiers(self.to_glib_none().0))
}
}
fn get_activation_root(&self) -> Option<File> {
unsafe {
from_glib_full(ffi::g_volume_get_activation_root(self.to_glib_none().0))
}
}
fn get_drive(&self) -> Option<Drive> {
unsafe {
from_glib_full(ffi::g_volume_get_drive(self.to_glib_none().0))
}
}
fn get_icon(&self) -> Option<Icon> {
unsafe {
from_glib_full(ffi::g_volume_get_icon(self.to_glib_none().0))
}
}
fn get_identifier(&self, kind: &str) -> Option<String> {
unsafe {
from_glib_full(ffi::g_volume_get_identifier(self.to_glib_none().0, kind.to_glib_none().0))
}
}
fn get_mount(&self) -> Option<Mount> {
unsafe {
from_glib_full(ffi::g_volume_get_mount(self.to_glib_none().0))
}
}
fn get_name(&self) -> Option<String> {
unsafe {
from_glib_full(ffi::g_volume_get_name(self.to_glib_none().0))
}
}
fn get_sort_key(&self) -> Option<String> {
unsafe {
from_glib_none(ffi::g_volume_get_sort_key(self.to_glib_none().0))
}
}
#[cfg(any(feature = "v2_34", feature = "dox"))]
fn get_symbolic_icon(&self) -> Option<Icon> {
unsafe {
from_glib_full(ffi::g_volume_get_symbolic_icon(self.to_glib_none().0))
}
}
fn get_uuid(&self) -> Option<String> {
unsafe {
from_glib_full(ffi::g_volume_get_uuid(self.to_glib_none().0))
}
}
fn mount<'a, 'b, P: Into<Option<&'a MountOperation>>, Q: Into<Option<&'b Cancellable>>, R: FnOnce(Result<(), Error>) + Send + 'static>(&self, flags: MountMountFlags, mount_operation: P, cancellable: Q, callback: R) {
let mount_operation = mount_operation.into();
let mount_operation = mount_operation.to_glib_none();
let cancellable = cancellable.into();
let cancellable = cancellable.to_glib_none();
let user_data: Box<Box<R>> = Box::new(Box::new(callback));
unsafe extern "C" fn mount_trampoline<R: FnOnce(Result<(), Error>) + Send + 'static>(_source_object: *mut gobject_ffi::GObject, res: *mut ffi::GAsyncResult, user_data: glib_ffi::gpointer)
{
let mut error = ptr::null_mut();
let _ = ffi::g_volume_mount_finish(_source_object as *mut _, res, &mut error);
let result = if error.is_null() { Ok(()) } else { Err(from_glib_full(error)) };
let callback: Box<Box<R>> = Box::from_raw(user_data as *mut _);
callback(result);
}
let callback = mount_trampoline::<R>;
unsafe {
ffi::g_volume_mount(self.to_glib_none().0, flags.to_glib(), mount_operation.0, cancellable.0, Some(callback), Box::into_raw(user_data) as *mut _);
}
}
#[cfg(feature = "futures")]
fn mount_future<'a, P: Into<Option<&'a MountOperation>>>(&self, flags: MountMountFlags, mount_operation: P) -> Box_<futures_core::Future<Item = (Self, ()), Error = (Self, Error)>> {
use GioFuture;
use fragile::Fragile;
let mount_operation = mount_operation.into();
let mount_operation = mount_operation.map(ToOwned::to_owned);
GioFuture::new(self, move |obj, send| {
let cancellable = Cancellable::new();
let send = Fragile::new(send);
let obj_clone = Fragile::new(obj.clone());
obj.mount(
flags,
mount_operation.as_ref().map(::std::borrow::Borrow::borrow),
Some(&cancellable),
move |res| {
let obj = obj_clone.into_inner();
let res = res.map(|v| (obj.clone(), v)).map_err(|v| (obj.clone(), v));
let _ = send.into_inner().send(res);
},
);
cancellable
})
}
fn should_automount(&self) -> bool {
unsafe {
from_glib(ffi::g_volume_should_automount(self.to_glib_none().0))
}
}
fn connect_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "changed",
transmute(changed_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
fn connect_removed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "removed",
transmute(removed_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
}
unsafe extern "C" fn changed_trampoline<P>(this: *mut ffi::GVolume, f: glib_ffi::gpointer)
where P: IsA<Volume> {
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&Volume::from_glib_borrow(this).downcast_unchecked())
}
unsafe extern "C" fn removed_trampoline<P>(this: *mut ffi::GVolume, f: glib_ffi::gpointer)
where P: IsA<Volume> {
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&Volume::from_glib_borrow(this).downcast_unchecked())
}