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:
 
GPollableOutputStreamis 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
GPollableOutputStreambut have only certain instances of that class be pollable. If [method`Gio`.PollableOutputStream.can_poll] returns false, then the behavior of otherGPollableOutputStreammethods is undefined.New in version 2.28.
- can_poll()[source]¶
 - 
Checks if self is actually pollable. Some classes may implement
Gio.PollableOutputStreambut have only certain instances of that class be pollable. If this method returnsFalse, then the behavior of otherGio.PollableOutputStreammethods 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.CancellableorNone) – aGio.Cancellable, orNone- Returns:
 a new
GLib.Source- Return type:
 
Creates a
GLib.Sourcethat triggers when self can be written, or cancellable is triggered or an error occurs. The callback on the source is of theGio.PollableSourceFunctype.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() returnsFalsefor self.New in version 2.28.
- is_writable()[source]¶
 - Returns:
 Trueif self is writable,Falseif 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 returnsTruewould still block. To guarantee non-blocking behavior, you should always useGio.PollableOutputStream.write_nonblocking(), which will return aGio.IOErrorEnum.WOULD_BLOCKerror rather than blocking.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll() returnsFalsefor self.New in version 2.28.
- write_nonblocking(buffer, cancellable)[source]¶
 - Parameters:
 buffer (
bytes) – a buffer to write data fromcancellable (
Gio.CancellableorNone) – 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.Sourcethat 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_BLOCKis 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() returnsFalsefor self.
- writev_nonblocking(vectors, cancellable)[source]¶
 - Parameters:
 vectors ([
Gio.OutputVector]) – the buffer containing theGio.OutputVectorsto write.cancellable (
Gio.CancellableorNone) – aGio.Cancellable, orNone
- Raises:
 - Returns:
 %:obj:Gio.PollableReturn.OK on success,
Gio.PollableReturn.WOULD_BLOCKif the stream is not currently writable (and error is *not* set), orGio.PollableReturn.FAILEDif 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.Sourcethat 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_BLOCKis 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() returnsFalsefor self.New in version 2.60.
- do_can_poll() virtual¶
 - 
Checks if stream is actually pollable. Some classes may implement
Gio.PollableOutputStreambut have only certain instances of that class be pollable. If this method returnsFalse, then the behavior of otherGio.PollableOutputStreammethods 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.CancellableorNone) – aGio.Cancellable, orNone- Returns:
 a new
GLib.Source- Return type:
 
Creates a
GLib.Sourcethat triggers when stream can be written, or cancellable is triggered or an error occurs. The callback on the source is of theGio.PollableSourceFunctype.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() returnsFalsefor stream.New in version 2.28.
- do_is_writable() virtual¶
 - Returns:
 Trueif stream is writable,Falseif 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 returnsTruewould still block. To guarantee non-blocking behavior, you should always useGio.PollableOutputStream.write_nonblocking(), which will return aGio.IOErrorEnum.WOULD_BLOCKerror rather than blocking.The behaviour of this method is undefined if
Gio.PollableOutputStream.can_poll() returnsFalsefor 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.Sourcethat 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_BLOCKis 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() returnsFalsefor stream.
- do_writev_nonblocking(vectors) virtual¶
 - Parameters:
 vectors ([
Gio.OutputVector]) – the buffer containing theGio.OutputVectorsto write.- Returns:
 %:obj:Gio.PollableReturn.OK on success,
Gio.PollableReturn.WOULD_BLOCKif the stream is not currently writable (and error is *not* set), orGio.PollableReturn.FAILEDif 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.Sourcethat 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_BLOCKis 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() returnsFalsefor stream.New in version 2.60.