ODF

Version 8 (Adrian Georgescu, 11/04/2014 01:16 pm)

1 1 Adrian Georgescu
h1. ODF integration
2 1 Adrian Georgescu
3 5 Adrian Georgescu
This documents layout the changes required to support a new type of stream for collaborative editing.
4 1 Adrian Georgescu
5 6 Adrian Georgescu
h2. SDK changes
6 1 Adrian Georgescu
7 6 Adrian Georgescu
h3. Signaling
8 6 Adrian Georgescu
9 1 Adrian Georgescu
There is no need to alter anything related to signalling.
10 1 Adrian Georgescu
11 6 Adrian Georgescu
h3. Media
12 1 Adrian Georgescu
13 7 Adrian Georgescu
h4. Variant 1
14 7 Adrian Georgescu
15 8 Adrian Georgescu
This by far the simplest way. Establish a standard chat stream and add _'application/odf+xml'_ to the lists of supported payloads. Add an attribute to the MSRP stream to signal the support for this feature:
16 8 Adrian Georgescu
17 8 Adrian Georgescu
<pre>
18 8 Adrian Georgescu
class BlinkChatStream(ChatStream):
19 8 Adrian Georgescu
    def _create_local_media(self, uri_path):
20 8 Adrian Georgescu
        local_media = super(BlinkChatStream, self)._create_local_media(uri_path)
21 8 Adrian Georgescu
        local_media.attributes.append(SDPAttribute('features', 'history-control icon otf-editor'))
22 8 Adrian Georgescu
        return local_media
23 8 Adrian Georgescu
</pre>
24 8 Adrian Georgescu
25 8 Adrian Georgescu
26 7 Adrian Georgescu
27 7 Adrian Georgescu
h4. Variant 2
28 7 Adrian Georgescu
29 2 Adrian Georgescu
A new MSRP media type can be created similar to file-transfer or screen sharing. See SIP SIMPLE Client SDK MSRP streams definition:
30 2 Adrian Georgescu
31 1 Adrian Georgescu
<pre>
32 1 Adrian Georgescu
sipsimple/streams/msrp.py
33 1 Adrian Georgescu
</pre>
34 1 Adrian Georgescu
35 7 Adrian Georgescu
Example of a new type of stream
36 3 Adrian Georgescu
37 3 Adrian Georgescu
<pre>
38 3 Adrian Georgescu
class ODFStream(MSRPStreamBase):
39 3 Adrian Georgescu
    type = 'odf'
40 3 Adrian Georgescu
41 3 Adrian Georgescu
    media_type = 'odf'
42 3 Adrian Georgescu
    accept_types = ['application/odf+xml']
43 3 Adrian Georgescu
    accept_wrapped_types = ['*']
44 3 Adrian Georgescu
</pre>
45 1 Adrian Georgescu
46 1 Adrian Georgescu
Once established, the MSRP stream can cary back and forth payloads of the types specified in the stream definition. Is up to the end-points to handle the actual payloads and match various files shared through this mechanism over the same session. The SIP session id can be used to group together various flows within the same stream.
47 7 Adrian Georgescu
48 1 Adrian Georgescu
49 6 Adrian Georgescu
h3. Presence
50 1 Adrian Georgescu
51 1 Adrian Georgescu
The end-points supporting this feature will advertise this capability by publishing it using SIP SIMPLE Presence. For this the end-point capabilities must be extended to support off.
52 1 Adrian Georgescu
53 1 Adrian Georgescu
<pre>
54 1 Adrian Georgescu
sipsimple/payloads/caps.py
55 4 Adrian Georgescu
</pre>
56 6 Adrian Georgescu
57 6 Adrian Georgescu
h2. GUI changes
58 6 Adrian Georgescu
59 6 Adrian Georgescu
The GUI must handle sessions for incoming and outgoing media stream defined above by creating its own controller.