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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use crate::{AsyncResult, Cancellable, FilterInputStream, InputStream, Seekable};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::{boxed::Box as Box_, fmt, mem, mem::transmute, pin::Pin, ptr};
glib::wrapper! {
/// Buffered input stream implements [`FilterInputStream`][crate::FilterInputStream] and provides
/// for buffered reads.
///
/// By default, [`BufferedInputStream`][crate::BufferedInputStream]'s buffer size is set at 4 kilobytes.
///
/// To create a buffered input stream, use [`new()`][Self::new()],
/// or [`new_sized()`][Self::new_sized()] to specify the buffer's size at
/// construction.
///
/// To get the size of a buffer within a buffered input stream, use
/// [`BufferedInputStreamExt::buffer_size()`][crate::prelude::BufferedInputStreamExt::buffer_size()]. To change the size of a
/// buffered input stream's buffer, use
/// [`BufferedInputStreamExt::set_buffer_size()`][crate::prelude::BufferedInputStreamExt::set_buffer_size()]. Note that the buffer's size
/// cannot be reduced below the size of the data within the buffer.
///
/// ## Properties
///
///
/// #### `buffer-size`
/// Readable | Writeable | Construct
/// <details><summary><h4>FilterInputStream</h4></summary>
///
///
/// #### `base-stream`
/// Readable | Writeable | Construct Only
///
///
/// #### `close-base-stream`
/// Readable | Writeable | Construct
/// </details>
///
/// # Implements
///
/// [`BufferedInputStreamExt`][trait@crate::prelude::BufferedInputStreamExt], [`FilterInputStreamExt`][trait@crate::prelude::FilterInputStreamExt], [`InputStreamExt`][trait@crate::prelude::InputStreamExt], [`trait@glib::ObjectExt`], [`SeekableExt`][trait@crate::prelude::SeekableExt], [`InputStreamExtManual`][trait@crate::prelude::InputStreamExtManual]
#[doc(alias = "GBufferedInputStream")]
pub struct BufferedInputStream(Object<ffi::GBufferedInputStream, ffi::GBufferedInputStreamClass>) @extends FilterInputStream, InputStream, @implements Seekable;
match fn {
type_ => || ffi::g_buffered_input_stream_get_type(),
}
}
impl BufferedInputStream {
pub const NONE: Option<&'static BufferedInputStream> = None;
/// Creates a new [`InputStream`][crate::InputStream] from the given `base_stream`, with
/// a buffer set to the default size (4 kilobytes).
/// ## `base_stream`
/// a [`InputStream`][crate::InputStream]
///
/// # Returns
///
/// a [`InputStream`][crate::InputStream] for the given `base_stream`.
#[doc(alias = "g_buffered_input_stream_new")]
pub fn new(base_stream: &impl IsA<InputStream>) -> BufferedInputStream {
unsafe {
InputStream::from_glib_full(ffi::g_buffered_input_stream_new(
base_stream.as_ref().to_glib_none().0,
))
.unsafe_cast()
}
}
/// Creates a new [`BufferedInputStream`][crate::BufferedInputStream] from the given `base_stream`,
/// with a buffer set to `size`.
/// ## `base_stream`
/// a [`InputStream`][crate::InputStream]
/// ## `size`
/// a `gsize`
///
/// # Returns
///
/// a [`InputStream`][crate::InputStream].
#[doc(alias = "g_buffered_input_stream_new_sized")]
pub fn new_sized(base_stream: &impl IsA<InputStream>, size: usize) -> BufferedInputStream {
unsafe {
InputStream::from_glib_full(ffi::g_buffered_input_stream_new_sized(
base_stream.as_ref().to_glib_none().0,
size,
))
.unsafe_cast()
}
}
// rustdoc-stripper-ignore-next
/// Creates a new builder-pattern struct instance to construct [`BufferedInputStream`] objects.
///
/// This method returns an instance of [`BufferedInputStreamBuilder`](crate::builders::BufferedInputStreamBuilder) which can be used to create [`BufferedInputStream`] objects.
pub fn builder() -> BufferedInputStreamBuilder {
BufferedInputStreamBuilder::new()
}
}
impl Default for BufferedInputStream {
fn default() -> Self {
glib::object::Object::new::<Self>()
}
}
// rustdoc-stripper-ignore-next
/// A [builder-pattern] type to construct [`BufferedInputStream`] objects.
///
/// [builder-pattern]: https://doc.rust-lang.org/1.0.0/style/ownership/builders.html
#[must_use = "The builder must be built to be used"]
pub struct BufferedInputStreamBuilder {
builder: glib::object::ObjectBuilder<'static, BufferedInputStream>,
}
impl BufferedInputStreamBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn buffer_size(self, buffer_size: u32) -> Self {
Self {
builder: self.builder.property("buffer-size", buffer_size),
}
}
pub fn base_stream(self, base_stream: &impl IsA<InputStream>) -> Self {
Self {
builder: self
.builder
.property("base-stream", base_stream.clone().upcast()),
}
}
pub fn close_base_stream(self, close_base_stream: bool) -> Self {
Self {
builder: self
.builder
.property("close-base-stream", close_base_stream),
}
}
// rustdoc-stripper-ignore-next
/// Build the [`BufferedInputStream`].
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> BufferedInputStream {
self.builder.build()
}
}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::BufferedInputStream>> Sealed for T {}
}
/// Trait containing all [`struct@BufferedInputStream`] methods.
///
/// # Implementors
///
/// [`BufferedInputStream`][struct@crate::BufferedInputStream], [`DataInputStream`][struct@crate::DataInputStream]
pub trait BufferedInputStreamExt: IsA<BufferedInputStream> + sealed::Sealed + 'static {
/// Tries to read `count` bytes from the stream into the buffer.
/// Will block during this read.
///
/// If `count` is zero, returns zero and does nothing. A value of `count`
/// larger than `G_MAXSSIZE` will cause a [`IOErrorEnum::InvalidArgument`][crate::IOErrorEnum::InvalidArgument] error.
///
/// On success, the number of bytes read into the buffer is returned.
/// It is not an error if this is not the same as the requested size, as it
/// can happen e.g. near the end of a file. Zero is returned on end of file
/// (or if `count` is zero), but never otherwise.
///
/// If `count` is -1 then the attempted read size is equal to the number of
/// bytes that are required to fill the buffer.
///
/// If `cancellable` is not [`None`], then the operation can be cancelled by
/// triggering the cancellable object from another thread. If the operation
/// was cancelled, the error [`IOErrorEnum::Cancelled`][crate::IOErrorEnum::Cancelled] will be returned. If an
/// operation was partially finished when the operation was cancelled the
/// partial result will be returned, without an error.
///
/// On error -1 is returned and `error` is set accordingly.
///
/// For the asynchronous, non-blocking, version of this function, see
/// [`fill_async()`][Self::fill_async()].
/// ## `count`
/// the number of bytes that will be read from the stream
/// ## `cancellable`
/// optional [`Cancellable`][crate::Cancellable] object, [`None`] to ignore
///
/// # Returns
///
/// the number of bytes read into `self`'s buffer, up to `count`,
/// or -1 on error.
#[doc(alias = "g_buffered_input_stream_fill")]
fn fill(
&self,
count: isize,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<isize, glib::Error> {
unsafe {
let mut error = ptr::null_mut();
let ret = ffi::g_buffered_input_stream_fill(
self.as_ref().to_glib_none().0,
count,
cancellable.map(|p| p.as_ref()).to_glib_none().0,
&mut error,
);
if error.is_null() {
Ok(ret)
} else {
Err(from_glib_full(error))
}
}
}
/// Reads data into `self`'s buffer asynchronously, up to `count` size.
/// `io_priority` can be used to prioritize reads. For the synchronous
/// version of this function, see [`fill()`][Self::fill()].
///
/// If `count` is -1 then the attempted read size is equal to the number
/// of bytes that are required to fill the buffer.
/// ## `count`
/// the number of bytes that will be read from the stream
/// ## `io_priority`
/// the [I/O priority][io-priority] of the request
/// ## `cancellable`
/// optional [`Cancellable`][crate::Cancellable] object
/// ## `callback`
/// a `GAsyncReadyCallback`
#[doc(alias = "g_buffered_input_stream_fill_async")]
fn fill_async<P: FnOnce(Result<isize, glib::Error>) + 'static>(
&self,
count: isize,
io_priority: glib::Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
) {
let main_context = glib::MainContext::ref_thread_default();
let is_main_context_owner = main_context.is_owner();
let has_acquired_main_context = (!is_main_context_owner)
.then(|| main_context.acquire().ok())
.flatten();
assert!(
is_main_context_owner || has_acquired_main_context.is_some(),
"Async operations only allowed if the thread is owning the MainContext"
);
let user_data: Box_<glib::thread_guard::ThreadGuard<P>> =
Box_::new(glib::thread_guard::ThreadGuard::new(callback));
unsafe extern "C" fn fill_async_trampoline<
P: FnOnce(Result<isize, glib::Error>) + '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_buffered_input_stream_fill_finish(_source_object as *mut _, res, &mut error);
let result = if error.is_null() {
Ok(ret)
} else {
Err(from_glib_full(error))
};
let callback: Box_<glib::thread_guard::ThreadGuard<P>> =
Box_::from_raw(user_data as *mut _);
let callback: P = callback.into_inner();
callback(result);
}
let callback = fill_async_trampoline::<P>;
unsafe {
ffi::g_buffered_input_stream_fill_async(
self.as_ref().to_glib_none().0,
count,
io_priority.into_glib(),
cancellable.map(|p| p.as_ref()).to_glib_none().0,
Some(callback),
Box_::into_raw(user_data) as *mut _,
);
}
}
fn fill_future(
&self,
count: isize,
io_priority: glib::Priority,
) -> Pin<Box_<dyn std::future::Future<Output = Result<isize, glib::Error>> + 'static>> {
Box_::pin(crate::GioFuture::new(
self,
move |obj, cancellable, send| {
obj.fill_async(count, io_priority, Some(cancellable), move |res| {
send.resolve(res);
});
},
))
}
/// Gets the size of the available data within the stream.
///
/// # Returns
///
/// size of the available stream.
#[doc(alias = "g_buffered_input_stream_get_available")]
#[doc(alias = "get_available")]
fn available(&self) -> usize {
unsafe { ffi::g_buffered_input_stream_get_available(self.as_ref().to_glib_none().0) }
}
/// Gets the size of the input buffer.
///
/// # Returns
///
/// the current buffer size.
#[doc(alias = "g_buffered_input_stream_get_buffer_size")]
#[doc(alias = "get_buffer_size")]
fn buffer_size(&self) -> usize {
unsafe { ffi::g_buffered_input_stream_get_buffer_size(self.as_ref().to_glib_none().0) }
}
/// Returns the buffer with the currently available bytes. The returned
/// buffer must not be modified and will become invalid when reading from
/// the stream or filling the buffer.
///
/// # Returns
///
///
/// read-only buffer
#[doc(alias = "g_buffered_input_stream_peek_buffer")]
fn peek_buffer(&self) -> Vec<u8> {
unsafe {
let mut count = mem::MaybeUninit::uninit();
let ret = FromGlibContainer::from_glib_none_num(
ffi::g_buffered_input_stream_peek_buffer(
self.as_ref().to_glib_none().0,
count.as_mut_ptr(),
),
count.assume_init() as _,
);
ret
}
}
/// Tries to read a single byte from the stream or the buffer. Will block
/// during this read.
///
/// On success, the byte read from the stream is returned. On end of stream
/// -1 is returned but it's not an exceptional error and `error` is not set.
///
/// If `cancellable` is not [`None`], then the operation can be cancelled by
/// triggering the cancellable object from another thread. If the operation
/// was cancelled, the error [`IOErrorEnum::Cancelled`][crate::IOErrorEnum::Cancelled] will be returned. If an
/// operation was partially finished when the operation was cancelled the
/// partial result will be returned, without an error.
///
/// On error -1 is returned and `error` is set accordingly.
/// ## `cancellable`
/// optional [`Cancellable`][crate::Cancellable] object, [`None`] to ignore
///
/// # Returns
///
/// the byte read from the `self`, or -1 on end of stream or error.
#[doc(alias = "g_buffered_input_stream_read_byte")]
fn read_byte(&self, cancellable: Option<&impl IsA<Cancellable>>) -> Result<i32, glib::Error> {
unsafe {
let mut error = ptr::null_mut();
let ret = ffi::g_buffered_input_stream_read_byte(
self.as_ref().to_glib_none().0,
cancellable.map(|p| p.as_ref()).to_glib_none().0,
&mut error,
);
if error.is_null() {
Ok(ret)
} else {
Err(from_glib_full(error))
}
}
}
/// Sets the size of the internal buffer of `self` to `size`, or to the
/// size of the contents of the buffer. The buffer can never be resized
/// smaller than its current contents.
/// ## `size`
/// a `gsize`
#[doc(alias = "g_buffered_input_stream_set_buffer_size")]
fn set_buffer_size(&self, size: usize) {
unsafe {
ffi::g_buffered_input_stream_set_buffer_size(self.as_ref().to_glib_none().0, size);
}
}
#[doc(alias = "buffer-size")]
fn connect_buffer_size_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_buffer_size_trampoline<
P: IsA<BufferedInputStream>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GBufferedInputStream,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(BufferedInputStream::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::buffer-size\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_buffer_size_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<BufferedInputStream>> BufferedInputStreamExt for O {}
impl fmt::Display for BufferedInputStream {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("BufferedInputStream")
}
}