Project

General

Profile

SipMSRPApi » History » Version 64

Anonymous, 06/28/2011 02:28 PM

1 1 Adrian Georgescu
2 64 Adrian Georgescu
h1. MSRP API
3 1 Adrian Georgescu
4 64 Adrian Georgescu
5
6
7 1 Adrian Georgescu
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.
8
9 64 Adrian Georgescu
* MSRP sessions are defined in "RFC 4975":http://tools.ietf.org/html/rfc4975
10
* MSRP relay extension for NAT traversal is defined in "RFC 4976":http://tools.ietf.org/html/rfc4976
11 1 Adrian Georgescu
12 64 Adrian Georgescu
The MSRP protocol stack is implemented by "python-msrplib":http://download.ag-projects.com/SipClient package. 
13 1 Adrian Georgescu
14 64 Adrian Georgescu
@msrplib@ is based upon "twisted":http://twistedmatrix.com and "eventlet":http://download.ag-projects.com/SipClient/ and provides a set of classes for establishing and managing MSRP connections.
15 1 Adrian Georgescu
16
The library consists of the following modules:
17
18 64 Adrian Georgescu
*msrplib.transport*
19
 Defines @MSRPTransport@ class, which provides low level control over MSRP connections.
20 1 Adrian Georgescu
21 64 Adrian Georgescu
*msrplib.connect*
22
 Defines means to establish a connection, bind it, and provide an initialized @MSRPTransport@ instance.
23 1 Adrian Georgescu
24 64 Adrian Georgescu
*msrplib.session*
25
 Defines @MSRPSession@ class, which provides high level control over a MSRP connection.
26 1 Adrian Georgescu
27 64 Adrian Georgescu
*msrplib.protocol*
28 1 Adrian Georgescu
 Provides representation and parsing of MSRP entities - chunks and MSRP URIs.  
29
30
31 64 Adrian Georgescu
h2. URI
32 1 Adrian Georgescu
33
34 64 Adrian Georgescu
This class is implemented in the @msrplib.protocol@ module and is used to represent an MSRP URI.
35 1 Adrian Georgescu
36
37 64 Adrian Georgescu
h4. methods
38 1 Adrian Georgescu
39
40 64 Adrian Georgescu
*<notextile>__init__</notextile>*(_self_, *host*=@None@, *use_tls*=@False@, *user*=@None@, *port*=@None@, *session_id*=@None@, *parameters*=@None@, *credentials*=@None@)
41
>Constructs a new @URI@. All the arguments specified here are also attributes on the object. For more information on these attributes, see RFC4975.
42
  
43
>+_host_+:
44 1 Adrian Georgescu
45 64 Adrian Georgescu
>The hostname or IP address which forms the URI.
46
  
47
>+_use_tls_+:
48 1 Adrian Georgescu
49 64 Adrian Georgescu
>Whether this identifies an msrps or msrp URI.
50
  
51
>+_user_+:
52 1 Adrian Georgescu
53 64 Adrian Georgescu
>The user part of the URI.
54
  
55
>+_port_+:
56 1 Adrian Georgescu
57 64 Adrian Georgescu
>The port in the URI.
58
  
59
>+_session_id_+:
60
61
>The session identifier part of the URI.
62
  
63
>+_parameters_+:
64
65
>A @dict@ containing the parameters which will be appended to the URI.
66
  
67
>+_credentials_+:
68
69
>A @gnutls.interfaces.twisted.X509Credentials@ object which will be used if this identifies a TLS URI to authenticate to the other endpoint.
70
71
72
h2. MSRPRelaySettings
73
74
75
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).
76
77
78
h4. methods
79
80
81
*<notextile>__init__</notextile>*(_self_, *domain*, *username*, *password*, *host*=@None@, *use_tls*=@False@, *port*=@None@, *credentials*=@None@)
82
>Constructs a new @URI@. All the arguments specified here are also attributes on the object. For more information on these attributes, see RFC4975.
83
  
84
>+_domain_+:
85
86
>The DNS domain in which to search for a MSRP relay using SRV queries.
87
  
88
>+_username_+:
89
90
>The username which will be used to authenticate to the relay.
91
  
92
>+_password_+:
93
94
>The password which will be used to authenticate to the relay.
95
  
96
>+_host_+:
97
98
>The hostname or IP address of the MSRP relay.
99
  
100
>+_use_tls_+:
101
102
>Whether this identifies an msrps or msrp URI.
103
  
104
>+_port_+:
105
106
>The port in the URI.
107
  
108
>+_credentials_+:
109
110
>A @gnutls.interfaces.twisted.X509Credentials@ object which will be used to authenticate to the relay if TLS is used.
111
112
113
h2. ConnectorDirect
114
115
116
This class is implemented in the @msrplib.connect@ module and is used for outbound MSRP connections without a relay.
117
118
119
h4. methods
120
121
122
*<notextile>__init__</notextile>*(_self_, *loger*=@None@, *use_sessmatch*=@False@)
123 1 Adrian Georgescu
 Constructs a new ConnectorDirect.
124 64 Adrian Georgescu
 
125
>+_logger_+:
126 1 Adrian Georgescu
127 64 Adrian Georgescu
 The logger which will be used for this MSRP connection. See the [[SipMSRPApi#Logging|Logging]] section for more information.
128
 
129
>+_use_sessmatch_+:
130
131
 Indicates if the connector should use the session matching mechanism defined by the "sessmatch draft version 10":http://tools.ietf.org/html/draft-ietf-simple-msrp-sessmatch-10
132
133
*prepare*(_self_, *local_uri*=@None@)
134
 This method returns a full local path - list of @protocol.URI@ instances, suitable to be put in SDP @'a:path'@ attribute.
135
 
136
>+_local_uri_+:
137
138 1 Adrian Georgescu
 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
139
 will be automatically generated
140
 
141 64 Adrian Georgescu
*complete*(_self_, *full_remote_path*)
142
 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.
143
 
144
>+_full_remote_path_+:
145 1 Adrian Georgescu
146 64 Adrian Georgescu
 A list of @protocol.URI@ instances, obtained by parsing @'a:path'@ put in SDP by the remote party.
147 1 Adrian Georgescu
148 64 Adrian Georgescu
*cleanup*(_self_)
149
 This method cleans up after @prepare()@; it should be called if @complete()@ will not be called for whatever reason.
150 1 Adrian Georgescu
151
152 64 Adrian Georgescu
h2. AcceptorDirect
153 1 Adrian Georgescu
154
155 64 Adrian Georgescu
This class is implemented in the @msrplib.connect@ module and is used for inbound MSRP connections without using a relay.
156
157
158
h4. methods
159
160
161
*<notextile>__init__</notextile>*(_self_, *loger*=@None@, *use_sessmatch*=@False@)
162
>Constructs a new AcceptorDirect.
163
 
164
>+_logger_+:
165
166
 The logger which will be used for this MSRP connection. See the [[SipMSRPApi#Logging|Logging]] section for more information.
167
 
168
>+_use_sessmatch_+:
169
170
 Indicates if the connector should use the session matching mechanism defined by the "sessmatch draft version 10":http://tools.ietf.org/html/draft-ietf-simple-msrp-sessmatch-10
171
172
*prepare*(_self_, *local_uri*=@None@)
173
 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.
174
 
175
>+_local_uri_+:
176
177 1 Adrian Georgescu
 This attribute will be used to construct the local path and to listen for incomming connections. If not provided, one
178
 will be automatically generated. Note that the object may be changed in place: for example, if the port specified is 0,
179
 a random one will be selected and the object will be updated accordingly.
180
 
181 64 Adrian Georgescu
*complete*(_self_, *full_remote_path*)
182
 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.
183
 
184
>+_full_remote_path_+:
185 1 Adrian Georgescu
186 64 Adrian Georgescu
 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.
187 1 Adrian Georgescu
188 64 Adrian Georgescu
*cleanup*(_self_)
189
 This method cleans up after @prepare()@; it should be called if @complete()@ will not be called for whatever reason.
190 1 Adrian Georgescu
191
192
193 64 Adrian Georgescu
h2. RelayConnection
194 1 Adrian Georgescu
195 64 Adrian Georgescu
196
This class is implemented in the @msrplib.connect@ module and is used for inbound and outbound MSRP connections using a relay.
197
198
199
h4. methods
200
201
202
*<notextile>__init__</notextile>*(_self_, *relay*, *mode*, *loger*=@None@, *use_sessmatch*=@False@)
203 1 Adrian Georgescu
 Constructs a new RelayConnection.
204 64 Adrian Georgescu
 
205
>+_relay_+:
206 1 Adrian Georgescu
207 64 Adrian Georgescu
 An instance of @MSRPRelaySettings@ which identifies the relay which is to be used.
208
 
209
>+_mode_+:
210
211
 A string indicating if this connection should be _active_, an empty SEND should be sent when @complete@ is called, or                         _passive_, where it will wait for one.
212
 
213
>+_logger_+:
214
215
 The logger which will be used for this MSRP connection. See the [[SipMSRPApi#Logging|Logging]] section for more information.
216
 
217
>+_use_sessmatch_+:
218
219
 Indicates if the connector should use the session matching mechanism defined by the "sessmatch draft version 10":http://tools.ietf.org/html/draft-ietf-simple-msrp-sessmatch-10
220
221
*prepare*(_self_, *local_uri*=@None@)
222
 This method returns a full local path - list of @protocol.URI@ instances, suitable to be put in SDP @'a:path'@ attribute.
223
 
224
>+_local_uri_+:
225
226 1 Adrian Georgescu
 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
227
 will be automatically generated
228
 
229 64 Adrian Georgescu
*complete*(_self_, *full_remote_path*)
230
 This method establishes the connection to the relay and binds it (sends an empty chunk or waits for one, depending on the mode, to verify each other's From-Path and To-Path). It returns @transport.MSRPTransport@ instance, ready to read and send chunks.
231
 
232
>+_full_remote_path_+:
233 1 Adrian Georgescu
234 64 Adrian Georgescu
 A list of @protocol.URI@ instances, obtained by parsing @'a:path'@ put in SDP by the remote party.
235 1 Adrian Georgescu
236 64 Adrian Georgescu
*cleanup*(_self_)
237
 This method cleans up after @prepare()@; it should be called if @complete()@ will not be called for whatever reason.
238 1 Adrian Georgescu
239
240
241 64 Adrian Georgescu
h2. MSRPTransport
242 1 Adrian Georgescu
243 64 Adrian Georgescu
244
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.
245
246
247
h4. methods
248
249
250
*make_chunk*(_self_, *transaction_id*=@None@, *method*=@'SEND'@, *code*=@None@, *comment*=@None@, *data*=@''@, *contflag*=@None@, *start*=@1@, *end*=@None@, *length*=@None@, *message_id*=@None@)
251
 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.
252
 
253
>+_transaction_id_+:
254
255 1 Adrian Georgescu
 The transaction id which will be put in the chunk. If it is not provided, one will be randomly generated.
256 64 Adrian Georgescu
 
257
>+_method_+:
258
259
 The method of the new MSRP request, or @None@ if a response is required.
260
 
261
>+_code_+:
262
263
 The code of the new MSRP response, or @None@ if a request is required.
264
 
265
>+_code_+:
266
267
 The comment of the new MSRP response, or @None@ if a request is required or a comment on the response is not.
268
 
269
>+_data_+:
270
271 1 Adrian Georgescu
 The payload of the new chunk, or an empty string if no payload is required.
272 64 Adrian Georgescu
 
273
>+_contflag_+:
274
275
 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.
276
 
277
>+_start_+:
278
279 1 Adrian Georgescu
 The first byte's index within the whole message payload this chunk will carry as its own payload.
280 64 Adrian Georgescu
 
281
>+_end_+:
282
283
 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@.
284
 
285
>+_length_+:
286
287 1 Adrian Georgescu
 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.
288 64 Adrian Georgescu
 
289
>+_message_id_+:
290
291 1 Adrian Georgescu
 The ID of the message this chunk is part of. If it is not provided, one will be randomly generated.
292
293 64 Adrian Georgescu
*write_chunk*(_self_, *chunk*, *wait*=@True@)
294 1 Adrian Georgescu
 Writes the chunk provided to the underlying socket.
295 64 Adrian Georgescu
 
296
>+_chunk_+:
297 1 Adrian Georgescu
298 64 Adrian Georgescu
 The chunk which is to be written, an instance of @MSRPData@.
299
 
300
>+_wait_+:
301
302
 If @True@, waits for the operation to complete.
303
304
*write_response*(_self_, *chunk*, *code*, *comment*, *wait*=@True@):
305 1 Adrian Georgescu
 Creates a response which is suitable as a reply to the specified chunk and writes it to the underlying socket.
306 64 Adrian Georgescu
 
307
>+_chunk_+:
308
309 1 Adrian Georgescu
 The chunk for which to create a response.
310 64 Adrian Georgescu
 
311
>+_code_+:
312
313 1 Adrian Georgescu
 The status code of the response which is to be created.
314 64 Adrian Georgescu
 
315
>+_comment_+:
316
317 1 Adrian Georgescu
 The comment of the response which is to be created.
318 64 Adrian Georgescu
 
319
>+_wait_+:
320 1 Adrian Georgescu
321 64 Adrian Georgescu
 If @True@, waits for the operation to complete.
322
323
*read_chunk*(_self_, *size*=@None@)
324 1 Adrian Georgescu
 Waits for a new chunk and returns it.
325 64 Adrian Georgescu
 If there was an error, closes the connection and raises @ChunkParseError@.
326 1 Adrian Georgescu
327 64 Adrian Georgescu
 In case of unintelligible input, loses the connection and returns @None@.
328
 When the connection is closed, raises the reason of the closure (e.g. @ConnectionDone@).
329 1 Adrian Georgescu
330 64 Adrian Georgescu
 If the data already read exceeds _size_, stops reading the data and returns
331 1 Adrian Georgescu
 a "virtual" chunk, i.e. the one that does not actually correspond the the real
332
 MSRP chunk. Such chunks have Byte-Range header changed to match the number of
333 64 Adrian Georgescu
 bytes read and continuation that is @'+'@; they also possess @segment@ attribute,
334 1 Adrian Georgescu
 an integer, starting with 1 and increasing with every new segment of the chunk.
335
336 64 Adrian Georgescu
 Note, that _size_ only hints when to interrupt the segment but does not affect
337
 how the data is read from socket. You may have segments bigger than _size_ and it's
338
 legal to set _size_ to zero (which would mean return a chunk as long as you get
339 1 Adrian Georgescu
 some data, regardless how small).
340
 
341 64 Adrian Georgescu
 
342
>+_size_+:
343 1 Adrian Georgescu
344 64 Adrian Georgescu
 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.
345
346
*check_incoming_SEND_chunk*(_self_, *chunk*)
347 1 Adrian Georgescu
 Checks the 'To-Path' and 'From-Path' of the incoming SEND chunk.
348
 Returns None is the paths are valid for this connection.
349
 If an error is detected an MSRPError is created and returned.
350
351
352 64 Adrian Georgescu
h2. MSRPData
353 1 Adrian Georgescu
354
355 64 Adrian Georgescu
This class is implemented in the @msrplib.protocol@ module and represents an MSRP chunk, either a request or a response.
356
357
358
h4. attributes
359
360
361 1 Adrian Georgescu
 The following attributes are read-only.
362
363 64 Adrian Georgescu
*content_type*
364
>The MIME type of the payload carried by this chunk, which is stored in the Content-Type header.
365 1 Adrian Georgescu
366 64 Adrian Georgescu
*message_id*
367
>The ID of the message this chunk is part of, which is stored in the Message-ID header.
368 1 Adrian Georgescu
369 64 Adrian Georgescu
*byte_range*
370
>A 3-tuple containing the start, end and length values (in this order) from the Byte-Range header.
371 1 Adrian Georgescu
372 64 Adrian Georgescu
*status*
373
>The value of the Status header.
374 1 Adrian Georgescu
375 64 Adrian Georgescu
*failure_report*
376
>The value of the Failure-Report header, whether it exists or it is implied; one of @'yes'@, @'no'@, @'partial'@.
377 1 Adrian Georgescu
378 64 Adrian Georgescu
*success_report*
379
>The value of the Success-Report header, whether it exists or it is implied; one of @'yes'@ or @'no'@.
380 1 Adrian Georgescu
381 64 Adrian Georgescu
*size*
382
>The size of the payload of this chunk, in bytes.
383 1 Adrian Georgescu
384
385 64 Adrian Georgescu
h4. methods
386 1 Adrian Georgescu
387
388 64 Adrian Georgescu
*<notextile>__init__</notextile>*(_self_, *transaction_id*, *method*=@None@, *code*=@None@, *comment*=@None@, *headers*=@None@, *data*=@''@, *contflag*=@'$'@)
389
>Initializes a new MSRPData instance. All the arguments are also available as attributes.
390
  
391
>+_transaction_id_+:
392 1 Adrian Georgescu
393 64 Adrian Georgescu
>The transaction identified of this chunk.
394
  
395
>+_method_+:
396 1 Adrian Georgescu
397 64 Adrian Georgescu
>The method of this chunk if it a request and @None@ if it is a response.
398
  
399
>+_code_+:
400 1 Adrian Georgescu
401 64 Adrian Georgescu
>The status code of this chunk if it is a response and @None@ if it is a request.
402
  
403
>+_comment_+:
404 1 Adrian Georgescu
405 64 Adrian Georgescu
>The comment of this chunk if it is a response and @None@ if it is a request.
406
  
407
>+_headers_+:
408 1 Adrian Georgescu
409 64 Adrian Georgescu
>A dict containing the headers which are to be added to this chunk, or @None@ if no headers are to be added.
410
  
411
>+_data_+:
412 1 Adrian Georgescu
413 64 Adrian Georgescu
>The payload of this chunk, or an empty string if no payload is to be added.
414
  
415
>+_contflag_+:
416 1 Adrian Georgescu
417 64 Adrian Georgescu
>The MSRP continuation flag of this chunk, one of @'$'@, @'#'@ or @'+'@.
418 1 Adrian Georgescu
419 64 Adrian Georgescu
*copy*(_self_)
420
>Returns a new MSRPData instance with exactly the same attributes as this object.
421 1 Adrian Georgescu
422 64 Adrian Georgescu
*add_header*(_self_, *header*)
423
>Add a MSRP header to this chunk.
424
  
425
>+_header_+:
426 1 Adrian Georgescu
427 64 Adrian Georgescu
>The header object which is to be added to this chunk.
428 1 Adrian Georgescu
429 64 Adrian Georgescu
*verify_headers*(_self_)
430
>Verifies that the chunk contains a To-Path and a From-Path header and that all the headers are valid.
431 1 Adrian Georgescu
432 64 Adrian Georgescu
*encode_start*(_self_)
433
>Returns a string containing the MSRP header of this chunk.
434 1 Adrian Georgescu
435 64 Adrian Georgescu
*encode_end*(_self_, *continuation*)
436
>Returns a string containing the MSRP end line of this chunk: 7 commas followed by the transaction identifier and the continuation flag specified.
437
  
438
>+_continuation_+:
439 1 Adrian Georgescu
440 64 Adrian Georgescu
>The continuation flag which is to be used in the end line.
441 1 Adrian Georgescu
442 64 Adrian Georgescu
*encode*(_self_):
443
>Returns a string containing the whole of this MSRP chunk.
444 1 Adrian Georgescu
445
446 64 Adrian Georgescu
447
h2. OutgoingFile
448
449
450
This class is implemented in the @msrplib.session@ module and represents a file which is to be sent via MSRP.
451
452
453
h4. attributes
454
455
456
*headers*
457
>A dict which maps header names to header objects. These headers will be sent in the MSRP message used to send the file.
458
459
460
h4. methods
461
462
463
*<notextile>__init__</notextile>*(_self_, *fileobj*, *size*, *content_type*=@None@, *position*=@0@, *message_id*=@None@)
464
>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.
465
  
466
>+_fileobj_+:
467
468
>A file-like object which will be used for reading the data to be sent.
469
  
470
>+_size_+:
471
472
>The size of the whole file.
473
  
474
>+_content_type_+:
475
476
>The MIME type associated with the file's data. If provided, it will be added as a Content-Type header.
477
  
478
>+_position_+:
479
480
>The position within the file from which data will be sent. The file object must already be seeked to this position.
481
  
482
>+_message_id_+:
483
484
>The message ID which will be used for sending this file.
485
486
487
h2. MSRPSession
488
489
490
This class is implemented in the @msrplib.session@ module and provides a high level API for MSRP sessions.
491
492
493
h4. methods
494
495
496
*<notextile>__init__</notextile>*(_self_, *msrptransport*, *accept_types*=@['*']@, *on_incoming_cb*=@None@)
497
 Initializes MSRPSession instance over the specified transport. The incoming chunks are reported through the _on_incoming_cb_ callback.
498
 
499
>+_msrptransport_+:
500
501
 An instance of @MSRPTransport@ over which this session will operate.
502
 
503
>+_accept_types_+:
504
505
 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 @'<type>/*'@ can be used to match multiple MIME types.
506
 
507
>+_on_incoming_cb_+:
508
509
 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.
510
511
*send_chunk*(_self_, *chunk*, *response_cb*=@None@)
512
 Sends the specified chunk and reports the result via the _response_cb_ callback.
513
514
 When _response_cb_ argument is present, it will be used to report
515 1 Adrian Georgescu
 the transaction response to the caller. When a response is received or generated
516 64 Adrian Georgescu
 locally, _response_cb_ is called with one argument. The function must do something
517 1 Adrian Georgescu
 quickly and must not block, because otherwise it would block the reader greenlet.
518
519 64 Adrian Georgescu
 If no response was received after @RESPONSE_TIMEOUT@ seconds,
520
* 408 response is generated if Failure-Report was @'yes'@ or absent
521
* 200 response is generated if Failure-Report was @'partial'@ or @'no'@
522 1 Adrian Georgescu
523 64 Adrian Georgescu
 Note that it's rather wasteful to provide _response_cb_ argument other than @None@
524 1 Adrian Georgescu
 for chunks with Failure-Report='no' since it will always fire 30 seconds later
525
 with 200 result (unless the other party is broken and ignores Failure-Report header)
526
527 64 Adrian Georgescu
 If sending is not possible, @MSRPSessionError@ is raised.
528 1 Adrian Georgescu
529 64 Adrian Georgescu
 
530
>+_chunk_+:
531
532
 The chunk which is to be sent. It must be an instance of @MSRPData@ which represents a request.
533
 
534
>+_response_cb_+:
535
536 1 Adrian Georgescu
 A function receiving a single argument which will be the response received for the sent chunk.
537
538 64 Adrian Georgescu
*deliver_chunk*(_self_, *chunk*, *event*=@None@)
539
 Sends the specified chunk and waits for the transaction response (if Failure-Report header is not @'no'@).
540
 Returns the transaction response if it's a success or raise @MSRPTransactionError@ if it's not.
541 1 Adrian Georgescu
542 64 Adrian Georgescu
 If chunk's Failure-Report is @'no'@, returns @None@ immediately.
543 1 Adrian Georgescu
544
 
545 64 Adrian Georgescu
>+_chunk_+:
546
547
 The chunk which is to be sent. It must be an intance of @MSRPData@ which represents a request.
548
 
549
>+_event_+:
550
551
 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.
552
 
553
*send_file*(_self_, *outgoing_file*)
554 59 Adrian Georgescu
 Adds the specified file to the queue of files to be sent. The method returns immediately.
555 64 Adrian Georgescu
 
556
>+_outgoing_file_+:
557 59 Adrian Georgescu
558 64 Adrian Georgescu
 An instance of @OutgoingFile@ which represents the file to be sent.
559
560
*shutdown*(_self_, *sync*=@True@)
561 59 Adrian Georgescu
 Sends the messages already in queue then closes the connection.
562
563
564 64 Adrian Georgescu
h2. MSRPServer
565
566
567
This class is implemented in the @msrplib.connect@ module.
568 59 Adrian Georgescu
    
569
MSRPServer solves the problem with AcceptorDirect: concurrent using of 2
570
or more AcceptorDirect instances on the same non-zero port is not possible.
571
If you initialize() those instances, one after another, one will listen on
572
the socket and another will get BindError.
573
574
MSRPServer avoids the problem by sharing the listening socket between multiple connections.
575
It has a slightly different interface from AcceptorDirect, so it cannot be considered a drop-in
576
replacement.
577
578
It manages the listening sockets and binds incoming requests.
579
580
581 64 Adrian Georgescu
h4. methods
582
583
584
*<notextile>__init__</notextile>*(_self_, *logger*)
585 59 Adrian Georgescu
 Constructs a new MSRPServer which will be using the specifed logger for its connections.
586 64 Adrian Georgescu
 
587
>+_logger_+:
588 59 Adrian Georgescu
589 64 Adrian Georgescu
 The default logger which will be used for this object's MSRP connections. See the [[SipMSRPApi#Logging|Logging]] section for more information.
590
591
*prepare*(_self_, _local_uri_=@None@, _logger_=@None@)
592
 Starts a listening port specified by _local_uri_ if there isn't one on that port/interface already.
593
 Adds _local_uri_ to the list of expected URIs, so that incoming connections featuring this URI won't be rejected.
594
 If _logger_ is provided, it uses it for this connection instead of the one specified in @__init___@.
595
 
596
>+_local_uri_+:
597
598 59 Adrian Georgescu
 The URI which will be added to the list of expected URIs. Connections from this URI will be accepted.
599 64 Adrian Georgescu
 
600
>+_logger_+:
601 59 Adrian Georgescu
602 64 Adrian Georgescu
 The logger which will be used for connections from the specified URI. See the [[SipMSRPApi#Logging|Logging]] section for more information.
603 59 Adrian Georgescu
604 64 Adrian Georgescu
*complete*(_self_, _full_remote_path_)
605
 Waits until one of the incoming connections binds using the provided _full_remote_path_.
606
 Returns the connected and bound @MSRPTransport@ instance.
607
 If no such binding was made within @MSRPBindSessionTimeout.seconds@, @MSRPBindSessionTimeout@ is raised.
608
 
609
>+_full_remote_path_+:
610
611
 A list of @protocol.URI@ instances, obtained by parsing @'a:path'@ put in SDP by the remote party.
612
613
*cleanup*(_self_, _local_uri_)
614
 Removes _local_uri_ from the list of expected URIs.
615
 
616
>+_local_uri_+:
617
618 59 Adrian Georgescu
 The URI which is to be removed from the list of expected URIs.
619
620
621 64 Adrian Georgescu
h2. Headers
622
623
624
The MSRP headers are represented using objects from the @msrplib.protocol module@. All MSRP header object provide three properties:
625
 _name_:
626
627 59 Adrian Georgescu
 The name of the header, as it appears in MSRP chunks.
628 64 Adrian Georgescu
 
629
>+_encode_+:
630
631 59 Adrian Georgescu
 The MSRP encoded header value, as it appears in MSRP chunks.
632 64 Adrian Georgescu
 
633
>+_decode_+:
634
635 59 Adrian Georgescu
 The high-level object representing the header value.
636
637 64 Adrian Georgescu
All headers can be constructed by passing either the encoded or decoded objects to @__init__@. The following headers are provided:
638 59 Adrian Georgescu
639
640 64 Adrian Georgescu
h3. ToPathHeader
641 59 Adrian Georgescu
642
643 64 Adrian Georgescu
The name of the header is @'To-Path'@ and the decoded value is a deque of @URI@ objects.
644 59 Adrian Georgescu
645
646 64 Adrian Georgescu
h3. FromPathHeader
647 59 Adrian Georgescu
648 49 Adrian Georgescu
649 64 Adrian Georgescu
The name of the header is @'From-Path'@ and the decoded value is a deque of @URI@ objects.
650 46 Luci Stanescu
651
652 64 Adrian Georgescu
h3. MessageIDHeader
653 46 Luci Stanescu
654
655 64 Adrian Georgescu
The name of the header is @'Message-ID'@ and the decoded value is the string containing the message ID.
656 46 Luci Stanescu
657
658 64 Adrian Georgescu
h3. SuccessReportHeader
659 46 Luci Stanescu
660
661 64 Adrian Georgescu
The name of the header is @'Success-Report'@ and the decoded value is one of @'yes'@ or @'no'@.
662 46 Luci Stanescu
663
664 64 Adrian Georgescu
h3. FailureReportHeader
665 46 Luci Stanescu
666
667 64 Adrian Georgescu
The name of the header is @'Failure-Report'@ and the decoded value is one of @'yes'@, @'partial'@ or @'no'@.
668 47 Luci Stanescu
669 46 Luci Stanescu
670 64 Adrian Georgescu
h3. ByteRangeHeader
671 46 Luci Stanescu
672
673 64 Adrian Georgescu
The name of the header is @'Byte-Range'@ and the decoded value is a 3-tuple containing the start, end and length values.
674 46 Luci Stanescu
675
676 64 Adrian Georgescu
h4. attributes
677 46 Luci Stanescu
678
679 64 Adrian Georgescu
*fro*
680
>The start value of the header: the index within the whole message payload where a chunk's payload starts.
681
*end*
682
>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.
683
*length*
684
>The total size of the message payload.
685 46 Luci Stanescu
686
687 64 Adrian Georgescu
h3. StatusHeader
688 46 Luci Stanescu
689
690 64 Adrian Georgescu
The name of the header is @'Status'@ and the decoded value is a 2-tuple containing the status code and comment.
691 46 Luci Stanescu
692
693 64 Adrian Georgescu
h4. attributes
694 46 Luci Stanescu
695 47 Luci Stanescu
696 64 Adrian Georgescu
*code*
697
>The code component of the header.
698
*comment*
699
>The comment component of the header.
700 46 Luci Stanescu
701
702 64 Adrian Georgescu
h3. ExpiresHeader
703 46 Luci Stanescu
704
705 64 Adrian Georgescu
The name of the header is @'Expires'@ and the decoded value is an integer.
706 46 Luci Stanescu
707
708 64 Adrian Georgescu
h3. MinExpiresHeader
709 46 Luci Stanescu
710
711 64 Adrian Georgescu
The name of the header is @'Min-Expires'@ and the decoded value is an integer.
712 46 Luci Stanescu
713
714 64 Adrian Georgescu
h3. MaxExpiresHeader
715 46 Luci Stanescu
716
717 64 Adrian Georgescu
The name of the header is @'Max-Expires'@ and the decoded value is an integer.
718 38 Adrian Georgescu
719 1 Adrian Georgescu
720 64 Adrian Georgescu
h3. UsePathHeader
721 38 Adrian Georgescu
722 1 Adrian Georgescu
723 64 Adrian Georgescu
The name of the header is @'Use-Path'@ and the decoded value is a deque of @URI@ objects.
724 1 Adrian Georgescu
725 61 Adrian Georgescu
726 64 Adrian Georgescu
h3. WWWAuthenticateHeader
727 1 Adrian Georgescu
728 52 Luci Stanescu
729 64 Adrian Georgescu
The name of the header is @'WWW-Authenticate'@ and the decoded value is a dictionary of the parameters within the header.
730 52 Luci Stanescu
731 1 Adrian Georgescu
732 64 Adrian Georgescu
h3. AuthorizationHeader
733 52 Luci Stanescu
734 64 Adrian Georgescu
735
The name of the header is @'Authorization'@ and the decoded value is a dictionary of the parameters within the header.
736
737
738
h3. AuthenticationInfoHeader
739
740
741
The name of the header is @'Authentication-Info'@ and the decoded value is a dictionary of the parameters within the header.
742
743
744
h3. ContentTypeHeader
745
746
747
The name of the header is @'Content-Type'@ and the decoded value is the string representing the MIME type.
748
749
750
h3. ContentIDHeader
751
752
753
The name of the header is @'Content-ID'@ and the decoded value is the string with the value of the header.
754
755
756
h3. ContentDescriptionHeader
757
758
759
The name of the header is @'Content-Description'@ and the decoded value is the string with the value of the header.
760
761
762
h3. ContentDispositionHeader
763
764
765
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.
766
767
768
769
h2. Logging
770
771
772
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:
773
774
775
h4. methods
776
777
778
*received_new_chunk*(*data*, *transport*, *chunk*)
779
>This method is called when the start of a new chunk is received.
780
  
781
>+_data_+:
782
783
>The data which came along with the start of the chunk.
784
  
785
>+_transport_+:
786
787
>The @MSRPTransport@ instance on which the chunk was received.
788
  
789
>+_chunk_+:
790
791
>The actual chunk object.
792
793
*received_chunk_data*(*data*, *transport*, *transaction_id*)
794
>This method is called when data is received as part of a chunk previously announced via *received_new_chunk*.
795
  
796
>+_data_+:
797
798
>The data received as part of the chunk.
799
  
800
>+_transport_+:
801
802
>The @MSRPTransport@ instance on which the chunk was received.
803
  
804
>+_transaction_id_+:
805
806
>The transaction ID which identifies the chunk for which data was received.
807
808
*received_chunk_end*(*data*, *transport*, *transaction_id*)
809
>This method is called when the last data of a chunk is received. The chunk was previously announced via *received_new_chunk*.
810
  
811
>+_data_+:
812
813
>The last data received as part of the chunk.
814
  
815
>+_transport_+:
816
817
>The @MSRPTransport@ instance on which the chunk was received.
818
  
819
>+_transaction_id_+:
820
821
>The transaction ID which identifies the chunk which was ended.
822
823
*sent_new_chunk*(*data*, *transport*, *chunk*)
824
>This method is called when the start of a new chunk is sent.
825
  
826
>+_data_+:
827
828
>The data which was sent along with the start of the chunk.
829
  
830
>+_transport_+:
831
832
>The @MSRPTransport@ instance on which the chunk was sent.
833
  
834
>+_chunk_+:
835
836
>The actual chunk object.
837
838
*sent_chunk_data*(*data*, *transport*, *transaction_id*)
839
>This method is called when data is sent as part of a chunk previously announced via *sent_new_chunk*.
840
  
841
>+_data_+:
842
843
>The data sent as part of the chunk.
844
  
845
>+_transport_+:
846
847
>The @MSRPTransport@ instance on which the chunk was sent.
848
  
849
>+_transaction_id_+:
850
851
>The transaction ID which identifies the chunk for which data was sent.
852
853
*sent_chunk_end*(*data*, *transport*, *transaction_id*)
854
>This method is called when the last data of a chunk is sent. The chunk was previously announced via *sent_new_chunk*.
855
  
856
>+_data_+:
857
858
>The last data sent as part of the chunk.
859
  
860
>+_transport_+:
861
862
>The @MSRPTransport@ instance on which the chunk was sent.
863
  
864
>+_transaction_id_+:
865
866
>The transaction ID which identifies the chunk which was ended.
867
868
*debug*(*message*)
869
>This method is called when a debug level message is sent by the library.
870
871
*info*(*message*)
872
>This method is called when a info level message is sent by the library.
873
874
*warn*(*message*)
875
>This method is called when a warning level message is sent by the library.
876
877
*error*(*message*)
878
>This method is called when a error level message is sent by the library.
879
880
*fatal*(*message*)
881
>This method is called when a fatal level message is sent by the library.
882
883
884
h2. Examples
885
886
887
888
h3. Creating an outbound connection
889
890
891
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:
892
893
<pre>
894 1 Adrian Georgescu
from msrplib.connect import ConnectorDirect
895
from msrplib.session import MSRPSession
896
897
connector = ConnectorDirect()
898
full_local_path = connector.prepare()
899
try:
900
    # put full_local_path in SDP 'a:path' attribute of offer
901
    # get full_remote_path from remote's 'a:path: attribute of reply
902
    msrp_transport = connector.complete(full_remote_path)
903
except:
904
    connector.cleanup()
905
    raise
906
907
def handle_incoming(chunk=None, error=None):
908
    if error is not None:
909
       print 'Error: %s' % error
910
       session.shutdown()
911
    elif chunk is not None:
912
       print 'Got data: %s' % chunk.data
913
914
session = MSRPSession(msrp_transport, on_incoming_cb=handle_incoming)
915
session.send_chunk(msrp_transport.make_chunk(data='Hello world!'))
916 64 Adrian Georgescu
</pre>
917 1 Adrian Georgescu
918
919 64 Adrian Georgescu
h3. Waiting for an inbound connection
920 1 Adrian Georgescu
921 64 Adrian Georgescu
922
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:
923
924
<pre>
925 1 Adrian Georgescu
from msrplib.connect import RelayConnection, MSRPRelaySettings
926
from msrplib.session import MSRPSession
927
928
relay = MSRPRelaySettings(domain='example.org', username='user', password='pass')
929
connector = RelayConnection(relay, 'passive')
930
full_local_path = connector.prepare()
931
try:
932
    # get full_remote_path from remote's 'a:path: attribute of offer
933
    # put full_local_path in SDP 'a:path' attribute of reply
934
    msrp_transport = connector.complete(full_remote_path)
935
except:
936
    connector.cleanup()
937
    raise
938
939
def handle_incoming(chunk=None, error=None):
940
    if error is not None:
941
       print 'Error: %s' % error
942
       session.shutdown()
943
    elif chunk is not None:
944
       print 'Got data: %s' % chunk.data
945
946
session = MSRPSession(msrp_transport, on_incoming_cb=handle_incoming)
947
session.send_chunk(msrp_transport.make_chunk(data='Hello world!'))
948 64 Adrian Georgescu
</pre>