ODF

Version 16 (Adrian Georgescu, 11/04/2014 02:48 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 16 Adrian Georgescu
Is unclear at this stage, the mechanics of WebODF. Important items to analyse are:
6 15 Adrian Georgescu
7 15 Adrian Georgescu
 * Is a web server component required or not
8 16 Adrian Georgescu
 * How to identify/mix multiple editing flows
9 15 Adrian Georgescu
 * How multi-party works as opposed to P2P
10 15 Adrian Georgescu
11 16 Adrian Georgescu
h2. Possible SDK changes
12 1 Adrian Georgescu
13 6 Adrian Georgescu
h3. Signaling
14 6 Adrian Georgescu
15 12 Adrian Georgescu
There is no need to alter anything related to SIP signalling. The SIP call id, which is unique for each session can be used as an identifier to group data related to same session inside the media streams. 
16 1 Adrian Georgescu
17 6 Adrian Georgescu
h3. Media
18 1 Adrian Georgescu
19 14 Adrian Georgescu
Media requires reliable transport which can only be MSRP. This provides reliable end-to-end transmission, TLS encryption and NAT traversal. Optional, OTR end-to-end encryption can be used.
20 11 Adrian Georgescu
21 7 Adrian Georgescu
h4. Variant 1
22 7 Adrian Georgescu
23 14 Adrian Georgescu
This is by far the simplest way. Establish a standard MSRP chat stream and add _'application/odf+xml'_ to the lists of supported payloads by subclassing the standard Chat stream from the SDK. 
24 8 Adrian Georgescu
25 1 Adrian Georgescu
<pre>
26 10 Adrian Georgescu
class ODFChatStream(ChatStream):
27 10 Adrian Georgescu
    accept_types = ['message/cpim', 'text/*', 'application/im-iscomposing+xml', 'application/odf+xml']
28 1 Adrian Georgescu
</pre>
29 10 Adrian Georgescu
30 11 Adrian Georgescu
Then during the session, send the data over the stream using:
31 10 Adrian Georgescu
32 10 Adrian Georgescu
<pre>
33 14 Adrian Georgescu
stream.send_message(data, content_type='application/odf+xml', timestamp=ISOTimestamp.now())
34 10 Adrian Georgescu
</pre>
35 10 Adrian Georgescu
36 14 Adrian Georgescu
Optionally, one can add an attribute to the MSRP stream to signal the support for this feature inside the media stream:
37 10 Adrian Georgescu
38 10 Adrian Georgescu
<pre>
39 10 Adrian Georgescu
class ODFChatStream(ChatStream):
40 10 Adrian Georgescu
    accept_types = ['message/cpim', 'text/*', 'application/im-iscomposing+xml', 'application/odf+xml']
41 8 Adrian Georgescu
    def _create_local_media(self, uri_path):
42 1 Adrian Georgescu
        local_media = super(BlinkChatStream, self)._create_local_media(uri_path)
43 12 Adrian Georgescu
        local_media.attributes.append(SDPAttribute('features', 'odf-editor'))
44 1 Adrian Georgescu
        return local_media
45 9 Adrian Georgescu
</pre>
46 1 Adrian Georgescu
47 12 Adrian Georgescu
After session negotiation, the clients can invoke their corespondent GUI elements related to the collaborative editing when detecting _odf-editor_ feature in the remote stream. This approach will work with any MSRP chat implementation, the data will piggy-back on top of an existent chat stream in a non-disruptive way, which makes development of other end-points easy as no internal mechanisms of SIP session session initiation must be done.
48 7 Adrian Georgescu
49 1 Adrian Georgescu
h4. Variant 2
50 7 Adrian Georgescu
51 10 Adrian Georgescu
Create a complete new media type based on MSRP protocol similar to file-transfer or screen sharing. See SIP SIMPLE Client SDK MSRP streams definition:
52 1 Adrian Georgescu
53 1 Adrian Georgescu
<pre>
54 1 Adrian Georgescu
sipsimple/streams/msrp.py
55 1 Adrian Georgescu
</pre>
56 7 Adrian Georgescu
57 3 Adrian Georgescu
Example of a new type of stream
58 3 Adrian Georgescu
59 3 Adrian Georgescu
<pre>
60 3 Adrian Georgescu
class ODFStream(MSRPStreamBase):
61 3 Adrian Georgescu
    type = 'odf'
62 1 Adrian Georgescu
63 3 Adrian Georgescu
    media_type = 'odf'
64 3 Adrian Georgescu
    accept_types = ['application/odf+xml']
65 3 Adrian Georgescu
    accept_wrapped_types = ['*']
66 3 Adrian Georgescu
</pre>
67 1 Adrian Georgescu
68 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.
69 7 Adrian Georgescu
70 13 Adrian Georgescu
This mechanism will require similar changes in other clients that wish to implement this feature, it is more complex but have the advantage that it can be negotiated by the use of a SIP Invite where the remote party can accept or reject the session request.
71 1 Adrian Georgescu
72 6 Adrian Georgescu
h3. Presence
73 1 Adrian Georgescu
74 13 Adrian Georgescu
Optionally, SIP end-points supporting this feature can advertise this capability by publishing it using the SIP SIMPLE Presence payload. For this, the end-point capabilities must be extended to support odf as a different media type.
75 1 Adrian Georgescu
76 1 Adrian Georgescu
<pre>
77 4 Adrian Georgescu
sipsimple/payloads/caps.py
78 1 Adrian Georgescu
</pre>
79 6 Adrian Georgescu
80 1 Adrian Georgescu
h2. GUI changes
81 1 Adrian Georgescu
82 1 Adrian Georgescu
The GUI must handle sessions for incoming and outgoing media stream defined above by creating its own controller that it is invoked either when negotiating the session, when a proper payload arrives over the chat channel or when user clicks in the GUI to start editing.
83 16 Adrian Georgescu
84 16 Adrian Georgescu
h2. Multi-party
85 16 Adrian Georgescu
86 16 Adrian Georgescu
SylkServer is the candidate for mixing media, it has built-in web server and MSRP switch capabilities.