SipDeveloperGuide

Version 4 (Adrian Georgescu, 03/10/2009 09:25 pm)

1 1 Adrian Georgescu
= Developer guide =
2 1 Adrian Georgescu
3 1 Adrian Georgescu
[[TOC(WikiStart, Sip*, depth=2)]]
4 1 Adrian Georgescu
5 1 Adrian Georgescu
The main goal of this library is to provide a simple to use API to create real-time communications applications between end-points based on SIP protocol.
6 1 Adrian Georgescu
7 1 Adrian Georgescu
== Middleware API ==
8 1 Adrian Georgescu
9 1 Adrian Georgescu
To develop your applications you should use the middleware API. The middleware API hides the complexity and interactions of the lower level SIP, RTP, MSRP and XCAP protocols.
10 1 Adrian Georgescu
11 1 Adrian Georgescu
 * [wiki:SipMiddlewareApiDocumentation Middleware API]
12 4 Adrian Georgescu
 * [wiki:SipSettings Sip settings API] - configuration framework that will replace the configuration file config.ini
13 1 Adrian Georgescu
14 1 Adrian Georgescu
== Components APIs ==
15 1 Adrian Georgescu
16 1 Adrian Georgescu
You can use the following APIs that provides granular control of their respective components to develop your own high level API or application:
17 1 Adrian Georgescu
18 1 Adrian Georgescu
 * [wiki:SipCoreApiDocumentation SIP core API] - The API for the SIP, RTP, ICE and audio engine
19 1 Adrian Georgescu
 * [wiki:SipMSRPApiDocumentation MSRP API]  - The API for Message Session Relay Protocol used for instant messaging, file transfer and desktop sharing
20 1 Adrian Georgescu
 * [wiki:SipPresenceApiDocumentation Presence API]  - The API for payload types used for publication, subscription and notifications of SIP events
21 1 Adrian Georgescu
 * [wiki:SipXCAPApiDocumentation XCAP API]  - The API for XCAP document manipulation used for storage of buddy lists and presence policy documents
22 1 Adrian Georgescu
23 1 Adrian Georgescu
== Contributing ==
24 1 Adrian Georgescu
25 1 Adrian Georgescu
If you want to help us fixing a bug that you found or if you want to contribute with a new feature you must be familiar with the darcs version control system from http://darcs.net. 
26 1 Adrian Georgescu
27 1 Adrian Georgescu
First make sure you are using the latest version by doing a 'darcs pull'. 
28 1 Adrian Georgescu
29 1 Adrian Georgescu
Then record your changes using 'darcs record'. Follow the following guidelines for recording your changes:
30 1 Adrian Georgescu
31 1 Adrian Georgescu
 * Keep a patch name under 74 characters, so that a darcs changes in a 80 char console is consistent and readable. If you need to write more than that, use --edit-long-comment or do not specify -m "patch name" and it will automatically ask for a patch name and a long comment.  Also keep the long comment inside the 80 char frame
32 1 Adrian Georgescu
 * When you add a long comment, you have the patch name on the first line.  After that, leave an empty line and then add the long comment starting from the 1st column. If you need to add bulleted entries in the long comment, use a dash (-) not an asterisk (*), to avoid confusion with the asterisk darcs places before every patch name. 
33 1 Adrian Georgescu
 * Record separate patches for each distinct changes you make. Do not mix different changes in a single record.
34 1 Adrian Georgescu
 * Use darcs replace to rename tokens if possible instead of using a  search and replace in your editor. It correctly handles cases where someone else still kept using the old name (it will automatically rename this uses of the old name when he pull the darcs replace patch, which a simple token rename done by the editor and recorded as a standard diff will never do, requiring further patches to rename the old tokens that the other developer added in his code while you were doing the renaming).
35 1 Adrian Georgescu
36 1 Adrian Georgescu
Finally open a ticket at http://sipsimpleclient.com/newticket describing your patch and the problem solved and submit the patch using:
37 1 Adrian Georgescu
38 1 Adrian Georgescu
{{{
39 1 Adrian Georgescu
darcs send --to devel@ag-projects.com
40 1 Adrian Georgescu
}}}
41 1 Adrian Georgescu
42 1 Adrian Georgescu
 * [wiki:SipContributions Third-party contributions] page.