Gio.PollableOutputStream¶
- Implementations:
Gio.ConverterOutputStream
,Gio.MemoryOutputStream
,Gio.UnixOutputStream
Methods¶
|
|
|
|
|
|
|
|
|
Virtual Methods¶
|
|
|
|
|
|
|
Properties¶
None
Signals¶
None
Fields¶
None
Class Details¶
- class Gio.PollableOutputStream¶
- Bases:
- Structure:
GPollableOutputStream
is implemented by [class`Gio`.OutputStream]s that can be polled for readiness to write. This can be used when interfacing with a non-GIO API that expects UNIX-file-descriptor-style asynchronous I/O rather than GIO-style.Some classes may implement
GPollableOutputStream
but have only certain instances of that class be pollable. If [method`Gio`.PollableOutputStream.can_poll] returns false, then the behavior of otherGPollableOutputStream
methods is undefined.New in version 2.28.
- can_poll()[source]¶
-
Checks if self is actually pollable. Some classes may implement
Gio.PollableOutputStream
but have only certain instances of that class be pollable. If this method returnsFalse
, then the behavior of otherGio.PollableOutputStream
methods is undefined.For any given stream, the value returned by this method is constant; a stream cannot switch from pollable to non-pollable or vice versa.
New in version 2.28.
- create_source(cancellable)[source]¶
- Parameters:
cancellable (
Gio.Cancellable
orNone
) – aGio.Cancellable
, orNone
- Returns:
a new
GLib.Source
- Return type:
Creates a
GLib.Source
that triggers when self can be written, or cancellable is triggered or an error occurs. The callback on the source is of theGio.PollableSourceFunc
type.As with
Gio.PollableOutputStream.is_writable
(), it is possible that the stream may not actually be writable even after the source triggers, so you should useGio.PollableOutputStream.write_nonblocking
() rather thanGio.OutputStream.write
() from the callback.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for self.New in version 2.28.
- is_writable()[source]¶
- Returns:
True
if self is writable,False
if not. If an error has occurred on self, this will result inGio.PollableOutputStream.is_writable
() returningTrue
, and the next attempt to write will return the error.- Return type:
Checks if self can be written.
Note that some stream types may not be able to implement this 100% reliably, and it is possible that a call to
Gio.OutputStream.write
() after this returnsTrue
would still block. To guarantee non-blocking behavior, you should always useGio.PollableOutputStream.write_nonblocking
(), which will return aGio.IOErrorEnum.WOULD_BLOCK
error rather than blocking.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for self.New in version 2.28.
- write_nonblocking(buffer, cancellable)[source]¶
- Parameters:
buffer (
bytes
) – a buffer to write data fromcancellable (
Gio.Cancellable
orNone
) – aGio.Cancellable
, orNone
- Raises:
- Returns:
the number of bytes written, or -1 on error (including
Gio.IOErrorEnum.WOULD_BLOCK
).- Return type:
Attempts to write up to count bytes from buffer to self, as with
Gio.OutputStream.write
(). If self is not currently writable, this will immediately returnGio.IOErrorEnum.WOULD_BLOCK
, and you can useGio.PollableOutputStream.create_source
() to create aGLib.Source
that will be triggered when self is writable.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.IOErrorEnum.WOULD_BLOCK
is returned some underlying transports like D/TLS require that you re-send the same buffer and count in the next write call.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for self.
- writev_nonblocking(vectors, cancellable)[source]¶
- Parameters:
vectors ([
Gio.OutputVector
]) – the buffer containing theGio.OutputVectors
to write.cancellable (
Gio.Cancellable
orNone
) – aGio.Cancellable
, orNone
- Raises:
- Returns:
%:obj:Gio.PollableReturn.OK on success,
Gio.PollableReturn.WOULD_BLOCK
if the stream is not currently writable (and error is *not* set), orGio.PollableReturn.FAILED
if there was an error in which case error will be set.- bytes_written:
location to store the number of bytes that were written to the stream
- Return type:
(
Gio.PollableReturn
, bytes_written:int
)
Attempts to write the bytes contained in the n_vectors vectors to self, as with
Gio.OutputStream.writev
(). If self is not currently writable, this will immediately return %:obj:Gio.PollableReturn.WOULD_BLOCK, and you can useGio.PollableOutputStream.create_source
() to create aGLib.Source
that will be triggered when self is writable. error will *not* be set in that case.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.PollableReturn.WOULD_BLOCK
is returned some underlying transports like D/TLS require that you re-send the same vectors and n_vectors in the next write call.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for self.New in version 2.60.
- do_can_poll() virtual¶
-
Checks if stream is actually pollable. Some classes may implement
Gio.PollableOutputStream
but have only certain instances of that class be pollable. If this method returnsFalse
, then the behavior of otherGio.PollableOutputStream
methods is undefined.For any given stream, the value returned by this method is constant; a stream cannot switch from pollable to non-pollable or vice versa.
New in version 2.28.
- do_create_source(cancellable) virtual¶
- Parameters:
cancellable (
Gio.Cancellable
orNone
) – aGio.Cancellable
, orNone
- Returns:
a new
GLib.Source
- Return type:
Creates a
GLib.Source
that triggers when stream can be written, or cancellable is triggered or an error occurs. The callback on the source is of theGio.PollableSourceFunc
type.As with
Gio.PollableOutputStream.is_writable
(), it is possible that the stream may not actually be writable even after the source triggers, so you should useGio.PollableOutputStream.write_nonblocking
() rather thanGio.OutputStream.write
() from the callback.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for stream.New in version 2.28.
- do_is_writable() virtual¶
- Returns:
True
if stream is writable,False
if not. If an error has occurred on stream, this will result inGio.PollableOutputStream.is_writable
() returningTrue
, and the next attempt to write will return the error.- Return type:
Checks if stream can be written.
Note that some stream types may not be able to implement this 100% reliably, and it is possible that a call to
Gio.OutputStream.write
() after this returnsTrue
would still block. To guarantee non-blocking behavior, you should always useGio.PollableOutputStream.write_nonblocking
(), which will return aGio.IOErrorEnum.WOULD_BLOCK
error rather than blocking.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for stream.New in version 2.28.
- do_write_nonblocking(buffer) virtual¶
- Parameters:
- Returns:
the number of bytes written, or -1 on error (including
Gio.IOErrorEnum.WOULD_BLOCK
).- Return type:
Attempts to write up to count bytes from buffer to stream, as with
Gio.OutputStream.write
(). If stream is not currently writable, this will immediately returnGio.IOErrorEnum.WOULD_BLOCK
, and you can useGio.PollableOutputStream.create_source
() to create aGLib.Source
that will be triggered when stream is writable.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.IOErrorEnum.WOULD_BLOCK
is returned some underlying transports like D/TLS require that you re-send the same buffer and count in the next write call.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for stream.
- do_writev_nonblocking(vectors) virtual¶
- Parameters:
vectors ([
Gio.OutputVector
]) – the buffer containing theGio.OutputVectors
to write.- Returns:
%:obj:Gio.PollableReturn.OK on success,
Gio.PollableReturn.WOULD_BLOCK
if the stream is not currently writable (and error is *not* set), orGio.PollableReturn.FAILED
if there was an error in which case error will be set.- bytes_written:
location to store the number of bytes that were written to the stream
- Return type:
(
Gio.PollableReturn
, bytes_written:int
)
Attempts to write the bytes contained in the n_vectors vectors to stream, as with
Gio.OutputStream.writev
(). If stream is not currently writable, this will immediately return %:obj:Gio.PollableReturn.WOULD_BLOCK, and you can useGio.PollableOutputStream.create_source
() to create aGLib.Source
that will be triggered when stream is writable. error will *not* be set in that case.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.PollableReturn.WOULD_BLOCK
is returned some underlying transports like D/TLS require that you re-send the same vectors and n_vectors in the next write call.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll
() returnsFalse
for stream.New in version 2.60.