twisted.words.xish.xmlstream.XmlStream(protocol.Protocol, utility.EventDispatcher) class documentationtwisted.words.xish.xmlstream
View Source
(View In Hierarchy)
Known subclasses: twisted.words.protocols.jabber.xmlstream.XmlStream
Generic Streaming XML protocol handler.
This protocol handler will parse incoming data as XML and dispatch events accordingly. Incoming stanzas can be handled by registering observers using XPath-like expressions that are matched against each stanza. See utility.EventDispatcher for details.
| Method | __init__ | Undocumented |
| Instance Variable | stream | Undocumented |
| Instance Variable | rawDataOutFn | Undocumented |
| Instance Variable | rawDataInFn | Undocumented |
| Method | connectionMade | Called when a connection is made. |
| Method | dataReceived | Called whenever data is received. |
| Method | connectionLost | Called when the connection is shut down. |
| Method | onDocumentStart | Called whenever the start tag of a root element has been received. |
| Method | onElement | Called whenever a direct child element of the root element has been received. |
| Method | onDocumentEnd | Called whenever the end tag of the root element has been received. |
| Method | setDispatchFn | Set another function to handle elements. |
| Method | resetDispatchFn | Set the default function (onElement) to handle elements. |
| Method | send | Send data over the stream. |
| Method | _initializeStream | Sets up XML Parser. |
Inherited from Protocol:
| Method | logPrefix | Return a prefix matching the class name, to identify log messages related to this protocol instance. |
Inherited from BaseProtocol (via Protocol):
| Instance Variable | connected | Undocumented |
| Instance Variable | transport | Undocumented |
| Method | makeConnection | Make a connection to a transport and a server. |
Inherited from EventDispatcher:
| Instance Variable | prefix | Undocumented |
| Method | addOnetimeObserver | Register a one-time observer for an event. |
| Method | addObserver | Register an observer for an event. |
| Method | removeObserver | Remove callable as observer for an event. |
| Method | dispatch | Dispatch an event. |
| Instance Variable | _eventObservers | Undocumented |
| Instance Variable | _xpathObservers | Undocumented |
| Instance Variable | _dispatchDepth | Undocumented |
| Instance Variable | _updateQueue | Undocumented |
| Method | _getEventAndObservers | Undocumented |
| Method | _addObserver | Undocumented |
Called when a connection is made.
Sets up the XML parser and dispatches the STREAM_CONNECTED_EVENT event indicating the connection has been established.
Called whenever data is received.
Passes the data to the XML parser. This can result in calls to the DOM handlers. If a parse error occurs, the STREAM_ERROR_EVENT event is called to allow for cleanup actions, followed by dropping the connection.
Called when the connection is shut down.
Dispatches the STREAM_END_EVENT.
Called whenever the start tag of a root element has been received.
Dispatches the STREAM_START_EVENT.
Called whenever a direct child element of the root element has been received.
Dispatches the received element.
Called whenever the end tag of the root element has been received.
Closes the connection. This causes connectionLost being called.
Send data over the stream.
Sends the given obj over the connection. obj may be instances of domish.Element, unicode and str. The first two will be properly serialized and/or encoded. str objects must be in UTF-8 encoding.
Note: because it is easy to make mistakes in maintaining a properly encoded str object, it is advised to use unicode objects everywhere when dealing with XML Streams.
| Parameters | obj | Object to be sent over the stream. (type: domish.Element, domish or str) |