SipMiddlewareApi » History » Version 63
Luci Stanescu, 03/26/2010 01:12 AM
1 | 1 | Adrian Georgescu | = Middleware API = |
---|---|---|---|
2 | |||
3 | [[TOC(WikiStart, Sip*, depth=3)]] |
||
4 | |||
5 | 60 | Adrian Georgescu | This chapter describes the event driven ''Middleware API'' that can be used by a developer to build a user interface for SIP SIMPLE client SDK. |
6 | 14 | Adrian Georgescu | |
7 | 54 | Adrian Georgescu | * For sub-systems communications the Middleware uses the [http://pypi.python.org/pypi/python-application/ Notification Bus] provided by [http://pypi.python.org/pypi/python-application/ python-application] |
8 | 49 | Adrian Georgescu | * For configuration the Middleware uses the [wiki:SipConfigurationAPI Configuration API] to access General and SIP account settings |
9 | 1 | Adrian Georgescu | |
10 | 59 | Adrian Georgescu | To see a working example for how to use Middleware, see the [http://sipsimpleclient.com/wiki/SipTesting#TestingGuide Command Line Tools] provided with the library. |
11 | |||
12 | 53 | Adrian Georgescu | [[Image(sipsimple-middleware.png, align=center, width=800)]] |
13 | 1 | Adrian Georgescu | |
14 | 62 | Luci Stanescu | == High-level audio API == |
15 | |||
16 | The high-level audio API hides the complexity of using the low-level PJMEDIA interface. This is implemented in the {{{sipsimple.audio}}} module and contains the following components: |
||
17 | * IAudioPort: an interface describing an object capable of producing and/or consuming audio data. |
||
18 | * AudioDevice: an object conforming to the IAudioPort interface which describes a physical audio device. |
||
19 | * AudioBridge: a collection of objects conforming to IAudioPort which connects all of them in a full mesh. |
||
20 | * WavePlayer: an object conforming to the IAudioPort interface which can playback the audio data from a {{{.wav}}} file. |
||
21 | * WaveRecorder: an object conforming to the IAudioPort interface which can record audio data to a {{{.wav}}} file. |
||
22 | |||
23 | === IAudioPort === |
||
24 | |||
25 | The IAudioPort interface describes an object capable of producing and/or consuming audio data. This can be a dynamic object, which changes its role during its lifetime and notifies such changes using a notification, which is part of the interface. |
||
26 | |||
27 | ==== attributes ==== |
||
28 | |||
29 | '''mixer''':: |
||
30 | The {{{AudioMixer}}} this audio object is connected to. Only audio objects connected to the same mixer will be able to send audio data from one to another. |
||
31 | '''consumer_slot''':: |
||
32 | An integer representing the slot (see [wiki:SipCoreApiDocumentation#AudioMixer AudioMixer]) which this object uses to consume audio data, or {{{None}}} if this object is not a consumer. |
||
33 | '''producer_slot''':: |
||
34 | An integer representing the slot (see [wiki:SipCoreApiDocumentation#AudioMixer AudioMixer]) which this object uses to produce audio data, or {{{None}}} if this object is not a producer. |
||
35 | |||
36 | ==== notifications ==== |
||
37 | |||
38 | '''AudioPortDidChangeSlots''':: |
||
39 | This notification needs to be sent by implementations of this interface when the slots it has change, so as to let the {{{AudioBridges}}} it is part of know that reconnections need to be made. |
||
40 | [[BR]]consumer_slot_changed:[[BR]] |
||
41 | A bool indicating whether the consumer slot was changed. |
||
42 | [[BR]]producer_slot_changed:[[BR]] |
||
43 | A bool indicating whether the producer slot was changed. |
||
44 | [[BR]]old_consumer_slot:[[BR]] |
||
45 | The old slot for consuming audio data. Only required if consumer_slot_changed is {{{True}}}. |
||
46 | [[BR]]new_consumer_slot:[[BR]] |
||
47 | The new slot for consuming audio data. Only required if consumer_slot_changed is {{{True}}}. |
||
48 | [[BR]]old_producer_slot:[[BR]] |
||
49 | The old slot for producing audio data. Only required if producer_slot_changed is {{{True}}}. |
||
50 | [[BR]]new_producer_slot:[[BR]] |
||
51 | The new slot for producing audio data. Only required if producer_slot_changed is {{{True}}}. |
||
52 | |||
53 | === AudioDevice === |
||
54 | |||
55 | The AudioDevice represents the physical audio device which is part of a {{{AudioMixer}}}, implementing the {{{IAudioPort}}} interface. As such, it can be uniquely identified by the mixer it represents. |
||
56 | |||
57 | ==== methods ==== |
||
58 | |||
59 | '''!__init!__'''(''self'', '''mixer''', '''input_muted'''={{{False}}}, '''output_muted'''={{{False}}}): |
||
60 | Instantiates a new AudioDevice which represents the physical device associated with the specified {{{AudioMixer}}}. |
||
61 | [[BR]]mixer:[[BR]] |
||
62 | The {{{AudioMixer}}} whose physical device this object represents. |
||
63 | [[BR]]input_muted:[[BR]] |
||
64 | A boolean which indicates whether this object should act as a producer of audio data. |
||
65 | [[BR]]output_muted:[[BR]] |
||
66 | A boolean which indicates whether this object should act as a consumer of audio data. |
||
67 | |||
68 | ==== attributes ==== |
||
69 | |||
70 | '''input_muted''':: |
||
71 | A writable property which controls whether this object should act as a producer of audio data. An {{{AudioPortDidChange}}} slots notification is sent when this attribute is changed to force connections to be reconsidered within the {{{AudioBridges}}} this object is part of. |
||
72 | '''output_muted''':: |
||
73 | A writable property which controls whether this object should act as a consumer of audio data. An {{{AudioPortDidChange}}} slots notification is sent when this attribute is changed to force connections to be reconsidered within the {{{AudioBridges}}} this object is part of. |
||
74 | |||
75 | === AudioBridge === |
||
76 | |||
77 | The {{{AudioBridge}}} is the basic component which is able to connect {{{IAudioPort}}} implementations. It acts as a container which connects as the producers to all the consumers which are part of it. An object which is both a producer and a consumer of audio data will not be connected to itself. Being an implementation of {{{IAudioPort}}} itself, an {{{AudioBridge}}} can be part of another {{{AudioBridge}}}. The {{{AudioBridge}}} does not keep strong references to the ports it contains and once the port's reference count reaches 0, it is automatically removed from the {{{AudioBridge}}}. |
||
78 | > Note: although this is not enforced, there should never be any cycles when connecting {{{AudioBridges}}}. |
||
79 | |||
80 | ==== methods ==== |
||
81 | |||
82 | '''!__init!__'''(''self'', '''mixer'''):: |
||
83 | Instantiate a new {{{AudioBridge}}} which uses the specified {{{AudioMixer}}} for mixing. |
||
84 | '''add'''(''self'', '''port'''):: |
||
85 | Add an implementation of {{{IAudioPort}}} to this AudioBridge. This will connect the new port to all the existing ports of the bridge. A port cannot be added more than once to an {{{AudioBridge}}}; thus, this object acts like a set. |
||
86 | '''remove'''(''self'', '''port'''):: |
||
87 | Remove a port from this {{{AudioBridge}}}. The port must have previously been added to the {{{AudioBridge}}}, otherwise a {{{ValueError}}} is raised. |
||
88 | |||
89 | === WavePlayer === |
||
90 | |||
91 | A {{{WavePlayer}}} is an implementation of {{{IAudioPort}}} which is capable of producing audio data read from a {{{.wav}}} file. This object is completely reusable, as it can be started and stopped any number of times. |
||
92 | |||
93 | ==== methods ==== |
||
94 | |||
95 | '''!__init!__'''(''self'', '''mixer''', '''filename''', '''volume'''={{{100}}}, '''loop_count'''={{{1}}}, '''pause_time'''={{{0}}}, '''initial_play'''={{{True}}}):: |
||
96 | Instantiate a new {{{WavePlayer}}} which is capable of playing a {{{.wav}}} file repeatedly. All the parameters are available as attributes of the object, but should not be changed once the object has been started. |
||
97 | [[BR]]mixer:[[BR]] |
||
98 | The {{{AudioMixer}}} this object is connected to. |
||
99 | [[BR]]filename:[[BR]] |
||
100 | The full path to the {{{.wav}}} file from which audio data is to be read. |
||
101 | [[BR]]volume:[[BR]] |
||
102 | The volume at which the file should be played. |
||
103 | [[BR]]loop_count:[[BR]] |
||
104 | The number of times the file should be played, or {{{0}}} for infinity. |
||
105 | [[BR]]pause_time:[[BR]] |
||
106 | How many seconds to wait between successive plays of the file. |
||
107 | [[BR]]initial_play:[[BR]] |
||
108 | Whether or not the file to play once the {{{WavePlayer}}} is started, or to wait {{{pause_time}}} seconds before the first play. |
||
109 | '''start'''(''self''):: |
||
110 | Start playing the {{{.wav}}} file. |
||
111 | '''stop'''(''self''):: |
||
112 | Stop playuing the {{{.wav}}} file immediately. |
||
113 | |||
114 | ==== attributes ==== |
||
115 | |||
116 | '''is_active''':: |
||
117 | A boolean indicating whether or not this {{{WavePlayer}}} is currently playing. |
||
118 | |||
119 | ==== notifications ==== |
||
120 | |||
121 | '''WavePlayerDidStart''':: |
||
122 | This notification is sent when the {{{WavePlayer}}} starts playing the file the first time after the {{{start()}}} method has been called. |
||
123 | [[BR]]timestamp:[[BR]] |
||
124 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
125 | '''WavePlayerDidEnd''':: |
||
126 | This notification is sent when the {{{WavePlayer}}} is done playing either as a result of playing the number of times it was told to, or because the {{{stop()}}} method has been called. |
||
127 | [[BR]]timestamp:[[BR]] |
||
128 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
129 | '''WavePlayerDidFail''':: |
||
130 | This notification is sent when the {{{WavePlayer}}} is not capable of playing the {{{.wav}}} file. |
||
131 | [[BR]]timestamp:[[BR]] |
||
132 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
133 | [[BR]]error:[[BR]] |
||
134 | The exception raised by the {{{WaveFile}}} which identifies the cause for not being able to play the {{{.wav}}} file. |
||
135 | |||
136 | === WaveRecorder === |
||
137 | |||
138 | A {{{WaveRecorder}}} is an implementation of {{{IAudioPort}}} is is capable of consuming audio data and writing it to a {{{.wav}}} file. Just like {{{WavePlayer}}}, this object is reusable: once stopped it can be started again, but if the filename attribute is not changed, the previously written file will be overwritten. |
||
139 | |||
140 | ==== methods ==== |
||
141 | |||
142 | '''!__init!__'''(''self'', '''mixer''', '''filename'''):: |
||
143 | Instantiate a new {{{WaveRecorder}}}. |
||
144 | [[BR]]mixer:[[BR]] |
||
145 | The {{{AudioMixer}}} this {{{WaveRecorder}}} is connected to. |
||
146 | [[BR]]filename:[[BR]] |
||
147 | The full path to the {{{.wav}}} file where this object should write the audio data. The file must be writable. The directories up to the file will be created if possible when the {{{start()}}} method is called. |
||
148 | '''start'''(''self''):: |
||
149 | Start consuming audio data and writing it to the {{{.wav}}} file. If this object is not part of an {{{AudioBridge}}}, not audio data will be written. |
||
150 | '''stop'''(''self''):: |
||
151 | Stop consuming audio data and close the {{{.wav}}} file. |
||
152 | |||
153 | ==== attributes ==== |
||
154 | |||
155 | '''is_active''':: |
||
156 | A boolean indicating whether or not this {{{WaveRecorder}}} is currently recording audio data. |
||
157 | |||
158 | 1 | Adrian Georgescu | == SIPApplication == |
159 | |||
160 | 62 | Luci Stanescu | Implemented in [browser:sipsimple/application.py] |
161 | 1 | Adrian Georgescu | |
162 | 62 | Luci Stanescu | Implements a high-level application responsable for starting and stopping various sub-systems required to implement a fully featured SIP User Agent application. The SIPApplication class is a Singleton and can be instantiated from any part of the code, obtaining a reference to the same object. The SIPApplication takes care of initializing the following components: |
163 | * the twisted thread |
||
164 | * the configuration system, via the [wiki:SipConfigurationAPI#ConfigurationManager ConfigurationManager]. |
||
165 | * the core [wiki:SipCoreApiDocumentation#Engine Engine] using the settings in the configuration |
||
166 | * the [wiki:SipMiddlewareApi#AccountManager AccountManager], using the accounts in the configuration |
||
167 | 63 | Luci Stanescu | * the [wiki:SipMiddlewareApi#SessionManager SessionManager], in order to handle incoming sessions |
168 | 62 | Luci Stanescu | * two [wiki:SipMiddlewareApi#AudioBridge AudioBridges], using the settings in the configuration |
169 | 1 | Adrian Georgescu | |
170 | 62 | Luci Stanescu | The attributes in this class can be set and accessed on both this class and its subclasses, as they are implemented using descriptors which keep single value for each attribute, irrespective of the class from which that attribute is set/accessed. Usually, all attributes should be considered read-only. |
171 | 1 | Adrian Georgescu | |
172 | 62 | Luci Stanescu | === Methods === |
173 | |||
174 | '''!__init!__'''(''self''):: |
||
175 | Instantiates a new SIPApplication. |
||
176 | '''start'''(''self'', '''config_backend'''):: |
||
177 | Starts the {{{SIPApplication}}} which initializes all the components in the correct order. The {{{config_backend}}} is used to start the {{{ConfigurationManager}}}. If any error occurs with loading the configuration, the exception raised by the {{{ConfigurationManager}}} is propagated by this method and {{{SIPApplication}}} can be started again. After this, any fatal errors will result in the SIPApplication being stopped and unusable, which means the whole application will need to stop. This method returns as soon as the twisted thread has been started, which means the application must wait for the {{{SIPApplicationDidStart}}} notification in order to know that the application started. |
||
178 | '''stop'''(''self''):: |
||
179 | Stop all the components started by the SIPApplication. This method returns immediately, but a {{{SIPApplicationDidEnd}}} notification is sent when all the components have been stopped. |
||
180 | |||
181 | 1 | Adrian Georgescu | === Attributes === |
182 | |||
183 | 62 | Luci Stanescu | '''running''':: |
184 | {{{True}}} if the SIPApplication is running (it has been started and it has not been told to stop), {{{False}}} otherwise. |
||
185 | '''alert_audio_mixer''':: |
||
186 | The {{{AudioMixer}}} object created on the alert audio device as defined by the configuration (by SIPSimpleSettings.audio.alert_device). |
||
187 | '''alert_audio_bridge''':: |
||
188 | An {{{AudioBridge}}} where {{{IAudioPort}}} objects can be added to playback sound to the alert device. |
||
189 | '''alert_audio_device''':: |
||
190 | An {{{AudioDevice}}} which corresponds to the alert device as defined by the configuration. This will always be part of the alert_audio_bridge. |
||
191 | '''voice_audio_mixer''':: |
||
192 | The {{{AudioMixer}}} object created on the voice audio device as defined by the configuration (by SIPSimpleSettings.audio.input_device and SIPSimpleSettings.audio.output_device). |
||
193 | '''voice_audio_bridge''':: |
||
194 | An {{{AudioBridge}}} where {{{IAudioPort}}} objects can be added to playback sound to the output device or record sound from the input device. |
||
195 | '''voice_audio_device''':: |
||
196 | An {{{AudioDevice}}} which corresponds to the voice device as defined by the configuration. This will always be part of the voice_audio_bridge. |
||
197 | 1 | Adrian Georgescu | |
198 | === Notifications === |
||
199 | 62 | Luci Stanescu | |
200 | '''SIPApplicationWillStart''':: |
||
201 | This notification is sent just after the configuration has been loaded and the twisted thread started, but before any other components have been initialized. |
||
202 | [[BR]]timestamp:[[BR]] |
||
203 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
204 | '''SIPApplicationDidStart''':: |
||
205 | This notification is sent when all the components have been initialized. Note: it doesn't mean that all components have succeeded, for example, the account might not have registered by this time, but the registration process will have started. |
||
206 | [[BR]]timestamp:[[BR]] |
||
207 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
208 | '''SIPApplicationWillEnd''':: |
||
209 | This notification is sent as soon as the {{{stop()}}} method has been called. |
||
210 | [[BR]]timestamp:[[BR]] |
||
211 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
212 | '''SIPApplicationDidEnd''':: |
||
213 | This notification is sent when all the components have been stopped. All components have been given reasonable time to shutdown gracefully, such as the account unregistering. However, because of factors outside the control of the middleware, such as network problems, some components might not have actually shutdown gracefully; this is needed because otherwise the SIPApplication could hang indefinitely (for example because the system is no longer connected to a network and it cannot be determined when it will be again). |
||
214 | [[BR]]timestamp:[[BR]] |
||
215 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
216 | '''SIPApplicationFailedToStartTLS''':: |
||
217 | This notification is sent when a problem arises with initializing the TLS transport. In this case, the Engine will be started without TLS support and this notification contains the error which identifies the cause for not being able to start the TLS transport. |
||
218 | [[BR]]timestamp:[[BR]] |
||
219 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
220 | [[BR]]error:[[BR]] |
||
221 | The exception raised by the Engine which identifies the cause for not being able to start the TLS transport. |
||
222 | 50 | Adrian Georgescu | |
223 | 1 | Adrian Georgescu | |
224 | 63 | Luci Stanescu | == SIP Sessions == |
225 | 1 | Adrian Georgescu | |
226 | 63 | Luci Stanescu | SIP sessions are supported by the {{{sipsimple.session.Session}}} class and independent stream classes, which need to implement the {{{sipsimple.streams.IMediaStream}}} interface. The {{{Session}}} class takes care of the signalling, while the streams offer the actual media support which is negotiated by the {{{Session}}}. The streams which are implemented in the SIP SIMPLE middleware are provided in modules within the {{{sipsimple.streams}}} package, but they are accessible for import directly from {{{sipsimple.streams}}}. Currently, the middleware implements two types of streams, one for RTP data, with a concrete implementation in the {{{AudioStream}}} class, and one for MSRP sessions, with concrete implementations in the {{{ChatStream}}}, {{{FileTransferStream}}} and {{{DesktopSharingStream}}} classes. However, the application can provide its own stream implementation, provided they respect the {{{IMediaStream}}} interface. |
227 | |||
228 | === Session === |
||
229 | |||
230 | 51 | Adrian Georgescu | [[Image(sipsimple-session-state-machine.png, align=right, width=400)]] |
231 | 44 | Adrian Georgescu | |
232 | 1 | Adrian Georgescu | Implemented in [browser:sipsimple/session.py] |
233 | |||
234 | 26 | Luci Stanescu | A {{{sipsimple.session.Session}}} object represents a complete SIP session between the local and a remote endpoints. Both incoming and outgoing sessions are represented by this class. |
235 | 1 | Adrian Georgescu | |
236 | A {{{Session}}} instance is a stateful object, meaning that it has a {{{state}}} attribute and that the lifetime of the session traverses different states, from session creation to termination. |
||
237 | State changes are triggered by methods called on the object by the application or by received network events. |
||
238 | 2 | Adrian Georgescu | These states and their transitions are represented in the following diagram: |
239 | 1 | Adrian Georgescu | |
240 | 63 | Luci Stanescu | Although these states are crucial to the correct operation of the {{{Session}}} object, an application using this object does not need to keep track of these states, as a set of notifications is also emitted, which provide all the necessary information to the application. |
241 | 1 | Adrian Georgescu | |
242 | 63 | Luci Stanescu | The {{{Session}}} is completely independent of the streams it contains, which need to be implementations of the {{{sipsimple.streams.IMediaStream}}} interface. This interface provides the API by which the {{{Session}}} communicates with the streams. This API should not be used by the application, unless it also provides stream implementations or a SIP INVITE session implementation. |
243 | |||
244 | ==== methods ==== |
||
245 | |||
246 | '''!__init!__'''(''self'', '''account'''):: |
||
247 | Creates a new {{{Session}}} object in the {{{None}}} state. |
||
248 | [[BR]]''account'':[[BR]] |
||
249 | The local account to be associated with this {{{Session}}}. |
||
250 | '''connect'''(''self'', '''to_header''', '''routes''', '''streams'''):: |
||
251 | Will set up the {{{Session}}} as outbound and propose the new session to the specified remote party and move the state machine to the {{{outgoing}}} state. |
||
252 | Before contacting the remote party, a {{{SIPSessionNewOutgoing}}} notification will be emitted. |
||
253 | If there is a failure or the remote party rejected the offer, a {{{SIPSessionDidFail}}} notification will be sent. |
||
254 | Any time a ringing indication is received from the remote party, a {{{SIPSessionGotRingIndication}}} notification is sent. |
||
255 | If the remote party accepted the session, a {{{SIPSessionWillStart}}} notification will be sent, followed by a {{{SIPSessionDidStart}}} notification when the session is actually established. |
||
256 | This method may only be called while in the {{{None}}} state. |
||
257 | [[BR]]''to_header'':[[BR]] |
||
258 | A {{{sipsimple.core.ToHeader}}} object representing the remote identity to initiate the session to. |
||
259 | [[BR]]''routes'':[[BR]] |
||
260 | An iterable of {{{sipsimple.util.Route}}} objects, specifying the IP, port and transport to the outbound proxy. |
||
261 | These routes will be tried in order, until one of them succeeds. |
||
262 | [[BR]]''streams'':[[BR]] |
||
263 | A list of stream objects which will be offered to the remote endpoint. |
||
264 | '''send_ring_indication'''(''self''):: |
||
265 | Sends a 180 provisional response in the case of an incoming session. |
||
266 | '''accept'''(''self'', '''streams'''):: |
||
267 | Calling this methods will accept an incoming session and move the state machine to the {{{accepting}}} state. |
||
268 | When there is a new incoming session, a {{{SIPSessionNewIncoming}}} notification is sent, after which the application can call this method on the sender of the notification. |
||
269 | After this method is called, {{{SIPSessionWillStart}}} followed by {{{SIPSessionDidStart}}} will be emitted, or {{{SIPSessionDidFail}}} on an error. |
||
270 | This method may only be called while in the {{{incoming}}} state. |
||
271 | [[BR]]''streams'':[[BR]] |
||
272 | A list of streams which needs to be a subset of the proposed streams which indicates which streams are to be accepted. All the other proposed streams will be rejected. |
||
273 | '''reject'''(''self'', '''code'''={{{603}}}, '''reason'''={{{None}}}):: |
||
274 | Reject an incoming session and move it to the {{{terminaing}}} state, which eventually leads to the {{{terminated}}} state. |
||
275 | Calling this method will cause the {{{Session}}} object to emit a {{{SIPSessionDidFail}}} notification once the session has been rejected. |
||
276 | This method may only be called while in the {{{incoming}}} state. |
||
277 | [[BR]]''code'':[[BR]] |
||
278 | An integer which represents the SIP status code in the response which is to be sent. Usually, this is either 486 (Busy) or 603 (Decline/Busy Everywhere). |
||
279 | [[BR]]''reason'':[[BR]] |
||
280 | The string which is to be sent as the SIP status reason in the response, or None if PJSIP's default reason for the specified code is to be sent. |
||
281 | '''accept_proposal'''(''self'', '''streams'''):: |
||
282 | When the remote party proposes to add some new streams, signaled by the {{{SIPSessionGotProposal}}} notification, the application can use this method to accept the stream(s) being proposed. |
||
283 | After calling this method a {{{SIPSessionGotAcceptProposal}}} notification is sent, unless an error occurs while setting up the new stream, in which case a {{{SIPSessionHadProposalFailure}}} notification is sent and a rejection is sent to the remote party. As with any action which causes the streams in the session to change, a {{{SIPSessionDidRenegotiateStreams}}} notification is also sent. |
||
284 | This method may only be called while in the {{{received_proposal}}} state. |
||
285 | [[BR]]''streams'':[[BR]] |
||
286 | A list of streams which needs to be a subset of the proposed streams which indicates which streams are to be accepted. All the other proposed streams will be rejected. |
||
287 | '''reject_proposal'''(''self'', '''code'''={{{488}}}, '''reason'''={{{None}}}):: |
||
288 | When the remote party proposes new streams that the application does not want to accept, this method can be used to reject the proposal, after which a {{{SIPSessionGotRejectProposal}}} or {{{SIPSessionHadProposalFailure}}} notification is sent. |
||
289 | This method may only be called while in the {{{received_proposal}}} state. |
||
290 | [[BR]]''code'':[[BR]] |
||
291 | An integer which represents the SIP status code in the response which is to be sent. Usually, this is 488 (Not Acceptable Here). |
||
292 | [[BR]]''reason'':[[BR]] |
||
293 | The string which is to be sent as the SIP status reason in the response, or None if PJSIP's default reason for the specified code is to be sent. |
||
294 | '''add_stream'''(''self'', '''stream'''):: |
||
295 | Proposes a new stream to the remote party. |
||
296 | Calling this method will cause a {{{SIPSessionGotProposal}}} notification to be emitted. |
||
297 | After this, the state machine will move into the {{{sending_proposal}}} state until either a {{{SIPSessionGotAcceptProposal}}}, {{{SIPSessionGotRejectProposal}}} or {{{SIPSessionHadProposalFailure}}} notification is sent, informing the application if the remote party accepted the proposal. As with any action which causes the streams in the session to change, a {{{SIPSessionDidRenegotiateStreams}}} notification is also sent. |
||
298 | This method may only be called while in the {{{connected}}} state. |
||
299 | '''remove_stream'''(''self'', '''stream'''):: |
||
300 | Stop the stream and remove it from the session, informing the remote party of this. Although technically this is also done via an SDP negotiation which may fail, the stream will always get remove (if the remote party refuses the re-INVITE, the result will be that the remote party will have a different view of the active streams than the local party). |
||
301 | This method may only be called while in the {{{connected}}} state. |
||
302 | '''cancel_proposal'''(''self''):: |
||
303 | This method cancels a proposal of adding a stream to the session by sending a CANCEL request. A {{{SIPSessionGotRejectProposal}}} notification will be sent with code 487. |
||
304 | '''hold'''(''self''):: |
||
305 | Put the streams of the session which support the notion of hold on hold. |
||
306 | This will cause a {{{SIPSessionDidChangeHoldState}}} notification to be sent. |
||
307 | This method may be called in any state and will send the re-INVITE as soon as it is possible. |
||
308 | '''unhold'''(''self''):: |
||
309 | Take the streams of the session which support the notion of hold out of hold. |
||
310 | This will cause a {{{SIPSessionDidChangeHoldState}}} notification to be sent. |
||
311 | This method may be called in any state and will send teh re-INVITE as soon as it is possible. |
||
312 | '''end'''(''self''):: |
||
313 | This method may be called any time after the {{{Session}}} has started in order to terminate the session by sending a BYE request. |
||
314 | Right before termination a {{{SIPSessionWillEnd}}} notification is sent, after termination {{{SIPSessionDidEnd}}} is sent. |
||
315 | |||
316 | 1 | Adrian Georgescu | === Attributes === |
317 | |||
318 | '''state''':: |
||
319 | The state the object is currently in, being one of the states from the diagram above. |
||
320 | '''account''':: |
||
321 | The {{{sipsimple.account.Account}}} or {{{sipsimple.account.BonjourAccount}}} object that the {{{Session}}} is associated with. |
||
322 | 19 | Ruud Klaver | On an outbound session, this is the account the application specified on object instantiation. |
323 | 1 | Adrian Georgescu | '''direction''':: |
324 | A string indicating the direction of the initial negotiation of the session. |
||
325 | 32 | Adrian Georgescu | This can be either {{{None}}}, "incoming" or "outgoing". |
326 | 63 | Luci Stanescu | '''transport''':: |
327 | A string representing the transport this {{{Session}}} is using: {{{"udp"}}}, {{{"tcp"}}} or {{{"tls"}}}. |
||
328 | 1 | Adrian Georgescu | '''start_time''':: |
329 | The time the session started as a {{{datetime.datetime}}} object, or {{{None}}} if the session was not yet started. |
||
330 | '''stop_time''':: |
||
331 | The time the session stopped as a {{{datetime.datetime}}} object, or {{{None}}} if the session has not yet terminated. |
||
332 | '''on_hold''':: |
||
333 | Boolean indicating whether the session was put on hold, either by the local or the remote party. |
||
334 | '''remote_user_agent''':: |
||
335 | A string indicating the remote user agent, if it provided one. |
||
336 | Initially this will be {{{None}}}, it will be set as soon as this information is received from the remote party (which may be never). |
||
337 | 63 | Luci Stanescu | '''local_identity''':: |
338 | The {{{sipsimple.core.FrozenFromHeader}}} or {{{sipsimple.core.FrozenToHeader}}} identifying the local party, if the session is active, {{{None}}} otherwise. |
||
339 | '''remote_identity''':: |
||
340 | The {{{sipsimple.core.FrozenFromHeader}}} or {{{sipsimple.core.FrozenToHeader}}} identifying the remote party, if the session is active, {{{None}}} otherwise. |
||
341 | '''streams''':: |
||
342 | A list of the currently active streams in the {{{Session}}}. |
||
343 | '''proposed_streams''':: |
||
344 | A list of the currently proposed streams in the {{{Session}}}, or {{{None}}} if there is no proposal in progress. |
||
345 | 1 | Adrian Georgescu | |
346 | === Notifications === |
||
347 | |||
348 | '''SIPSessionNewIncoming''':: |
||
349 | 26 | Luci Stanescu | Will be sent when a new incoming {{{Session}}} is received. |
350 | 63 | Luci Stanescu | The application should listen for this notification to get informed of incoming sessions. |
351 | 1 | Adrian Georgescu | [[BR]]''timestamp'':[[BR]] |
352 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
353 | [[BR]]''streams'':[[BR]] |
||
354 | 63 | Luci Stanescu | A list of streams that were proposed by the remote party. |
355 | 1 | Adrian Georgescu | '''SIPSessionNewOutgoing''':: |
356 | Will be sent when the applcation requests a new outgoing {{{Session}}}. |
||
357 | [[BR]]''timestamp'':[[BR]] |
||
358 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
359 | [[BR]]''streams'':[[BR]] |
||
360 | 63 | Luci Stanescu | A list of streams that were proposed to the remote party. |
361 | 1 | Adrian Georgescu | '''SIPSessionGotRingIndication''':: |
362 | Will be sent when an outgoing {{{Session}}} receives an indication that a remote device is ringing. |
||
363 | [[BR]]''timestamp'':[[BR]] |
||
364 | 26 | Luci Stanescu | A {{{datetime.datetime}}} object indicating when the notification was sent. |
365 | 63 | Luci Stanescu | '''SIPSessionGotProvisionalResponse''':: |
366 | Will be sent whenever the {{{Session}}} receives a provisional response as a result of sending a (re-)INVITE. |
||
367 | [[BR]]''timestamp'':[[BR]] |
||
368 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
369 | [[BR]]''code'':[[BR]] |
||
370 | The SIP status code received. |
||
371 | [[BR]]''reason'':[[BR]] |
||
372 | The SIP status reason received. |
||
373 | 1 | Adrian Georgescu | '''SIPSessionWillStart''':: |
374 | Will be sent just before a {{{Session}}} completes negotiation. |
||
375 | In terms of SIP, this is sent after the final response to the {{{INVITE}}}, but before the {{{ACK}}}. |
||
376 | [[BR]]''timestamp'':[[BR]] |
||
377 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
378 | '''SIPSessionDidStart''':: |
||
379 | 63 | Luci Stanescu | Will be sent when a {{{Session}}} completes negotiation and all the streams have started. |
380 | 26 | Luci Stanescu | In terms of SIP this is sent after the {{{ACK}}} was sent or received. |
381 | 1 | Adrian Georgescu | [[BR]]''timestamp'':[[BR]] |
382 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
383 | 63 | Luci Stanescu | [[BR]]''streams'':[[BR]] |
384 | The list of streams which now form the active streams of the {{{Session}}}. |
||
385 | 1 | Adrian Georgescu | '''SIPSessionDidFail''':: |
386 | 63 | Luci Stanescu | This notification is sent whenever the session fails before it starts. |
387 | 5 | Redmine Admin | The failure reason is included in the data attributes. |
388 | 63 | Luci Stanescu | This notification is never followed by {{{SIPSessionDidEnd}}}. |
389 | 1 | Adrian Georgescu | [[BR]]''timestamp'':[[BR]] |
390 | 26 | Luci Stanescu | A {{{datetime.datetime}}} object indicating when the notification was sent. |
391 | 1 | Adrian Georgescu | [[BR]]''originator'':[[BR]] |
392 | 63 | Luci Stanescu | A string indicating the originator of the {{{Session}}}. This will either be "local" or "remote". |
393 | 1 | Adrian Georgescu | [[BR]]''code'':[[BR]] |
394 | The SIP error code of the failure. |
||
395 | [[BR]]''reason'':[[BR]] |
||
396 | 63 | Luci Stanescu | A SIP status reason. |
397 | [[BR]]''failure_reason'':[[BR]] |
||
398 | A string which represents the reason for the failure, such as {{{"user_request"}}}, {{{"missing ACK"}}}, {{{"SIP core error..."}}}. |
||
399 | 1 | Adrian Georgescu | '''SIPSessionWillEnd''':: |
400 | 63 | Luci Stanescu | Will be sent just before terminating a {{{Session}}}. |
401 | 1 | Adrian Georgescu | [[BR]]''timestamp'':[[BR]] |
402 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
403 | '''SIPSessionDidEnd''':: |
||
404 | 63 | Luci Stanescu | Will be sent always when a {{{Session}}} ends as a result of remote or local session termination. |
405 | 1 | Adrian Georgescu | [[BR]]''timestamp'':[[BR]] |
406 | 19 | Ruud Klaver | A {{{datetime.datetime}}} object indicating when the notification was sent. |
407 | [[BR]]''originator'':[[BR]] |
||
408 | 63 | Luci Stanescu | A string indicating who originated the termination. This will either be "local" or "remote". |
409 | [[BR]]''end_reason'':[[BR]] |
||
410 | A string representing the termination reason, such as {{{"user_request"}}}, {{{"SIP core error..."}}}. |
||
411 | '''SIPSessionDidChangeHoldState''':: |
||
412 | Will be sent when the session got put on hold or removed from hold, either by the local or the remote party. |
||
413 | 1 | Adrian Georgescu | [[BR]]''timestamp'':[[BR]] |
414 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
415 | [[BR]]''originator'':[[BR]] |
||
416 | A string indicating who originated the hold request, and consequently in which direction the session got put on hold. |
||
417 | 63 | Luci Stanescu | [[BR]]''on_hold'':[[BR]] |
418 | {{{True}}} if there is at least one stream which is on hold and {{{False}}} otherwise. |
||
419 | [[BR]]''partial'':[[BR]] |
||
420 | {{{True}}} if there is at least one stream which is on hold and one stream which supports hold but is not on hold and {{{False}}} otherwise. |
||
421 | '''SIPSessionGotProposal''':: |
||
422 | Will be sent when either the local or the remote party proposes to add streams to the session. |
||
423 | 26 | Luci Stanescu | [[BR]]''timestamp'':[[BR]] |
424 | 23 | Ruud Klaver | A {{{datetime.datetime}}} object indicating when the notification was sent. |
425 | [[BR]]''originator'':[[BR]] |
||
426 | 63 | Luci Stanescu | The party that initiated the stream proposal, can be either "local" or "remote". |
427 | [[BR]]''streams'':[[BR]] |
||
428 | A list of streams that were proposed. |
||
429 | '''SIPSessionGotRejectProposal''':: |
||
430 | Will be sent when either the local or the remote party rejects a proposal to have streams added to the session. |
||
431 | 6 | Ruud Klaver | [[BR]]''timestamp'':[[BR]] |
432 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
433 | 63 | Luci Stanescu | [[BR]]''originator'':[[BR]] |
434 | The party that initiated the stream proposal, can be either "local" or "remote". |
||
435 | 6 | Ruud Klaver | [[BR]]''code'':[[BR]] |
436 | 63 | Luci Stanescu | The code with which the proposal was rejected. |
437 | 1 | Adrian Georgescu | [[BR]]''reason'':[[BR]] |
438 | 63 | Luci Stanescu | The reason for rejecting the stream proposal. |
439 | [[BR]]''streams'':[[BR]] |
||
440 | The list of streams which were rejected. |
||
441 | '''SIPSessionGotAcceptProposal''':: |
||
442 | Will be sent when either the local or the remote party accepts a proposal to have stream( added to the session. |
||
443 | 24 | Ruud Klaver | [[BR]]''timestamp'':[[BR]] |
444 | 1 | Adrian Georgescu | A {{{datetime.datetime}}} object indicating when the notification was sent. |
445 | 63 | Luci Stanescu | [[BR]]''originator'':[[BR]] |
446 | The party that initiated the stream proposal, can be either "local" or "remote". |
||
447 | 1 | Adrian Georgescu | [[BR]]''streams'':[[BR]] |
448 | 63 | Luci Stanescu | The list of streams which were accepted. |
449 | '''SIPSessionHadProposalFailure''':: |
||
450 | Will be sent when a re-INVITE fails because of an internal reason (such as a stream not being able to start). |
||
451 | 24 | Ruud Klaver | [[BR]]''timestamp'':[[BR]] |
452 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
453 | 63 | Luci Stanescu | [[BR]]''failure_reason'':[[BR]] |
454 | The error which caused the proposal to fail. |
||
455 | [[BR]]''streams'':[[BR]] |
||
456 | THe streams which were part of this proposal. |
||
457 | '''SIPSessionDidRenegotiateStreams''':: |
||
458 | 24 | Ruud Klaver | Will be sent when a media stream is either activated or deactivated. |
459 | An application should listen to this notification in order to know when a media stream can be used. |
||
460 | 6 | Ruud Klaver | [[BR]]''timestamp'':[[BR]] |
461 | 26 | Luci Stanescu | A {{{datetime.datetime}}} object indicating when the notification was sent. |
462 | 63 | Luci Stanescu | [[BR]]''action'':[[BR]] |
463 | A string which is either {{{"add"}}} or {{{"remove"}}} which specifies what happened to the streams the notificaton referes to |
||
464 | 6 | Ruud Klaver | [[BR]]''streams'':[[BR]] |
465 | 63 | Luci Stanescu | A list with the streams which were added or removed. |
466 | '''SIPSessionDidProcessTransaction''':: |
||
467 | Will be sent whenever a SIP transaction is complete in order to provide low-level details of the progress of the INVITE dialog. |
||
468 | [[BR]]''timestamp'':[[BR]] |
||
469 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
470 | [[BR]]''originator'':[[BR]] |
||
471 | The initiator of the transaction, {{{"local"}}} or {{{"remote"}}}. |
||
472 | [[BR]]''method'':[[BR]] |
||
473 | The method of the request. |
||
474 | [[BR]]''code'':[[BR]] |
||
475 | The SIP status code of the response. |
||
476 | [[BR]]''reason'':[[BR]] |
||
477 | The SIP status reason of the response. |
||
478 | [[BR]]''ack_received'':[[BR]] |
||
479 | This attribute is only present for INVITE transactions and has one of the values {{{True}}}, {{{False}}} or {{{"unknown"}}}. The last value may occur then PJSIP does not let us know whether the ACK was received or not. |
||
480 | 1 | Adrian Georgescu | |
481 | As an example for how to use the {{{Session}}} object, the following provides a basic Python program that initiates an outgoing SIP session request: |
||
482 | |||
483 | {{{ |
||
484 | from threading import Event |
||
485 | |||
486 | 63 | Luci Stanescu | from application.notification, NotificationCenter |
487 | |||
488 | from sipsimple.core import SIPURI, ToHeader |
||
489 | |||
490 | 1 | Adrian Georgescu | from sipsimple.account import AccountManager |
491 | 63 | Luci Stanescu | from sipsimple.application import SIPApplication |
492 | 6 | Ruud Klaver | from sipsimple.session import Session |
493 | 63 | Luci Stanescu | from sipsimple.streams import AudioStream |
494 | from sipsimple.util import Route |
||
495 | 47 | Adrian Georgescu | |
496 | 50 | Adrian Georgescu | |
497 | 63 | Luci Stanescu | class SimpleCallApplication(SIPApplication): |
498 | def __init__(self, callee, route): |
||
499 | SIPApplication.__init__(self) |
||
500 | self.ended = Event() |
||
501 | self.callee = calee |
||
502 | self.route = route |
||
503 | self.session = None |
||
504 | notification_center = NotificationCenter() |
||
505 | notification_center.add_observer(self) |
||
506 | 30 | Adrian Georgescu | |
507 | 63 | Luci Stanescu | def _NH_SIPApplicationDidStart(self, notification): |
508 | account = AccountManager().default_account |
||
509 | self.session = Session(account) |
||
510 | self.session.connect(self.callee, self.route, AudioStream(account)) |
||
511 | 30 | Adrian Georgescu | |
512 | 63 | Luci Stanescu | def _NH_SIPSessionGotRingIndication(self, notification): |
513 | print 'Ringing!' |
||
514 | 1 | Adrian Georgescu | |
515 | 63 | Luci Stanescu | def _NH_SIPSessionDidStart(self, notification): |
516 | print 'Session started!' |
||
517 | |||
518 | def _NH_SIPSessionDidFail(self, notification): |
||
519 | print 'Failed to connect' |
||
520 | self.stop() |
||
521 | |||
522 | def _NH_SIPSessionDidEnd(self, notification): |
||
523 | print 'Session ended' |
||
524 | self.stop() |
||
525 | |||
526 | def _NH_SIPApplicationDidEnd(self, notification): |
||
527 | self.ended.set() |
||
528 | |||
529 | 35 | Luci Stanescu | # place an audio call from the specified account to the specified URI, through |
530 | # the specified SIP proxy |
||
531 | 63 | Luci Stanescu | application = SimpleCallApplication(ToHeader(SIPURI(user="bob", host="example.com")), Route("1.2.3.4")) |
532 | 37 | Luci Stanescu | # block waiting for user input |
533 | 39 | Luci Stanescu | print "Placing call, press enter to quit program" |
534 | raw_input() |
||
535 | 63 | Luci Stanescu | application.session.end() |
536 | # block until the SIPApplication has stopped |
||
537 | application.ended.wait() |
||
538 | 1 | Adrian Georgescu | }}} |
539 | 35 | Luci Stanescu | |
540 | == SessionManager == |
||
541 | |||
542 | Implemented in [browser:sipsimple/session.py] |
||
543 | |||
544 | The {{{sipsimple.session.SessionManager}}} class is a singleton, which acts as the central aggregation point for sessions within the middleware. |
||
545 | Although it is mainly used internally, the application can use it to query information about all active sessions. |
||
546 | 63 | Luci Stanescu | The SessionManager is implemented as a singleton, meaning that only one instance of this class exists within the middleware. The SessionManager is started by the SIPApplication and takes care of handling incoming sessions. |
547 | 39 | Luci Stanescu | |
548 | 36 | Luci Stanescu | === Attributes === |
549 | 50 | Adrian Georgescu | |
550 | 36 | Luci Stanescu | '''sessions''':: |
551 | A property providing a copy of the list of all active {{{Sesssion}}} objects within the application, meaning any {{{Session}}} object that exists globally within the application and is not in the {{{NULL}}} or {{{TERMINATED}}} state. |
||
552 | |||
553 | 1 | Adrian Georgescu | === Methods === |
554 | |||
555 | '''!__init!__'''(''self''):: |
||
556 | 63 | Luci Stanescu | Instantiate a new {{{SessionManager}}} object. |
557 | 1 | Adrian Georgescu | |
558 | 63 | Luci Stanescu | '''start'''(''self''):: |
559 | Start the {{{SessionManager}}} in order to be able to handle incoming sessions. |
||
560 | 1 | Adrian Georgescu | |
561 | 63 | Luci Stanescu | |
562 | 1 | Adrian Georgescu | == Account == |
563 | |||
564 | Implemented in [browser:sipsimple/account.py] |
||
565 | |||
566 | The {{{sipsimple.account.Account}}} objects represent the SIP accounts which are used by the middleware. It has a dual purpose: it acts as both a container for account-related settings and as a complex object which can be used to interact with various per-account functions, such as presence, registration etc. This page documents the latter case, while the former is explained in the [wiki:SipConfigurationAPI#Account Configuration API]. |
||
567 | |||
568 | There is exactly one instance of {{{Account}}} per SIP account used and it is uniquely identifiable by its SIP ID, in the form ''user@domain''. It is a singleton, in the sense that instantiating {{{Account}}} using an already used SIP ID will return the same object. However, this is not the recommended way of accessing accounts, as this can lead to creation of new ones; the recommended way is by using the [wiki:SipMiddlewareApi#AccountManager AccountManager]. The next sections will use a lowercase, monospaced {{{account}}} to represent an instance of {{{Account}}}. |
||
569 | |||
570 | === States === |
||
571 | |||
572 | The {{{Account}}} objects have a setting flag called {{{enabled}}} which, if set to {{{False}}} will deactivate it: none of the internal functions will work in this case; in addition, the application using the middleware should not do anything with a disabled account. After changing it's value, the {{{save()}}} method needs to be called, as the flag is a setting and will not be used until this method is called: |
||
573 | 36 | Luci Stanescu | {{{ |
574 | account.enabled = True |
||
575 | account.save() |
||
576 | 1 | Adrian Georgescu | }}} |
577 | |||
578 | The {{{Account}}} objects will activate automatically when they are loaded/created if the {{{enabled}}} flag is set to {{{True}}} and the {{{sipsimple.engine.Engine}}} is running; if it is not running, the accounts will activate after the engine starts. |
||
579 | |||
580 | In order to create a new account, just create a new instance of {{{Account}}} with an id which doesn't belong to any other account. |
||
581 | |||
582 | The other functions of {{{Account}}} which run automatically have other enabled flags as well. They will only be activated when both the global enabled flag is set and the function-specific one. These are: |
||
583 | |||
584 | '''Account.registration.enabled''':: |
||
585 | This flag controls the automatic registration of the account. The notifications '''SIPAccountRegistrationDidSucceed''', '''SIPAccountRegistrationDidFail''' and '''SIPAccountRegistrationDidEnd''' are used to inform the status of this registration. |
||
586 | '''Account.presence.enabled''':: |
||
587 | This flag controls the automatic subscription to buddies for the ''presence'' event and the publication of data in this event. (Not implemented yet) |
||
588 | '''Account.dialog_event.enabled''':: |
||
589 | This flag controls the automatic subscription to buddies for the ''dialog-info'' event and the publication of data in this event. (Not implemented yet) |
||
590 | '''Account.message_summary.enabled''':: |
||
591 | This flag controls the automatic subscription to the ''message-summary'' event in order to find out about voicemail messages. (Not implemented yet) |
||
592 | |||
593 | 36 | Luci Stanescu | The {{{save()}}} method needs to be called after changing these flags in order for them to take effect. The methods available on {{{Account}}} objects are inherited from [wiki:SipConfigurationAPI#SettingsObject SettingsObject]. |
594 | |||
595 | === Attributes === |
||
596 | |||
597 | 1 | Adrian Georgescu | The following attributes can be used on an Account object and need to be considered read-only. |
598 | |||
599 | '''id''':: |
||
600 | This attribute is of type {{{sipsimple.configuration.datatypes.SIPAddress}}} (a subclass of {{{str}}}) and contains the SIP id of the account. It can be used as a normal string in the form ''user@domain'', but it also allows access to the components via the attributes {{{username}}} and {{{domain}}}. |
||
601 | {{{ |
||
602 | account.id # 'alice@example.com' |
||
603 | 36 | Luci Stanescu | account.id.username # 'alice' |
604 | 1 | Adrian Georgescu | account.id.domain # 'example.com' |
605 | }}} |
||
606 | '''contact''':: |
||
607 | This attribute can be used to construct the Contact URI for SIP requests sent on behalf of this account. It's type is {{{sipsimple.account.ContactURI}}} which is a subclass of {{{sipsimple.configuration.datatypes.SIPAddress}}}. In addition to the attributes defined in {{{SIPAddress}}}, it can be indexed by a string representing a transport ({{{'udp'}}}, {{{'tcp'}}} or {{{'tls'}}}) which will return a {{{sipsimple.core.SIPURI}}} object with the appropriate port and transport parameter. The username part is a randomly generated 8 character string consisting of lowercase letters; the domain part is the IP address on which the {{{Engine}}} is listening (as specified by the SIPSimpleSettings.local_ip setting). |
||
608 | {{{ |
||
609 | account.contact # 'hnfkybrt@10.0.0.1' |
||
610 | account.contact.username # 'hnfkybrt' |
||
611 | account.contact.domain # '10.0.0.1' |
||
612 | account.contact['udp'] # <SIPURI "sip:hnfkybrt@10.0.0.1:53024"> |
||
613 | account.contact['tls'] # <SIPURI "sip:hnfkybrt@10.0.0.1:54478;transport=tls"> |
||
614 | }}} |
||
615 | 36 | Luci Stanescu | '''credentials''':: |
616 | 1 | Adrian Georgescu | This attribute is of type {{{sipsimple.core.Credentials}}} object which is built from the {{{id}}} attribute and {{{display_name}}} and {{{password}}} settings of the Account. Whenever one of these settings are changed, this attribute is updated. |
617 | {{{ |
||
618 | account.credentials # <Credentials for '"Alice" <sip:alice@example.com>'> |
||
619 | }}} |
||
620 | |||
621 | === Notifications === |
||
622 | |||
623 | '''CFGSettingsObjectDidChange''':: |
||
624 | This notification is sent when the {{{save()}}} method is called on the account after some of the settings were changed. As the notification belongs to the {{{SettingsObject}}} class, it is exaplained in detail in [wiki:SipConfigurationAPI#SettingsObjectNotifications SettingsObject Notifications]. |
||
625 | 36 | Luci Stanescu | '''SIPAccountDidActivate''':: |
626 | 1 | Adrian Georgescu | This notification is sent when the {{{Account}}} activates. This can happen when the {{{Account}}} is loaded if it's enabled flag is set and the Engine is running, and at any later time when the status of the Engine changes or the enabled flag is modified. The notification does not contain any data. |
627 | '''SIPAccountDidDeactivate''':: |
||
628 | This notification is sent when the {{{Account}}} deactivates. This can happend when the {{{Engine}}} is stopped or when the enabled flag of the account is set to {{{False}}}. The notification does not contain any data. |
||
629 | '''SIPAccountRegistrationDidSucceed''':: |
||
630 | This notification is sent when a REGISTER request sent for the account succeeds (it is also sent for each refresh of the registration). The data contained in this notification is: |
||
631 | [[BR]]''code'':[[BR]] |
||
632 | 36 | Luci Stanescu | The status code of the response for the REGISTER request. |
633 | [[BR]]''reason'':[[BR]] |
||
634 | The reason of the response for the REGISTER request. |
||
635 | [[BR]]''contact_uri'':[[BR]] |
||
636 | The Contact URI which was registered. |
||
637 | [[BR]]''contact_uri_list'':[[BR]] |
||
638 | A list containing all the contact URIs registered for this SIP account. |
||
639 | [[BR]]''expires'':[[BR]] |
||
640 | The amount in seconds in which this registration will expire. |
||
641 | [[BR]]''registration'':[[BR]] |
||
642 | 37 | Luci Stanescu | The {{{sipsimple.core.Registration}}} object used to register this account. |
643 | 50 | Adrian Georgescu | '''SIPAccountRegistrationDidFail''':: |
644 | 37 | Luci Stanescu | This notification is sent when a REGISTER request sent for the account fails. It can fail either because a negative response was returned or because PJSIP considered the request failed (e.g. on timeout). The data contained in this notification is: |
645 | [[BR]]''code'':[[BR]] |
||
646 | The status code of the response for the REGISTER request. This is only present if the notification is sent as a result of a response being received. |
||
647 | [[BR]]''reason'':[[BR]] |
||
648 | The reason for the failure of the REGISTER request. |
||
649 | [[BR]]''registration'':[[BR]] |
||
650 | The {{{sipsimple.core.Registration}}} object which failed. |
||
651 | [[BR]]''next_route'':[[BR]] |
||
652 | A {{{sipsimple.core.Route}}} object which will be tried next for registering the account, or {{{None}}} if a new DNS lookup needs to be performed. |
||
653 | [[BR]]''delay'':[[BR]] |
||
654 | The amount in seconds as a {{{float}}} after which the next route will be tried for registering the account. |
||
655 | '''SIPAccountRegistrationDidEnd''':: |
||
656 | This notification is sent when a registration is ended (the account is unregistered). The data contained in this notification is: |
||
657 | [[BR]]''code'':[[BR]] |
||
658 | The status code of the response for the REGISTER with {{{Expires: 0}}} request. This is only present if a response was received. |
||
659 | [[BR]]''reason'':[[BR]] |
||
660 | The reason returned in the response for the Register with {{{Expires: 0}}} request. This is only present if a response was received |
||
661 | [[BR]]''registration'':[[BR]] |
||
662 | The {{{sipsimple.core.Registration}}} object which ended. |
||
663 | |||
664 | == BonjourAccount == |
||
665 | |||
666 | Implemented in [browser:sipsimple/account.py] |
||
667 | |||
668 | The {{{sipsimple.account.BonjourAccount}}} represents the SIP account used for P2P mode; it does not interact with any server. The class is a singleton, as there can only be one such account on a system. Similar to the {{{Account}}}, it is used both as a complex object, which implements the functions for bonjour mode, as well as a container for the related settings. |
||
669 | |||
670 | 1 | Adrian Georgescu | === States === |
671 | 37 | Luci Stanescu | |
672 | The {{{BonjourAccount}}} has an {{{enabled}}} flags which controls whether this account will be used or not. If it is set to {{{False}}}, none of the internal functions will be activated and, in addition, the account should not be used by the application. The bonjour account can only activated if the Engine is running; once it is started, if the enabled flag is set, the account will activate. When the {{{BonjourAccount}}} is activated, it will broadcast the contact address on the LAN. (Not implemented yet) |
||
673 | |||
674 | === Attributes === |
||
675 | 50 | Adrian Georgescu | |
676 | 48 | Adrian Georgescu | The following attributes can be used on an BonjourAccount object and need to be considered read-only. |
677 | 37 | Luci Stanescu | |
678 | '''id''':: |
||
679 | 50 | Adrian Georgescu | This attribute is of type {{{sipsimple.configuration.datatypes.SIPAddress}}} (a subclass of {{{str}}}) and contains the SIP id of the account, which is {{{'bonjour@local'}}}. It can be used as a normal string, but it also allows access to the components via the attributes {{{username}}} and {{{domain}}}. |
680 | 38 | Luci Stanescu | {{{ |
681 | bonjour_account.id # 'bonjour@local' |
||
682 | bonjour_account.id.username # 'bonjour' |
||
683 | 50 | Adrian Georgescu | bonjour_account.id.domain # 'local' |
684 | 38 | Luci Stanescu | }}} |
685 | 1 | Adrian Georgescu | '''contact''':: |
686 | 38 | Luci Stanescu | This attribute can be used to construct the Contact URI for SIP requests sent on behalf of this account. It's type is {{{sipsimple.account.ContactURI}}} which is a subclass of {{{sipsimple.configuration.datatypes.SIPAddress}}}. In addition to the attributes defined in {{{SIPAddress}}}, it can be indexed by a string representing a transport ({{{'udp'}}}, {{{'tcp'}}} or {{{'tls'}}}) which will return a {{{sipsimple.core.SIPURI}}} object with the appropriate port and transport parameter. The username part is a randomly generated 8 character string consisting of lowercase letters; the domain part is the IP address on which the {{{Engine}}} is listening (as specified by the SIPSimpleSettings.local_ip setting). |
687 | {{{ |
||
688 | 1 | Adrian Georgescu | account.contact # 'lxzvgack@10.0.0.1' |
689 | account.contact.username # 'lxzvgack' |
||
690 | account.contact.domain # '10.0.0.1' |
||
691 | account.contact['udp'] # <SIPURI "sip:lxzvgack@10.0.0.1:53024"> |
||
692 | 38 | Luci Stanescu | account.contact['tls'] # <SIPURI "sip:lxzvgack@10.0.0.1:54478;transport=tls"> |
693 | }}} |
||
694 | '''credentials''':: |
||
695 | This attribute is of type {{{sipsimple.core.Credentials}}} object which is built from the {{{contact}}} attribute and {{{display_name}}} setting of the BonjourAccount; the password is set to the empty string. Whenever the display_name setting is changed, this attribute is updated. |
||
696 | 1 | Adrian Georgescu | {{{ |
697 | account.credentials # <Credentials for '"Alice" <sip:lxzvgack@10.0.0.1>'> |
||
698 | }}} |
||
699 | 38 | Luci Stanescu | |
700 | === Notifications === |
||
701 | 1 | Adrian Georgescu | |
702 | 38 | Luci Stanescu | '''CFGSettingsObjectDidChange''':: |
703 | This notification is sent when the {{{save()}}} method is called on the account after some of the settings were changed. As the notification belongs to the {{{SettingsObject}}} class, it is exaplained in detail in [wiki:SipConfigurationAPI#SettingsObjectNotifications SettingsObject Notifications]. |
||
704 | '''SIPAccountDidActivate''':: |
||
705 | This notification is sent when the {{{BonjourAccount}}} activates. This can happen when the {{{BonjourAccount}}} is loaded if it's enabled flag is set and the Engine is running, and at any later time when the status of the Engine changes or the enabled flag is modified. The notification does not contain any data. |
||
706 | '''SIPAccountDidDeactivate''':: |
||
707 | This notification is sent when the {{{BonjourAccount}}} deactivates. This can happend when the {{{Engine}}} is stopped or when the enabled flag of the account is set to {{{False}}}. The notification does not contain any data. |
||
708 | |||
709 | |||
710 | 1 | Adrian Georgescu | == AccountManager == |
711 | 38 | Luci Stanescu | |
712 | Implemented in [browser:sipsimple/account.py] |
||
713 | |||
714 | 1 | Adrian Georgescu | The {{{sipsimple.account.AccountManager}}} is the entity responsible for loading and keeping track of the existing accounts. It is a singleton and can be instantiated anywhere, obtaining the same instance. It cannot be used until its {{{start}}} method has been called. |
715 | |||
716 | 39 | Luci Stanescu | === Methods === |
717 | 50 | Adrian Georgescu | |
718 | 39 | Luci Stanescu | '''!__init!__'''(''self''):: |
719 | The {{{__init__}}} method allows the {{{AccountManager}}} to be instantiated without passing any parameters. A reference to the {{{AccountManager}}} can be obtained anywhere before it is started. |
||
720 | '''start'''(''self''):: |
||
721 | This method will load all the existing accounts from the configuration. If the Engine is running, the accounts will also activate. This method can only be called after the [wiki:SipConfigurationAPI#ConfigurationManager ConfigurationManager] has been started. A '''SIPAccountManagerDidAddAccount''' will be sent for each account loaded. |
||
722 | '''stop'''(''self''):: |
||
723 | Calling this method will deactivate all accounts managed by the {{{AccountManager}}}. |
||
724 | '''has_account'''(''self'', '''id'''):: |
||
725 | This method returns {{{True}}} if an account which has the specifed SIP ID (must be a string) exists and {{{False}}} otherwise. |
||
726 | '''get_account'''(''self'', '''id'''):: |
||
727 | 50 | Adrian Georgescu | Returns the account (either an {{{Account}}} instance or the {{{BonjourAccount}}} instance) with the specified SIP ID. Will raise a {{{KeyError}}} if such an account does not exist. |
728 | 48 | Adrian Georgescu | '''get_accounts'''(''self''):: |
729 | 39 | Luci Stanescu | Returns a list containing all the managed accounts. |
730 | '''iter_accounts'''(''self''):: |
||
731 | Returns an iterator through all the managed accounts. |
||
732 | '''find_account'''(''self'', '''contact_uri'''):: |
||
733 | 50 | Adrian Georgescu | Returns an account with matches the specified {{{contact_uri}}} which must be a {{{sipsimple.core.SIPURI}}} instance. Only the accounts with the enabled flag set will be considered. Returns None if such an account does not exist. |
734 | 39 | Luci Stanescu | |
735 | === Notifications === |
||
736 | |||
737 | '''SIPAccountManagerDidAddAccount''':: |
||
738 | This notification is sent when a new account becomes available to the {{{AccountManager}}}. The notification is also sent when the accounts are loaded from the configuration. The data contains a single attribute, {{{account}}} which is the account object which was added. |
||
739 | '''SIPAccountManagerDidRemoveAccount''':: |
||
740 | This notification is sent when an account is deleted using the {{{delete}}} method. The data contains a single attribute, {{{account}}} which is the account object which was deleted. |
||
741 | '''SIPAccountManagerDidChangeDefaultAccount''':: |
||
742 | This notification is sent when the default account changes. The notification contains two attributes: |
||
743 | [[BR]]''old_account'':[[BR]] |
||
744 | This is the account object which used to be the default account. |
||
745 | [[BR]]''account'':[[BR]] |
||
746 | This is the account object which is the new default account. |
||
747 | |||
748 | == IMediaStream == |
||
749 | |||
750 | Implemented in [browser:sipsimple/streams/__init__.py] |
||
751 | |||
752 | This module automatically registers media streams to a stream registry |
||
753 | allowing for a plug and play mechanism of various types of media negoticated |
||
754 | in a SIP session that can be added to this library by using a generic API. |
||
755 | |||
756 | For actual usage see rtp.py and msrp.py that implement media streams based |
||
757 | on their respective RTP and MSRP protocols. |
||
758 | 55 | Adrian Georgescu | |
759 | |||
760 | === Atributes === |
||
761 | |||
762 | '''type''' (class attribute):: |
||
763 | A string identifying the stream type (ex: audio, video, ...) |
||
764 | '''priority''':: |
||
765 | An integer value indicating the stream priority relative to the other streams types (higher numbers have higher priority) |
||
766 | '''hold_supported''':: |
||
767 | True if the stream supports hold |
||
768 | '''on_hold_by_local''':: |
||
769 | True if the stream is on hold by the local party |
||
770 | '''on_hold_by_remote''':: |
||
771 | True if the stream is on hold by the remote |
||
772 | '''on_hold''':: |
||
773 | True if either on_hold_by_local or on_hold_by_remote is true |
||
774 | |||
775 | === Methods === |
||
776 | |||
777 | '''!__init!__'''(''self'', ''account''):: |
||
778 | Initializes the generic stream instance. |
||
779 | '''new_from_sdp'''(''cls'', ''account'', ''remote_sdp'', ''stream_index''):: |
||
780 | '''get_local_media'''(''self'', ''for_offer''):: |
||
781 | '''initialize'''(''self'', ''session'', ''direction''):: |
||
782 | Initializes the stream |
||
783 | '''start'''(''self'', ''local_sdp'', ''remote_sdp'', ''stream_index''):: |
||
784 | Completes the stream related connection. [[BR]] |
||
785 | When done, must fire StreamChatDidStart notification. |
||
786 | '''end'''(''self''):: |
||
787 | Ends the stream. When done, must fire StreamChatDidEnd notification. |
||
788 | '''validate_update'''(''self'', ''remote_sdp'', ''stream_index''):: |
||
789 | '''update'''(''self'', ''local_sdp'', ''remote_sdp'', ''stream_index''):: |
||
790 | '''deactivate'''(''self''):: |
||
791 | '''hold'''(''self''):: |
||
792 | Puts the stream on hold if supported by the stream. Typically used by audio and video streams. |
||
793 | '''unhold'''(''self''):: |
||
794 | Takes the stream off hold. |
||
795 | |||
796 | === Notifications === |
||
797 | |||
798 | These notifications must be generated by all streams in order for the upper layer (SIP session) to perform the right decissions. |
||
799 | 1 | Adrian Georgescu | |
800 | 55 | Adrian Georgescu | '''MediaStreamDidInitialize''':: |
801 | 58 | Adrian Georgescu | Sent when the {{{Stream}}} instance is initialized |
802 | 55 | Adrian Georgescu | '''MediaStreamDidStart''':: |
803 | Sent when the {{{Stream}}} instance has started. |
||
804 | '''MediaStreamDidFail''':: |
||
805 | Sent when the {{{Stream}}} instance has failed. |
||
806 | '''MediaStreamWillEnd''':: |
||
807 | Sent before the {{{Stream}}} instance will end. |
||
808 | '''MediaStreamDidEnd''':: |
||
809 | Sent when the {{{Stream}}} instance did ended. |
||
810 | |||
811 | == MediaStreamRegistry == |
||
812 | |||
813 | The MediaStream registry is used to register streams that can be automatically dealt with by the SIP session layer. |
||
814 | |||
815 | There are several pre-built streams based on the '''iMediaStream''' API: |
||
816 | |||
817 | * {{{sipsimple.streams.msrp.MSRPStreamBase}}} - MSRP base stream, all MSRP derived streams inherit this |
||
818 | * {{{sipsimple.streams.msrp.ChatStream}}} - Chat stream based on MSRP |
||
819 | * {{{sipsimple.streams.msrp.FileSelector}}} - Helper for selecting a file for FileTransferStream |
||
820 | * {{{sipsimple.streams.msrp.FileTransferStream}}} - File Transfer stream based on MSRP |
||
821 | * {{{sipsimple.streams.msrp.VNCConnectionError}}} - Helper class for DesktopSharingStream |
||
822 | * {{{sipsimple.streams.msrp.DesktopSharingHandlerBase}}} - Helper class for DesktopSharingStream |
||
823 | * {{{sipsimple.streams.msrp.InternalVNCViewerHandler}}} - Helper class for DesktopSharingStream |
||
824 | * {{{sipsimple.streams.msrp.InternalVNCViewerHandler}}} - Helper class for DesktopSharingStream |
||
825 | * {{{sipsimple.streams.msrp.ExternalVNCViewerHandler}}} - Helper class for DesktopSharingStream |
||
826 | * {{{sipsimple.streams.msrp.ExternalVNCServerHandler}}} - Helper class for DesktopSharingStream |
||
827 | * {{{sipsimple.streams.msrp.DesktopSharingStream}}} - Desktop Sharing stream based on VNC over MSRP |
||
828 | * {{{sipsimple.streams.msrp.NotificationProxyLogger}}} - Helper class for handling MSRP library logs |
||
829 | |||
830 | These classes are used internally by [wiki:SipMiddlewareApi#Session Session], which provides the necessary methods to access their features. The notifications posted by these classes are also handled internally by [wiki:SipMiddlewareApi#Session Session]. The notifications that are relevant to the user are then reposted by the Session instance. Refer to [wiki:SipMiddlewareApi#Session Session documentation] for details on the Session API. |
||
831 | |||
832 | == AudioStream == |
||
833 | |||
834 | Implemented in [browser:sipsimple/streams/rtp.py] |
||
835 | |||
836 | === SDP Example === |
||
837 | |||
838 | {{{ |
||
839 | Content-Type: application/sdp |
||
840 | Content-Length: 1093 |
||
841 | |||
842 | v=0 |
||
843 | o=- 3467525278 3467525278 IN IP4 192.168.1.6 |
||
844 | s=blink-0.10.7-beta |
||
845 | c=IN IP4 80.101.96.20 |
||
846 | t=0 0 |
||
847 | 57 | Adrian Georgescu | m=audio 55328 RTP/AVP 104 103 102 3 9 0 8 101 |
848 | a=rtcp:55329 IN IP4 80.101.96.20 |
||
849 | a=rtpmap:104 speex/32000 |
||
850 | a=rtpmap:103 speex/16000 |
||
851 | a=rtpmap:102 speex/8000 |
||
852 | a=rtpmap:3 GSM/8000 |
||
853 | a=rtpmap:9 G722/8000 |
||
854 | a=rtpmap:0 PCMU/8000 |
||
855 | a=rtpmap:8 PCMA/8000 |
||
856 | a=rtpmap:101 telephone-event/8000 |
||
857 | a=fmtp:101 0-15 |
||
858 | a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:esI6DbLY1+Aceu0JNswN9Z10DcFx5cZwqJcu91jb |
||
859 | a=crypto:2 AES_CM_128_HMAC_SHA1_32 inline:SHuEMm1BYJqOF4udKl73EaCwnsI57pO86bYKsg70 |
||
860 | a=ice-ufrag:2701ed80 |
||
861 | a=ice-pwd:6f8f8281 |
||
862 | a=candidate:S 1 UDP 31 80.101.96.20 55328 typ srflx raddr 192.168.1.6 rport 55328 |
||
863 | a=candidate:H 1 UDP 23 192.168.1.6 55328 typ host |
||
864 | a=candidate:H 1 UDP 23 10.211.55.2 55328 typ host |
||
865 | a=candidate:H 1 UDP 23 10.37.129.2 55328 typ host |
||
866 | a=candidate:S 2 UDP 30 80.101.96.20 55329 typ srflx raddr 192.168.1.6 rport 55329 |
||
867 | a=candidate:H 2 UDP 22 192.168.1.6 55329 typ host |
||
868 | a=candidate:H 2 UDP 22 10.211.55.2 55329 typ host |
||
869 | a=candidate:H 2 UDP 22 10.37.129.2 55329 typ host |
||
870 | a=sendrecv |
||
871 | }}} |
||
872 | |||
873 | === Atributes === |
||
874 | |||
875 | 63 | Luci Stanescu | '''sample_rate''':: |
876 | If the audio stream was started, this attribute contains the sample rate of the audio negotiated. |
||
877 | '''codec''':: |
||
878 | If the audio stream was started, this attribute contains the name of the audio codec that was negotiated. |
||
879 | '''srtp_active''':: |
||
880 | If the audio stream was started, this boolean attribute indicates if SRTP is currently being used on the stream. |
||
881 | '''local_rtp_address''':: |
||
882 | If an audio stream is present within the session, this attribute contains the local IP address used for the audio stream. |
||
883 | '''local_rtp_port''':: |
||
884 | If an audio stream is present within the session, this attribute contains the local UDP port used for the audio stream. |
||
885 | '''remote_rtp_address_sdp''':: |
||
886 | If the audio stream was started, this attribute contains the IP address that the remote party gave to send audio to. |
||
887 | '''remote_rtp_port_sdp''':: |
||
888 | If the audio stream was started, this attribute contains the UDP port that the remote party gave to send audio to. |
||
889 | '''remote_rtp_address_received''':: |
||
890 | If the audio stream was started, this attribute contains the remote IP address from which the audio stream is being received. |
||
891 | '''remote_rtp_port_received''':: |
||
892 | If the audio stream was started, this attribute contains the remote UDP port from which the audio stream is being received. |
||
893 | '''recording_file_name''':: |
||
894 | If the audio stream is currently being recorded to disk, this property contains the name of the {{{.wav}}} file being recorded to. |
||
895 | 58 | Adrian Georgescu | |
896 | === Methods === |
||
897 | |||
898 | 63 | Luci Stanescu | '''start_recording'''(''self'', '''filename'''={{{None}}}):: |
899 | If an audio stream is present within this session, calling this method will record the audio to a {{{.wav}}} file. |
||
900 | Note that when the session is on hold, nothing will be recorded to the file. |
||
901 | Right before starting the recording a {{{SIPSessionWillStartRecordingAudio}}} notification will be emitted, followed by a {{{SIPSessionDidStartRecordingAudio}}}. |
||
902 | This method may only be called while in the {{{ESTABLISHED}}} state. |
||
903 | [[BR]]''file_name'':[[BR]] |
||
904 | The name of the {{{.wav}}} file to record to. |
||
905 | If this is set to {{{None}}}, a default file name including the session participants and the timestamp will be generated. |
||
906 | '''stop_recording'''(''self''):: |
||
907 | This will stop a previously started recording. |
||
908 | Before stopping, a {{{SIPSessionWillStopRecordingAudio}}} notification will be sent, followed by a {{{SIPSessionDidStopRecordingAudio}}}. |
||
909 | This method may only be called while in the {{{ESTABLISHED}}} state. |
||
910 | '''send_dtmf'''(''self'', '''digit'''):: |
||
911 | If this session currently has an active audio stream, send a DTMF digit to the remote party over it. |
||
912 | This method may only be called while in the {{{ESTABLISHED}}} state and if the session has an active audio stream. |
||
913 | [[BR]]''digit'':[[BR]] |
||
914 | This should a string of length 1, containing a valid DTMF digit value. |
||
915 | 55 | Adrian Georgescu | |
916 | === Notifications === |
||
917 | |||
918 | '''AudioStreamDidChangeHoldState''':: |
||
919 | 63 | Luci Stanescu | '''AudioStreamWillStartRecordingAudio'':: |
920 | Will be sent when the application requested that the audio stream active within the session be record to a {{{.wav}}} file, just before recording starts. |
||
921 | [[BR]]''timestamp'':[[BR]] |
||
922 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
923 | [[BR]]''file_name'':[[BR]] |
||
924 | The name of the recording {{{.wav}}} file, including full path. |
||
925 | 55 | Adrian Georgescu | '''AudioStreamDidStartRecordingAudio''':: |
926 | 63 | Luci Stanescu | Will be sent when the application requested that the audio stream active within the session be record to a {{{.wav}}} file, just after recording starts. |
927 | [[BR]]''timestamp'':[[BR]] |
||
928 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
929 | [[BR]]''file_name'':[[BR]] |
||
930 | The name of the recording {{{.wav}}} file, including full path. |
||
931 | '''AudioStreamWillStopRecordingAudio''':: |
||
932 | Will be sent when the application requested ending the recording to a {{{.wav}}} file, just before recording stops. |
||
933 | [[BR]]''timestamp'':[[BR]] |
||
934 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
935 | [[BR]]''file_name'':[[BR]] |
||
936 | The name of the recording {{{.wav}}} file, including full path. |
||
937 | 57 | Adrian Georgescu | '''AudioStreamDidStopRecordingAudio''':: |
938 | 63 | Luci Stanescu | Will be sent when the application requested ending the recording to a {{{.wav}}} file, just before recording stops. |
939 | [[BR]]''timestamp'':[[BR]] |
||
940 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
941 | [[BR]]''file_name'':[[BR]] |
||
942 | The name of the recording {{{.wav}}} file, including full path. |
||
943 | '''SIPSessionGotNoAudio''':: |
||
944 | This notification will be sent if 5 seconds after the audio stream starts, no audio was received from the remote party. |
||
945 | [[BR]]''timestamp'':[[BR]] |
||
946 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
947 | 57 | Adrian Georgescu | '''AudioStreamGotDTMF''':: |
948 | 63 | Luci Stanescu | Will be send if there is a DMTF digit received from the remote party on the audio stream. |
949 | [[BR]]''timestamp'':[[BR]] |
||
950 | A {{{datetime.datetime}}} object indicating when the notification was sent. |
||
951 | [[BR]]''digit'':[[BR]] |
||
952 | The DTMF digit that was received, in the form of a string of length 1. |
||
953 | 57 | Adrian Georgescu | |
954 | 55 | Adrian Georgescu | == MSRPStreamBase == |
955 | |||
956 | Implemented in [browser:sipsimple/streams/msrp.py] |
||
957 | |||
958 | === Atributes === |
||
959 | |||
960 | '''media_type''':: |
||
961 | '''accept_types''':: |
||
962 | '''accept_wrapped_types''':: |
||
963 | '''use_msrp_session''':: |
||
964 | |||
965 | === Notifications === |
||
966 | |||
967 | '''MSRPLibraryLog''':: |
||
968 | '''MSRPTransportTrace''':: |
||
969 | |||
970 | == ChatStream == |
||
971 | |||
972 | Implemented in [browser:sipsimple/streams/msrp.py] |
||
973 | |||
974 | {{{sipsimple.streams.msrp.ChatStream}}} implements Instant Messaging (IM) over MSRP for the [wiki:SipMiddlewareApi middleware]. This class performs the following functions: |
||
975 | |||
976 | * automatically wraps outgoing messages with Message/CPIM if that's necessary according to accept-types |
||
977 | * unwraps incoming Message/CPIM messages; for each incoming message, {{{ChatStreamGotMessage}}} is posted |
||
978 | * plays notification sounds on received/sent message |
||
979 | * reacts to and composes iscomposing payloads |
||
980 | |||
981 | === SDP Example === |
||
982 | |||
983 | {{{ |
||
984 | Content-Type: application/sdp |
||
985 | Content-Length: 283 |
||
986 | |||
987 | v=0 |
||
988 | o=- 3467525214 3467525214 IN IP4 192.168.1.6 |
||
989 | s=blink-0.10.7-beta |
||
990 | c=IN IP4 192.168.1.6 |
||
991 | t=0 0 |
||
992 | m=message 2855 TCP/TLS/MSRP * |
||
993 | a=path:msrps://192.168.1.6:2855/ca7940f12ddef14c3c32;tcp |
||
994 | a=accept-types:message/cpim text/* application/im-iscomposing+xml |
||
995 | a=accept-wrapped-types:* |
||
996 | }}} |
||
997 | |||
998 | === Methods === |
||
999 | |||
1000 | '''!__init!__'''(''self'', ''account'', ''direction''):: |
||
1001 | Initializes the ChatStream instance. |
||
1002 | |||
1003 | '''initialize'''(''self''):: |
||
1004 | Initializes the MSRP connection; connects to the relay if necessary. When done, fires ChatStreamDidInitialize (with 'sdpmedia' attribute, containing the appropriate 'SDPMedia' instance) |
||
1005 | |||
1006 | '''start'''(''self'', ''remote_media''):: |
||
1007 | Completes the MSRP connection establishment; this includes binding the MSRP session. [[BR]] |
||
1008 | When done, fires MSRPChatDidStart notification. At this point each incoming message is posted as a {{{ChatStreamGotMessage}}} notification |
||
1009 | |||
1010 | '''end'''(''self''):: |
||
1011 | Closes the MSRP connection or cleans up after initialize(), whatever is necessary. [[BR]] |
||
1012 | Before doing anything posts {{{ChatStreamWillEnd}}} notification. |
||
1013 | When done, posts {{{ChatStreamDidEnd}}} notification. If there was an error, posts {{{ChatStreamDidFail}}} notification. |
||
1014 | {{{ChatStreamDidEnd}}} notification will be posted anyway. |
||
1015 | |||
1016 | '''send_message'''(''self'', ''content'', ''content_type''={{{'text/plain'}}}, ''to_uri''={{{None}}}, ''dt''={{{None}}}):: |
||
1017 | Sends IM message. Prefer Message/CPIM wrapper if it is supported. If called before the connection was established, the messages will be |
||
1018 | queued until ChatStreamDidStart notification. |
||
1019 | Returns the generated MSRP chunk (MSRPData instance); to get Message-ID use its 'message_id' attribute. |
||
1020 | 63 | Luci Stanescu | [[BR]]''content'':[[BR]] |
1021 | 55 | Adrian Georgescu | content of the message |
1022 | |||
1023 | 63 | Luci Stanescu | ''content_type'' str:[[BR]] |
1024 | Content-Type of wrapped message if Message/CPIM is used (Content-Type of MSRP message is always Message/CPIM in that case); |
||
1025 | otherwise, Content-Type of MSRP message. |
||
1026 | |||
1027 | 55 | Adrian Georgescu | ''to_uri'' SIPURI:[[BR]] |
1028 | "To" header of CPIM wrapper; use to override the default supplied to {{{__init__}}}. |
||
1029 | May only differ from the one supplied in __init__ if the remote party supports private messages. If it does not, {{{MSRPChatError}}} will be raised; |
||
1030 | |||
1031 | 63 | Luci Stanescu | [[BR]]''dt'':[[BR]] |
1032 | A {{{datetime.datetime}}} object representing the timestamp to put on the CPIM wrapper of the message. |
||
1033 | When set to {{{None}}}, this defaults to now. |
||
1034 | 55 | Adrian Georgescu | |
1035 | These MSRP headers are used to enable end-to-end success reports and to disable hop-to-hop successful responses: |
||
1036 | {{{ |
||
1037 | Failure-Report: partial |
||
1038 | Success-Report: yes |
||
1039 | }}} |
||
1040 | |||
1041 | '''send_composing_indication'''(''self'', ''state'', ''refresh'', ''last_active=None'', ''remote_identity=None''):: |
||
1042 | 57 | Adrian Georgescu | Send is composing notification. |
1043 | |||
1044 | === Notifications === |
||
1045 | |||
1046 | To communicate with the middleware, MSRPChat class uses the notification system provided by the [http://pypi.python.org/pypi/python-application python-application] package. |
||
1047 | |||
1048 | '''ChatStreamGotMessage''':: |
||
1049 | Sent whenever a new incoming message is received, |
||
1050 | [[BR]]''content'':[[BR]] |
||
1051 | The string that the remote user has typed. |
||
1052 | [[BR]]''content_type'':[[BR]] |
||
1053 | Content-Type of the user message. |
||
1054 | [[BR]]''cpim_headers'':[[BR]] |
||
1055 | A dictionary of CPIM headers. (Empty dictionary if no CPIM wrapper was used). |
||
1056 | [[BR]]''message'':[[BR]] |
||
1057 | A {{{msrplib.protocol.MSRPData}}} instance providing all the MSRP information about the chunk. |
||
1058 | '''ChatStreamDidDeliverMessage''':: |
||
1059 | Sent when a successful report is received. |
||
1060 | [[BR]]''message_id'':[[BR]] |
||
1061 | 55 | Adrian Georgescu | Text identifier of the message. |
1062 | [[BR]]''code'':[[BR]] |
||
1063 | Integer result code. |
||
1064 | [[BR]]''reason'':[[BR]] |
||
1065 | Text comment. |
||
1066 | [[BR]]''message'':[[BR]] |
||
1067 | A {{{msrplib.protocol.MSRPData}}} instance providing all the MSRP information about the report. |
||
1068 | '''ChatStreamDidNotDeliverMessage''':: |
||
1069 | Sent when a failure report of failure transaction response is received. |
||
1070 | [[BR]]''message_id'':[[BR]] |
||
1071 | Text identifier of the message. |
||
1072 | 56 | Adrian Georgescu | [[BR]]''code'':[[BR]] |
1073 | Integer result code. |
||
1074 | 1 | Adrian Georgescu | [[BR]]''reason'':[[BR]] |
1075 | 57 | Adrian Georgescu | Text comment. |
1076 | 56 | Adrian Georgescu | [[BR]]''message'':[[BR]] |
1077 | A {{{msrplib.protocol.MSRPData}}} instance providing all the MSRP information about the report. |
||
1078 | '''ChatStreamDidSendMessage''':: |
||
1079 | Sent when an outgoing message has been sent. |
||
1080 | '''ChatStreamGotComposingIndication''':: |
||
1081 | Sent when a iscomposing payload is received. |
||
1082 | |||
1083 | |||
1084 | == FileTransferStream == |
||
1085 | 55 | Adrian Georgescu | |
1086 | Implemented in [browser:sipsimple/streams/msrp.py] |
||
1087 | |||
1088 | === SDP Example === |
||
1089 | |||
1090 | {{{ |
||
1091 | 61 | Luci Stanescu | Content-Type: application/sdp |
1092 | Content-Length: 383 |
||
1093 | |||
1094 | v=0 |
||
1095 | o=- 3467525166 3467525166 IN IP4 192.168.1.6 |
||
1096 | s=blink-0.10.7-beta |
||
1097 | c=IN IP4 192.168.1.6 |
||
1098 | t=0 0 |
||
1099 | m=message 2855 TCP/TLS/MSRP * |
||
1100 | a=path:msrps://192.168.1.6:2855/e593357dc9abe90754bd;tcp |
||
1101 | a=sendonly |
||
1102 | a=accept-types:* |
||
1103 | a=accept-wrapped-types:* |
||
1104 | a=file-selector:name:"reblink.pdf" type:com.adobe.pdf size:268759 hash:sha1:60:A1:BE:8D:71:DB:E3:8E:84:C9:2C:62:9E:F2:99:78:9D:68:79:F6 |
||
1105 | }}} |
||
1106 | |||
1107 | === Methods === |
||
1108 | === Notifications === |
||
1109 | |||
1110 | '''FileTransferStreamDidDeliverChunk''':: |
||
1111 | '''FileTransferStreamDidFinish''':: |
||
1112 | '''FileTransferStreamDidNotDeliverChunk''':: |
||
1113 | 1 | Adrian Georgescu | '''FileTransferStreamGotChunk''':: |
1114 | |||
1115 | == DesktopSharingStream == |
||
1116 | |||
1117 | Implemented in [browser:sipsimple/streams/msrp.py] |
||
1118 | |||
1119 | There is no standard defining this usage but is fairly easy to implement in clients that already support MSRP. To traverse a NAT-ed router, a [http://msrprelay.org MSRP relay] configured for the called party domain is needed. Below is an example of the Session Description Protocol used for establishing a Desktop sharing session. |
||
1120 | |||
1121 | === SDP Example === |
||
1122 | |||
1123 | {{{ |
||
1124 | m=application 2855 TCP/TLS/MSRP * |
||
1125 | a=path:msrps://10.0.1.19:2855/b599b22d1b1d6a3324c8;tcp |
||
1126 | a=accept-types:application/x-rfb |
||
1127 | a=setup:active |
||
1128 | }}} |
||
1129 | |||
1130 | |||
1131 | === Methods === |
||
1132 | |||
1133 | === Notifications === |
||
1134 | |||
1135 | '''DesktopSharingHandlerDidFail''':: |
||
1136 | '''DesktopSharingStreamGotData''':: |
||
1137 | |||
1138 | |||
1139 | === Route === |
||
1140 | |||
1141 | This class provides a means for the application using the SIP core to set the destination address, port and transport for a particular request, i.e. the outbound proxy. |
||
1142 | As it is the application's responsibility to look this up and pass it as an argument for every SIP primitive class it creates. |
||
1143 | The contents of the {{{Route}}} object will be placed in the {{{Route}}} header of the request. |
||
1144 | As with the {{{SIPURI}}} object, the attributes of this object are the same as the arguments to the {{{__init__}}} method. |
||
1145 | |||
1146 | ==== methods ==== |
||
1147 | |||
1148 | '''!__init!__'''(''self'', '''address''', '''port'''=5060, '''transport'''={{{None}}}):: |
||
1149 | Creates the Route object with the specified parameters as attributes. |
||
1150 | Each of these attributes can be accessed on the object once instanced. |
||
1151 | [[BR]]''address'':[[BR]] |
||
1152 | The IPv4 address that the request in question should be sent to as a string. |
||
1153 | [[BR]]''port'':[[BR]] |
||
1154 | The port to send the requests to, represented as an int. |
||
1155 | [[BR]]''transport'':[[BR]] |
||
1156 | The transport to use, this can be a string of either "udp", "tcp" or "tls" (case insensitive), depending on what transports are enabled on the {{{PJSIPUA}}} object. |
||
1157 | '''copy'''(''self''):: |
||
1158 | Returns a copy of the {{{Route}}} object. |