« Previous - Version 57/65 (diff) - Next » - Current version
Adrian Georgescu, 04/16/2010 09:11 am


= MSRP API =

<acronym title="SipMSRPApi, SipDeveloperGuide, depth=2">TOC</acronym>

Message Session Relay Protocol (MSRP) is a protocol for transmitting a series of related Instant Messages in the context of a session. Message sessions are treated like any other media stream when set up via a rendezvous or session creation protocol such as the Session Initiation Protocol (SIP). MSRP can be used for any application that requires a reliable stream of data, for example File Transfer or Desktop Sharing.

The MSRP protocol stack is implemented by [http://download.ag-projects.com/SipClient python-msrplib] package.

{{{msrplib}}} is based upon [http://twistedmatrix.com twisted] and [http://download.ag-projects.com/SipClient/ eventlet] and provides a set of classes for establishing and managing MSRP connections.

The library consists of the following modules:

'''msrplib.transport'''::
Defines {{{MSRPTransport}}} class, which provides low level control over MSRP connections.
'''msrplib.connect'''::
Defines means to establish a connection, bind it, and provide an initialized {{{MSRPTransport}}} instance.
'''msrplib.session'''::
Defines {{{MSRPSession}}} class, which provides high level control over a MSRP connection.
'''msrplib.protocol'''::
Provides representation and parsing of MSRP entities - chunks and MSRP URIs.
URI

This class is implemented in the {{{msrplib.protocol}}} module and is used to represent an MSRP URI.

==== methods ====

'''!__init!__'''(''self'', '''host'''={{{None}}}, '''use_tls'''={{{False}}}, '''user'''={{{None}}}, '''port'''={{{None}}}, '''session_id'''={{{None}}}, '''parameters'''={{{None}}}, '''credentials'''={{{None}}})::
Constructs a new {{{URI}}}. All the arguments specified here are also attributes on the object. For more information on these attributes, see RFC4975.
[[BR]]''host'':[[BR]]
The hostname or IP address which forms the URI.
[[BR]]''use_tls'':[[BR]]
Whether this identifies an msrps or msrp URI.
[[BR]]''user'':[[BR]]
The user part of the URI.
[[BR]]''port'':[[BR]]
The port in the URI.
[[BR]]''session_id'':[[BR]]
The session identifier part of the URI.
[[BR]]''parameters'':[[BR]]
A {{{dict}}} containing the parameters which will be appended to the URI.
[[BR]]''credentials'':[[BR]]
A {{{gnutls.interfaces.twisted.X509Credentials}}} object which will be used if this identifies a TLS URI to authenticate to the other endpoint.
MSRPRelaySettings

This class is implemented in the {{{msrplib.connect}}} module and is used to specify the MSRP relay which will be used when connecting via a relay (using the {{{ConnectorRelay}}} or {{{AcceptorRelay}}} classes).

==== methods ====

'''!__init!__'''(''self'', '''domain''', '''username''', '''password''', '''host'''={{{None}}}, '''use_tls'''={{{False}}}, '''port'''={{{None}}}, '''credentials'''={{{None}}})::
Constructs a new {{{URI}}}. All the arguments specified here are also attributes on the object. For more information on these attributes, see RFC4975.
[[BR]]''domain'':[[BR]]
The DNS domain in which to search for a MSRP relay using SRV queries.
[[BR]]''username'':[[BR]]
The username which will be used to authenticate to the relay.
[[BR]]''password'':[[BR]]
The password which will be used to authenticate to the relay.
[[BR]]''host'':[[BR]]
The hostname or IP address of the MSRP relay.
[[BR]]''use_tls'':[[BR]]
Whether this identifies an msrps or msrp URI.
[[BR]]''port'':[[BR]]
The port in the URI.
[[BR]]''credentials'':[[BR]]
A {{{gnutls.interfaces.twisted.X509Credentials}}} object which will be used to authenticate to the relay if TLS is used.
ConnectorDirect

This class is implemented in the {{{msrplib.connect}}} module and is used for outbound MSRP connections without a relay.

==== methods ====

'''!__init!__'''(''self'', '''loger'''={{{None}}})::
Constructs a new ConnectorDirect.
[[BR]]''logger'':[[BR]]
The logger which will be used for this MSRP connection. See the [wiki:SipMSRPApi#Logging Logging] section for more information.
'''prepare'''(''self'', '''local_uri'''={{{None}}})::
This method returns a full local path - list of {{{protocol.URI}}} instances, suitable to be put in SDP {{{'a:path'}}} attribute.
[[BR]]''local_uri'':[[BR]]
This attribute will be used to construct the local path, but other than that it is not used anywhere else in case of the ConnectorDirect. If not provided, one
will be automatically generated
'''complete'''(''self'', '''full_remote_path''')::
This method establishes the connection and binds it (sends an empty chunk to verify each other's From-Path and To-Path). It returns {{{transport.MSRPTransport}}} instance, ready to read and send chunks.
[[BR]]''full_remote_path'':[[BR]]
A list of {{{protocol.URI}}} instances, obtained by parsing {{{'a:path'}}} put in SDP by the remote party.
'''cleanup'''(''self'')::
This method cleans up after {{{prepare()}}}; it should be called if {{{complete()}}} will not be called for whatever reason.
ConnectorRelay

This class is implemented in the {{{msrplib.connect}}} module and is used for outbound MSRP connections using a relay.

==== methods ====

'''!__init!__'''(''self'', '''relay''', '''loger'''={{{None}}})::
Constructs a new ConnectorRelay.
[[BR]]''relay'':[[BR]]
An instance of {{{MSRPRelaySettings}}} which identifies the relay which is to be used.
[[BR]]''logger'':[[BR]]
The logger which will be used for this MSRP connection. See the [wiki:SipMSRPApi#Logging Logging] section for more information.
'''prepare'''(''self'', '''local_uri'''={{{None}}})::
This method returns a full local path - list of {{{protocol.URI}}} instances, suitable to be put in SDP {{{'a:path'}}} attribute.
[[BR]]''local_uri'':[[BR]]
This attribute will be used to construct the local path, but other than that it is not used anywhere else in case of the ConnectorRelay. If not provided, one
will be automatically generated
'''complete'''(''self'', '''full_remote_path''')::
This method establishes the connection to the relay and binds it (sends an empty chunk to verify each other's From-Path and To-Path). It returns {{{transport.MSRPTransport}}} instance, ready to read and send chunks.
[[BR]]''full_remote_path'':[[BR]]
A list of {{{protocol.URI}}} instances, obtained by parsing {{{'a:path'}}} put in SDP by the remote party.
'''cleanup'''(''self'')::
This method cleans up after {{{prepare()}}}; it should be called if {{{complete()}}} will not be called for whatever reason.
AcceptorDirect

This class is implemented in the {{{msrplib.connect}}} module and is used for inbound MSRP connections without using a relay.

==== methods ====

'''!__init!__'''(''self'', '''loger'''={{{None}}})::
Constructs a new AcceptorDirect.
[[BR]]''logger'':[[BR]]
The logger which will be used for this MSRP connection. See the [wiki:SipMSRPApi#Logging Logging] section for more information.
'''prepare'''(''self'', '''local_uri'''={{{None}}})::
This method starts listening on a socket identified by the parameters in the {{{local_uri}}} argument. It returns a full local path - list of {{{protocol.URI}}} instances, suitable to be put in SDP {{{'a:path'}}} attribute.
[[BR]]''local_uri'':[[BR]]
This attribute will be used to construct the local path and to listen for incomming connections. If not provided, one
will be automatically generated. Note that the object may be changed in place: for example, if the port specified is 0,
a random one will be selected and the object will be updated accordingly.
'''complete'''(''self'', '''full_remote_path''')::
This method waits for an incoming connection and a chunk sent by the other party. It returns {{{transport.MSRPTransport}}} instance, ready to read and send chunks.
[[BR]]''full_remote_path'':[[BR]]
A list of {{{protocol.URI}}} instances, obtained by parsing {{{'a:path'}}} put in SDP by the remote party. This is checked agains the From-Path header in the binding chunk.
'''cleanup'''(''self'')::
This method cleans up after {{{prepare()}}}; it should be called if {{{complete()}}} will not be called for whatever reason.
AcceptorRelay

This class is implemented in the {{{msrplib.connect}}} module and is used for inbound MSRP connections using a relay.

==== methods ====

'''!__init!__'''(''self'', '''relay''', '''loger'''={{{None}}})::
Constructs a new AcceptorRelay.
[[BR]]''relay'':[[BR]]
An instance of {{{MSRPRelaySettings}}} which identifies the relay which is to be used.
[[BR]]''logger'':[[BR]]
The logger which will be used for this MSRP connection. See the [wiki:SipMSRPApi#Logging Logging] section for more information.
'''prepare'''(''self'', '''local_uri'''={{{None}}})::
This method connects to the relay specified in {{{__init__}}}. It returns a full local path - list of {{{protocol.URI}}} instances, suitable to be put in SDP {{{'a:path'}}} attribute.
[[BR]]''local_uri'':[[BR]]
This attribute will be used to construct the local path. If not provided, one will be automatically generated
'''complete'''(''self'', '''full_remote_path''')::
This method waits for an incoming chunk sent by the other party. It returns {{{transport.MSRPTransport}}} instance, ready to read and send chunks.
[[BR]]''full_remote_path'':[[BR]]
A list of {{{protocol.URI}}} instances, obtained by parsing {{{'a:path'}}} put in SDP by the remote party. This is checked agains the From-Path header in the binding chunk.
'''cleanup'''(''self'')::
This method cleans up after {{{prepare()}}}; it should be called if {{{complete()}}} will not be called for whatever reason.
Headers

The MSRP headers are represented using objects from the {{{msrplib.protocol module}}}. All MSRP header object provide three properties:
''name'':BR
The name of the header, as it appears in MSRP chunks.
BR''encode'':BR
The MSRP encoded header value, as it appears in MSRP chunks.
BR''decode'':BR
The high-level object representing the header value.

All headers can be constructed by passing either the encoded or decoded objects to {{{__init__}}}. The following headers are provided:

=== ToPathHeader ===

The name of the header is {{{'To-Path'}}} and the decoded value is a deque of {{{URI}}} objects.

=== FromPathHeader ===

The name of the header is {{{'From-Path'}}} and the decoded value is a deque of {{{URI}}} objects.

=== MessageIDHeader ===

The name of the header is {{{'Message-ID'}}} and the decoded value is the string containing the message ID.

=== SuccessReportHeader ===

The name of the header is {{{'Success-Report'}}} and the decoded value is one of {{{'yes'}}} or {{{'no'}}}.

=== FailureReportHeader ===

The name of the header is {{{'Failure-Report'}}} and the decoded value is one of {{{'yes'}}}, {{{'partial'}}} or {{{'no'}}}.

=== ByteRangeHeader ===

The name of the header is {{{'Byte-Range'}}} and the decoded value is a 3-tuple containing the start, end and length values.

==== attributes ====

'''fro'''::
The start value of the header: the index within the whole message payload where a chunk's payload starts.
'''end'''::
The end value of the header: the index within the whole message payload where a chunk's payload ends. Note that this index is inclusive.
'''length'''::
The total size of the message payload.

=== StatusHeader ===

The name of the header is {{{'Status'}}} and the decoded value is a 2-tuple containing the status code and comment.

==== attributes ====

'''code'''::
The code component of the header.
'''comment'''::
The comment component of the header.

=== ExpiresHeader ===

The name of the header is {{{'Expires'}}} and the decoded value is an integer.

=== MinExpiresHeader ===

The name of the header is {{{'Min-Expires'}}} and the decoded value is an integer.

=== MaxExpiresHeader ===

The name of the header is {{{'Max-Expires'}}} and the decoded value is an integer.

=== UsePathHeader ===

The name of the header is {{{'Use-Path'}}} and the decoded value is a deque of {{{URI}}} objects.

=== WWWAuthenticateHeader ===

The name of the header is {{{'WWW-Authenticate'}}} and the decoded value is a dictionary of the parameters within the header.

=== AuthorizationHeader ===

The name of the header is {{{'Authorization'}}} and the decoded value is a dictionary of the parameters within the header.

=== AuthenticationInfoHeader ===

The name of the header is {{{'Authentication-Info'}}} and the decoded value is a dictionary of the parameters within the header.

=== ContentTypeHeader ===

The name of the header is {{{'Content-Type'}}} and the decoded value is the string representing the MIME type.

=== ContentIDHeader ===

The name of the header is {{{'Content-ID'}}} and the decoded value is the string with the value of the header.

=== ContentDescriptionHeader ===

The name of the header is {{{'Content-Description'}}} and the decoded value is the string with the value of the header.

=== ContentDispositionHeader ===

The name of the header is {{{'Content-Disposition'}}} and the decoded value is a list with two elements: the disposition and a dict with the parameters.

MSRPData

This class is implemented in the {{{msrplib.protocol}}} module and represents an MSRP chunk, either a request or a response.

==== attributes ====

The following attributes are read-only.
'''content_type'''::
The MIME type of the payload carried by this chunk, which is stored in the Content-Type header.
'''message_id'''::
The ID of the message this chunk is part of, which is stored in the Message-ID header.
'''byte_range'''::
A 3-tuple containing the start, end and length values (in this order) from the Byte-Range header.
'''status'''::
The value of the Status header.
'''failure_report'''::
The value of the Failure-Report header, whether it exists or it is implied; one of {{{'yes'}}}, {{{'no'}}}, {{{'partial'}}}.
'''success_report'''::
The value of the Success-Report header, whether it exists or it is implied; one of {{{'yes'}}} or {{{'no'}}}.
'''size'''::
The size of the payload of this chunk, in bytes.

==== methods ====

'''!__init!__'''(''self'', '''transaction_id''', '''method'''={{{None}}}, '''code'''={{{None}}}, '''comment'''={{{None}}}, '''headers'''={{{None}}}, '''data'''={{{''}}}, '''contflag'''={{{'$'}}})::
Initializes a new MSRPData instance. All the arguments are also available as attributes.
[[BR]]''transaction_id'':[[BR]]
The transaction identified of this chunk.
[[BR]]''method'':[[BR]]
The method of this chunk if it a request and {{{None}}} if it is a response.
[[BR]]''code'':[[BR]]
The status code of this chunk if it is a response and {{{None}}} if it is a request.
[[BR]]''comment'':[[BR]]
The comment of this chunk if it is a response and {{{None}}} if it is a request.
[[BR]]''headers'':[[BR]]
A dict containing the headers which are to be added to this chunk, or {{{None}}} if no headers are to be added.
[[BR]]''data'':[[BR]]
The payload of this chunk, or an empty string if no payload is to be added.
[[BR]]''contflag'':[[BR]]
The MSRP continuation flag of this chunk, one of {{{'$'}}}, {{{'#'}}} or {{{'+'}}}.
'''copy'''(''self'')::
Returns a new MSRPData instance with exactly the same attributes as this object.
'''add_header'''(''self'', '''header''')::
Add a MSRP header to this chunk.
[[BR]]''header'':[[BR]]
The header object which is to be added to this chunk.
'''verify_headers'''(''self'')::
Verifies that the chunk contains a To-Path and a From-Path header and that all the headers are valid.
'''encode_start'''(''self'')::
Returns a string containing the MSRP header of this chunk.
'''encode_end'''(''self'', '''continuation''')::
Returns a string containing the MSRP end line of this chunk: 7 commas followed by the transaction identifier and the continuation flag specified.
[[BR]]''continuation'':[[BR]]
The continuation flag which is to be used in the end line.
'''encode'''(''self''):
Returns a string containing the whole of this MSRP chunk.
MSRPTransport

This class is implemented in the {{{msrplib.transport}}} module and provies low level access to the MSRP connection. This class should not be constructed directly, but rather its intances should be obtained by using the various connector/acceptor classes documented above.

==== methods ====

'''make_chunk'''(''self'', '''transaction_id'''={{{None}}}, '''method'''={{{'SEND'}}}, '''code'''={{{None}}}, '''comment'''={{{None}}}, '''data'''={{{''}}}, '''contflag'''={{{None}}}, '''start'''={{{1}}}, '''end'''={{{None}}}, '''length'''={{{None}}}, '''message_id'''={{{None}}})::
Creates a new chunk ({{{protocol.MSRPData}}} instance), which is either an MSRP request or a response. Proper {{{From-Path}}}, {{{To-Path}}}, {{{Byte-Range}}} and {{{Message-ID}}} headers are added based on MSRPTransport's state and the parameters provided. Use ''data'' for payload, and ''start''/''end''/''length'' to generate the {{{Byte-Range}}} header.
[[BR]]''transaction_id'':[[BR]]
The transaction id which will be put in the chunk. If it is not provided, one will be randomly generated.
[[BR]]''method'':[[BR]]
The method of the new MSRP request, or {{{None}}} if a response is required.
[[BR]]''code'':[[BR]]
The code of the new MSRP response, or {{{None}}} if a request is required.
[[BR]]''code'':[[BR]]
The comment of the new MSRP response, or {{{None}}} if a request is required or a comment on the response is not.
[[BR]]''data'':[[BR]]
The payload of the new chunk, or an empty string if no payload is required.
[[BR]]''contflag'':[[BR]]
MSRP chunk's continuation flag ({{{'$'}}}, {{{'+'}}} or {{{'#'}}}). Default is {{{'$'}}} for a full message, unless a partial {{{SEND}}} chunk required, in which case it should be set to {{{'+'}}}. If {{{None}}} is provided, either {{{'$'}}} or {{{'+'}}} will be used depending on whether this chunk seems to carry the last part of the message data.
[[BR]]''start'':[[BR]]
The first byte's index within the whole message payload this chunk will carry as its own payload.
[[BR]]''end'':[[BR]]
The last byte's index within the whole message payload this chunk will carry as its own payload. Note that this is an inclusive index. If this is not provided, it's computed based on the number of bytes in data and {{{start}}}.
[[BR]]''length'':[[BR]]
The total number of bytes of the whole message payload. If this is not provided, it is computed as if this chunk carries that last part of the message payload.
[[BR]]''message_id'':[[BR]]
The ID of the message this chunk is part of. If it is not provided, one will be randomly generated.
'''write_chunk'''(''self'', '''chunk''', '''wait'''={{{True}}})::
Writes the chunk provided to the underlying socket.
[[BR]]''chunk'':[[BR]]
The chunk which is to be written, an instance of {{{MSRPData}}}.
[[BR]]''wait'':[[BR]]
If {{{True}}}, waits for the operation to complete.
'''write_response'''(''self'', '''chunk''', '''code''', '''comment''', '''wait'''={{{True}}}):
Creates a response which is suitable as a reply to the specified chunk and writes it to the underlying socket.
[[BR]]''chunk'':[[BR]]
The chunk for which to create a response.
[[BR]]''code'':[[BR]]
The status code of the response which is to be created.
[[BR]]''comment'':[[BR]]
The comment of the response which is to be created.
[[BR]]''wait'':[[BR]]
If {{{True}}}, waits for the operation to complete.
'''read_chunk'''(''self'', '''size'''={{{None}}})::
Waits for a new chunk and returns it.
If there was an error, closes the connection and raises {{{ChunkParseError}}}.
In case of unintelligible input, loses the connection and returns {{{None}}}.
When the connection is closed, raises the reason of the closure (e.g. {{{ConnectionDone}}}).
If the data already read exceeds ''size'', stops reading the data and returns
a "virtual" chunk, i.e. the one that does not actually correspond the the real
MSRP chunk. Such chunks have Byte-Range header changed to match the number of
bytes read and continuation that is {{{'+'}}}; they also possess {{{segment}}} attribute,
an integer, starting with 1 and increasing with every new segment of the chunk.
Note, that ''size'' only hints when to interrupt the segment but does not affect
how the data is read from socket. You may have segments bigger than ''size'' and it's
legal to set ''size'' to zero (which would mean return a chunk as long as you get
some data, regardless how small).
[[BR]]''size'':[[BR]]
The hint towards how much to read from the socket. If the data already read is larger, then all the data will be returned, even if it exceeds {{{size}}} bytes.
'''check_incoming_SEND_chunk'''(''self'', '''chunk''')::
Checks the 'To-Path' and 'From-Path' of the incoming SEND chunk.
Returns None is the paths are valid for this connection.
If an error is detected an MSRPError is created and returned.
OutgoingFile

This class is implemented in the {{{msrplib.session}}} module and represents a file which is to be sent via MSRP.

==== attributes ====

'''headers'''::
A dict which maps header names to header objects. These headers will be sent in the MSRP message used to send the file.

==== methods ====

'''!__init!__'''(''self'', '''fileobj''', '''size''', '''content_type'''={{{None}}}, '''position'''={{{0}}}, '''message_id'''={{{None}}})::
Initializes a new OutgoingFile using the specified file object. All arguments are available as attributes, except for {{{content_type}}} which will be part of the {{{headers}}} attribute.
[[BR]]''fileobj'':[[BR]]
A file-like object which will be used for reading the data to be sent.
[[BR]]''size'':[[BR]]
The size of the whole file.
[[BR]]''content_type'':[[BR]]
The MIME type associated with the file's data. If provided, it will be added as a Content-Type header.
[[BR]]''position'':[[BR]]
The position within the file from which data will be sent. The file object must already be seeked to this position.
[[BR]]''message_id'':[[BR]]
The message ID which will be used for sending this file.
MSRPSession

This class is implemented in the {{{msrplib.session}}} module and provides a high level API for MSRP sessions.

==== methods ====

'''!__init!__'''(''self'', '''msrptransport''', '''accept_types'''={{{['*']}}}, '''on_incoming_cb'''={{{None}}})::
Initializes MSRPSession instance over the specified transport. The incoming chunks are reported through the ''on_incoming_cb'' callback.
[[BR]]''msrptransport'':[[BR]]
An instance of {{{MSRPTransport}}} over which this session will operate.
[[BR]]''accept_types'':[[BR]]
A list of MIME types which are acceptable over this session. If data is received with a Content-Type header which doesn't match this list, a negative response is sent back and the application does not get the received data. The special strings {{{'*'}}} and {{{'&lt;type&gt;/*'}}} can be used to match multiple MIME types.
[[BR]]''on_incoming_cb'':[[BR]]
A function which receives two arguments, both optional with default values of {{{None}}}: ''chunk'' and ''error''. This will be called when a new chunk is received.
'''send_chunk'''(''self'', '''chunk''', '''response_cb'''={{{None}}})::
Sends the specified chunk and reports the result via the ''response_cb'' callback.
When ''response_cb'' argument is present, it will be used to report
the transaction response to the caller. When a response is received or generated
locally, ''response_cb'' is called with one argument. The function must do something
quickly and must not block, because otherwise it would block the reader greenlet.
If no response was received after {{{RESPONSE_TIMEOUT}}} seconds,
  • 408 response is generated if Failure-Report was {{{'yes'}}} or absent
  • 200 response is generated if Failure-Report was {{{'partial'}}} or {{{'no'}}}
Note that it's rather wasteful to provide ''response_cb'' argument other than {{{None}}}
for chunks with Failure-Report='no' since it will always fire 30 seconds later
with 200 result (unless the other party is broken and ignores Failure-Report header)
If sending is not possible, {{{MSRPSessionError}}} is raised.
[[BR]]''chunk'':[[BR]]
The chunk which is to be sent. It must be an instance of {{{MSRPData}}} which represents a request.
[[BR]]''response_cb'':[[BR]]
A function receiving a single argument which will be the response received for the sent chunk.
'''deliver_chunk'''(''self'', '''chunk''', '''event'''={{{None}}})::
Sends the specified chunk and waits for the transaction response (if Failure-Report header is not {{{'no'}}}).
Returns the transaction response if it's a success or raise {{{MSRPTransactionError}}} if it's not.
If chunk's Failure-Report is {{{'no'}}}, returns {{{None}}} immediately.
[[BR]]''chunk'':[[BR]]
The chunk which is to be sent. It must be an intance of {{{MSRPData}}} which represents a request.
[[BR]]''event'':[[BR]]
The {{{eventlet.coros.event}}} object which will be used to wait for a response. It's send method will be called when a response is received. If it is not provided, one will be constructed automatically and used.
'''send_file'''(''self'', '''outgoing_file''')::
Adds the specified file to the queue of files to be sent. The method returns immediately.
[[BR]]''outgoing_file'':[[BR]]
An instance of {{{OutgoingFile}}} which represents the file to be sent.
'''shutdown'''(''self'', '''sync'''={{{True}}})::
Sends the messages already in queue then closes the connection.
MSRPServer

This class is implemented in the {{{msrplib.connect}}} module.

MSRPServer solves the problem with AcceptorDirect: concurrent using of 2
or more AcceptorDirect instances on the same non-zero port is not possible.
If you initialize() those instances, one after another, one will listen on
the socket and another will get BindError.

MSRPServer avoids the problem by sharing the listening socket between multiple connections.
It has a slightly different interface from AcceptorDirect, so it cannot be considered a drop-in
replacement.

It manages the listening sockets and binds incoming requests.

==== methods ====

'''!__init!__'''(''self'', '''logger''')::
Constructs a new MSRPServer which will be using the specifed logger for its connections.
[[BR]]''logger'':[[BR]]
The default logger which will be used for this object's MSRP connections. See the [wiki:SipMSRPApi#Logging Logging] section for more information.
'''prepare'''(''self'', ''local_uri''={{{None}}}, ''logger''={{{None}}})::
Starts a listening port specified by ''local_uri'' if there isn't one on that port/interface already.
Adds ''local_uri'' to the list of expected URIs, so that incoming connections featuring this URI won't be rejected.
If ''logger'' is provided, it uses it for this connection instead of the one specified in {{{__init___}}}.
[[BR]]''local_uri'':[[BR]]
The URI which will be added to the list of expected URIs. Connections from this URI will be accepted.
[[BR]]''logger'':[[BR]]
The logger which will be used for connections from the specified URI. See the [wiki:SipMSRPApi#Logging Logging] section for more information.
'''complete'''(''self'', ''full_remote_path'')::
Waits until one of the incoming connections binds using the provided ''full_remote_path''.
Returns the connected and bound {{{MSRPTransport}}} instance.
If no such binding was made within {{{MSRPBindSessionTimeout.seconds}}}, {{{MSRPBindSessionTimeout}}} is raised.
[[BR]]''full_remote_path'':[[BR]]
A list of {{{protocol.URI}}} instances, obtained by parsing {{{'a:path'}}} put in SDP by the remote party.
'''cleanup'''(''self'', ''local_uri'')::
Removes ''local_uri'' from the list of expected URIs.
[[BR]]''local_uri'':[[BR]]
The URI which is to be removed from the list of expected URIs.
Logging

Logging is done throughout the library using objects defined by the application, called loggers. If logging is not desired, the {{{application.python.Null}}} object of {{{python-application}}} can be used. These loggers must define the following methods:

==== methods ====

'''received_new_chunk'''('''data''', '''transport''', '''chunk''')::
This method is called when the start of a new chunk is received.
[[BR]]''data'':[[BR]]
The data which came along with the start of the chunk.
[[BR]]''transport'':[[BR]]
The {{{MSRPTransport}}} instance on which the chunk was received.
[[BR]]''chunk'':[[BR]]
The actual chunk object.
'''received_chunk_data'''('''data''', '''transport''', '''transaction_id''')::
This method is called when data is received as part of a chunk previously announced via '''received_new_chunk'''.
[[BR]]''data'':[[BR]]
The data received as part of the chunk.
[[BR]]''transport'':[[BR]]
The {{{MSRPTransport}}} instance on which the chunk was received.
[[BR]]''transaction_id'':[[BR]]
The transaction ID which identifies the chunk for which data was received.
'''received_chunk_end'''('''data''', '''transport''', '''transaction_id''')::
This method is called when the last data of a chunk is received. The chunk was previously announced via '''received_new_chunk'''.
[[BR]]''data'':[[BR]]
The last data received as part of the chunk.
[[BR]]''transport'':[[BR]]
The {{{MSRPTransport}}} instance on which the chunk was received.
[[BR]]''transaction_id'':[[BR]]
The transaction ID which identifies the chunk which was ended.
'''sent_new_chunk'''('''data''', '''transport''', '''chunk''')::
This method is called when the start of a new chunk is sent.
[[BR]]''data'':[[BR]]
The data which was sent along with the start of the chunk.
[[BR]]''transport'':[[BR]]
The {{{MSRPTransport}}} instance on which the chunk was sent.
[[BR]]''chunk'':[[BR]]
The actual chunk object.
'''sent_chunk_data'''('''data''', '''transport''', '''transaction_id''')::
This method is called when data is sent as part of a chunk previously announced via '''sent_new_chunk'''.
[[BR]]''data'':[[BR]]
The data sent as part of the chunk.
[[BR]]''transport'':[[BR]]
The {{{MSRPTransport}}} instance on which the chunk was sent.
[[BR]]''transaction_id'':[[BR]]
The transaction ID which identifies the chunk for which data was sent.
'''sent_chunk_end'''('''data''', '''transport''', '''transaction_id''')::
This method is called when the last data of a chunk is sent. The chunk was previously announced via '''sent_new_chunk'''.
[[BR]]''data'':[[BR]]
The last data sent as part of the chunk.
[[BR]]''transport'':[[BR]]
The {{{MSRPTransport}}} instance on which the chunk was sent.
[[BR]]''transaction_id'':[[BR]]
The transaction ID which identifies the chunk which was ended.
'''debug'''('''message''')::
This method is called when a debug level message is sent by the library.
'''info'''('''message''')::
This method is called when a info level message is sent by the library.
'''warn'''('''message''')::
This method is called when a warning level message is sent by the library.
'''error'''('''message''')::
This method is called when a error level message is sent by the library.
'''fatal'''('''message''')::
This method is called when a fatal level message is sent by the library.
Examples

=== Creating an outbound connection ===

When creating an outbound connection, a relay is not usually used because NAT traversal is not a problem for the endpoing creating the connection. If one is nevertheless desired, a {{{ConnectorRelay}}} can be used instead:

{{{
from msrplib.connect import ConnectorDirect
from msrplib.session import MSRPSession

connector = ConnectorDirect()
full_local_path = connector.prepare()
try: # put full_local_path in SDP 'a:path' attribute of offer # get full_remote_path from remote's 'a:path: attribute of reply
msrp_transport = connector.complete(full_remote_path)
except:
connector.cleanup()
raise

def handle_incoming(chunk=None, error=None):
if error is not None:
print 'Error: %s' % error
session.shutdown()
elif chunk is not None:
print 'Got data: %s' % chunk.data

session = MSRPSession(msrp_transport, on_incoming_cb=handle_incoming)
session.send_chunk(msrp_transport.make_chunk(data='Hello world!'))
}}}

=== Waiting for an inbound connection ===

When creating an inbound connection, a relay must be used for NAT traversal. However, if one is not desired, an {{{AceptorDirect}}} can be used instead:

{{{
from msrplib.connect import AcceptorRelay, MSRPRelaySettings
from msrplib.session import MSRPSession

relay = MSRPRelaySettings(domain='example.org', username='user', password='pass')
connector = AcceptorRelay(relay)
full_local_path = connector.prepare()
try: # get full_remote_path from remote's 'a:path: attribute of offer # put full_local_path in SDP 'a:path' attribute of reply
msrp_transport = connector.complete(full_remote_path)
except:
connector.cleanup()
raise

def handle_incoming(chunk=None, error=None):
if error is not None:
print 'Error: %s' % error
session.shutdown()
elif chunk is not None:
print 'Got data: %s' % chunk.data

session = MSRPSession(msrp_transport, on_incoming_cb=handle_incoming)
session.send_chunk(msrp_transport.make_chunk(data='Hello world!'))
}}}