use crate::AsyncResult;
use crate::Cancellable;
use crate::FileInfo;
use crate::IOStream;
use crate::Seekable;
use glib::object::IsA;
use glib::translate::*;
use std::boxed::Box as Box_;
use std::fmt;
use std::pin::Pin;
use std::ptr;
glib::wrapper! {
#[doc(alias = "GFileIOStream")]
pub struct FileIOStream(Object<ffi::GFileIOStream, ffi::GFileIOStreamClass>) @extends IOStream, @implements Seekable;
match fn {
type_ => || ffi::g_file_io_stream_get_type(),
}
}
impl FileIOStream {
pub const NONE: Option<&'static FileIOStream> = None;
}
pub trait FileIOStreamExt: 'static {
#[doc(alias = "g_file_io_stream_get_etag")]
#[doc(alias = "get_etag")]
fn etag(&self) -> Option<glib::GString>;
#[doc(alias = "g_file_io_stream_query_info")]
fn query_info(
&self,
attributes: &str,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<FileInfo, glib::Error>;
#[doc(alias = "g_file_io_stream_query_info_async")]
fn query_info_async<P: FnOnce(Result<FileInfo, glib::Error>) + Send + 'static>(
&self,
attributes: &str,
io_priority: glib::Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
);
fn query_info_future(
&self,
attributes: &str,
io_priority: glib::Priority,
) -> Pin<Box_<dyn std::future::Future<Output = Result<FileInfo, glib::Error>> + 'static>>;
}
impl<O: IsA<FileIOStream>> FileIOStreamExt for O {
fn etag(&self) -> Option<glib::GString> {
unsafe {
from_glib_full(ffi::g_file_io_stream_get_etag(
self.as_ref().to_glib_none().0,
))
}
}
fn query_info(
&self,
attributes: &str,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<FileInfo, glib::Error> {
unsafe {
let mut error = ptr::null_mut();
let ret = ffi::g_file_io_stream_query_info(
self.as_ref().to_glib_none().0,
attributes.to_glib_none().0,
cancellable.map(|p| p.as_ref()).to_glib_none().0,
&mut error,
);
if error.is_null() {
Ok(from_glib_full(ret))
} else {
Err(from_glib_full(error))
}
}
}
fn query_info_async<P: FnOnce(Result<FileInfo, glib::Error>) + Send + 'static>(
&self,
attributes: &str,
io_priority: glib::Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
) {
let user_data: Box_<P> = Box_::new(callback);
unsafe extern "C" fn query_info_async_trampoline<
P: FnOnce(Result<FileInfo, glib::Error>) + Send + 'static,
>(
_source_object: *mut glib::gobject_ffi::GObject,
res: *mut crate::ffi::GAsyncResult,
user_data: glib::ffi::gpointer,
) {
let mut error = ptr::null_mut();
let ret =
ffi::g_file_io_stream_query_info_finish(_source_object as *mut _, res, &mut error);
let result = if error.is_null() {
Ok(from_glib_full(ret))
} else {
Err(from_glib_full(error))
};
let callback: Box_<P> = Box_::from_raw(user_data as *mut _);
callback(result);
}
let callback = query_info_async_trampoline::<P>;
unsafe {
ffi::g_file_io_stream_query_info_async(
self.as_ref().to_glib_none().0,
attributes.to_glib_none().0,
io_priority.into_glib(),
cancellable.map(|p| p.as_ref()).to_glib_none().0,
Some(callback),
Box_::into_raw(user_data) as *mut _,
);
}
}
fn query_info_future(
&self,
attributes: &str,
io_priority: glib::Priority,
) -> Pin<Box_<dyn std::future::Future<Output = Result<FileInfo, glib::Error>> + 'static>> {
let attributes = String::from(attributes);
Box_::pin(crate::GioFuture::new(
self,
move |obj, cancellable, send| {
obj.query_info_async(&attributes, io_priority, Some(cancellable), move |res| {
send.resolve(res);
});
},
))
}
}
impl fmt::Display for FileIOStream {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("FileIOStream")
}
}