class StringTransport: (source)
Known subclasses: twisted.internet.testing.StringTransportWithDisconnection
Constructor: StringTransport(hostAddress, peerAddress, lenient)
Implements interfaces: twisted.internet.interfaces.IConsumer
, twisted.internet.interfaces.IPushProducer
, twisted.internet.interfaces.ITransport
A transport implementation which buffers data in memory and keeps track of its other state without providing any behavior.
StringTransport
has a number of attributes which are not part of any of the interfaces it claims to implement. These attributes are provided for testing purposes. Implementation code should not use any of these attributes; they are not provided by other transports.
Method | __init__ |
Undocumented |
Method | abort |
Abort the connection. Same as loseConnection, but also toggles the aborted instance variable to True. |
Method | clear |
Discard all data written to this transport so far. |
Method | get |
Similar to getPeer, but returns an address describing this side of the connection. |
Method | get |
Get the remote address of this connection. |
Method | lose |
Close the connection. Does nothing besides toggle the disconnecting instance variable to True. |
Method | pause |
Pause producing data. |
Method | register |
Register to receive data from a producer. |
Method | resume |
Resume producing data. |
Method | stop |
Stop producing data. |
Method | unregister |
Stop consuming data from a producer, without disconnecting. |
Method | value |
Retrieve all data which has been buffered by this transport. |
Method | write |
Write some data to the physical connection, in sequence, in a non-blocking fashion. |
Method | write |
Write an iterable of byte strings to the physical connection. |
Instance Variable | connected |
Undocumented |
Instance Variable | disconnected |
A bool which is False until abortConnection is called, then True. |
Instance Variable | disconnecting |
A bool which is False until loseConnection is called, then True. |
Instance Variable | host |
None or an object which will be returned as the host address of this transport. If None , a nasty tuple will be returned instead. |
Instance Variable | io |
A io.BytesIO which holds the data which has been written to this transport since the last call to clear . Use value instead of accessing this directly. |
Instance Variable | peer |
None or an object which will be returned as the peer address of this transport. If None , a nasty tuple will be returned instead. |
Instance Variable | producer |
If a producer is currently registered, producer is a reference to it. Otherwise, None . |
Instance Variable | producer |
The state of this StringTransport in its capacity as an IPushProducer . One of 'producing', 'paused', or 'stopped'. |
Instance Variable | streaming |
If a producer is currently registered, streaming refers to the value of the second parameter passed to registerProducer. |
Method | _check |
Undocumented |
Instance Variable | _lenient |
By default StringTransport enforces that resumeProducing is not called after the connection is lost. This is to ensure that any code that does call resumeProducing after the connection is lost is not blindly expecting ... |
Abort the connection. Same as loseConnection, but also toggles the aborted instance variable to True.
Discard all data written to this transport so far.
This is not a transport method. It is intended for tests. Do not use it in implementation code.
Similar to getPeer, but returns an address describing this side of the connection.
Returns | |
An IAddress provider. |
Get the remote address of this connection.
Treat this method with caution. It is the unfortunate result of the CGI and Jabber standards, but should not be considered reliable for the usual host of reasons; port forwarding, proxying, firewalls, IP masquerading, etc.
Returns | |
An IAddress provider. |
Pause producing data.
Tells a producer that it has produced too much data to process for the time being, and to stop until resumeProducing() is called.
Register to receive data from a producer.
This sets self to be a consumer for a producer. When this object runs out of data (as when a send(2) call on a socket succeeds in moving the last data from a userspace buffer into a kernelspace buffer), it will ask the producer to resumeProducing().
For IPullProducer
providers, resumeProducing will be called once each time data is required.
For IPushProducer
providers, pauseProducing will be called whenever the write buffer fills up and resumeProducing will only be called when it empties. The consumer will only call resumeProducing to balance a previous pauseProducing call; the producer is assumed to start in an un-paused state.
Parameters | |
producer | Undocumented |
streaming | True if producer provides IPushProducer , False if producer provides IPullProducer . |
Raises | |
RuntimeError | If a producer is already registered. |
Resume producing data.
This tells a producer to re-add itself to the main loop and produce more data for its consumer.
Stop producing data.
This tells a producer that its consumer has died, so it must stop producing data for good.
Retrieve all data which has been buffered by this transport.
This is not a transport method. It is intended for tests. Do not use it in implementation code.
Returns | |
bytes | A bytes giving all data written to this transport since the last call to clear . |
Write some data to the physical connection, in sequence, in a non-blocking fashion.
If possible, make sure that it is all written. No data will ever be lost, although (obviously) the connection may be closed before it all gets through.
Parameters | |
data | The data to write. |
Write an iterable of byte strings to the physical connection.
If possible, make sure that all of the data is written to the socket at once, without first copying it all into a single byte string.
Parameters | |
data | The data to write. |
A io.BytesIO
which holds the data which has been written to this transport since the last call to clear
. Use value
instead of accessing this directly.
The state of this StringTransport
in its capacity as an IPushProducer
. One of 'producing', 'paused', or 'stopped'.
If a producer is currently registered, streaming refers to the value of the second parameter passed to registerProducer.
By default StringTransport
enforces that resumeProducing
is not called after the connection is lost. This is to ensure that any code that does call resumeProducing
after the connection is lost is not blindly expecting resumeProducing
to have any impact.
However, if your test case is calling resumeProducing
after connection close on purpose, and you know it won't block expecting further data to show up, this flag may safely be set to True
.
Defaults to False
.