<html>
<head>
    <base href="https://wiki.asterisk.org/wiki">
            <link rel="stylesheet" href="/wiki/s/en/2176/25/9/_/styles/combined.css?spaceKey=AST&amp;forWysiwyg=true" type="text/css">
    </head>
<body style="background: white;" bgcolor="white" class="email-body">
<div id="pageContent">
<div id="notificationFormat">
<div class="wiki-content">
<div class="email">
    <h2><a href="https://wiki.asterisk.org/wiki/display/AST/Investigation+of+a+reSIProcate+Based+SIP+Channel+Driver+in+Asterisk">Investigation of a reSIProcate Based SIP Channel Driver in Asterisk</a></h2>
    <h4>Page <b>edited</b> by             <a href="https://wiki.asterisk.org/wiki/display/~mjordan">Matt Jordan</a>
    </h4>
        <br/>
                         <h4>Changes (1)</h4>
                                 
    
<div id="page-diffs">
                    <table class="diff" cellpadding="0" cellspacing="0">
    
            <tr><td class="diff-added-lines" style="background-color: #dfd;">{gliffy:name=reSIProcate_Cpp_Natural_Boundary|align=left|size=L|version=1} <br></td></tr>
            <tr><td class="diff-unchanged" >{gliffy:name=reSIProcate_C_Cpp_Facade|align=left|size=L|version=1} <br>h1. Introduction <br></td></tr>
            <tr><td class="diff-snipped" >...<br></td></tr>
    
            </table>
    </div>                            <h4>Full Content</h4>
                    <div class="notificationGreySide">
        


<table width="100%">
    <tr>
        <td  align="left" >
            <table>
                <caption align="bottom">
                                    </caption>
                <tr>
                    <td>
                        <img style="border: none; width: 612px;"
                                                          usemap="#gliffy-map-22478854-2723"
                                                          src="/wiki/download/attachments/22085776/reSIProcate_Cpp_Natural_Boundary.png?version=1&amp;modificationDate=1355190243350"
                             alt=""/>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
</table>






<table width="100%">
    <tr>
        <td  align="left" >
            <table>
                <caption align="bottom">
                                    </caption>
                <tr>
                    <td>
                        <img style="border: none; width: 571px;"
                                                          usemap="#gliffy-map-22478852-7368"
                                                          src="/wiki/download/attachments/22085776/reSIProcate_C_Cpp_Facade.png?version=1&amp;modificationDate=1355190201640"
                             alt=""/>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
</table>



<h1><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-Introduction"></a>Introduction</h1>

<p>Digium has identified the need for a new SIP channel driver and ancillary modules based on a third party SIP library. Currently there are two candidates being explored: the Teluu pjproject libraries and reSIProcate. As reSIProcate is a C+&#43; based implementation, special consideration must be given beyond the SIP-related technical merits and quality of implementation. The focus here is primarily on the implications of incorporating a third party library or any kind that has an API defined in C++. Evaluation of the technical merits of reSIProcate and it's suitability for a new channel driver with respect to compliance, feature set, support, etc. are outside of the scope of this document.</p>

<p><em>Note: research for this page was done by Brent Eagles.</em></p>

<h1><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-GeneralConsiderationsofMixingCandC%5CCode"></a>General Considerations of Mixing C and C+&#43; Code</h1>

<p>Mixing C and C+&#43; is common-place, particularly using C libraries with C+&#43; code. The most common and straightforward example is the use of system libraries on a UNIX like system, all of which are exposed as functions and data types with C linkage and memory layouts. The reverse, using C+&#43; from C libraries, is not as common. In this case, the C+&#43; API is typically "wrapped" in a C-callable layer as C code does not "understand" C+&#43; specific constructs. Besides the necessity of the a C accessible wrapper, the following must also be considered:</p>
<ul>
        <li>C+&#43; exceptions</li>
        <li>C+&#43; specific memory management</li>
        <li>passing objects back and forth across the API boundary</li>
        <li>build time requirements for inclusion of C+&#43; code</li>
</ul>


<h2><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-Exceptions"></a>Exceptions</h2>

<p>C+&#43; exception support results in the generation of additional code to support stack unwinding and exception propagation "up" the stack. To be certain that an exception does not produce undefined behavior, C+&#43; exceptions should not be allowed to cross a C boundary. It is possible that this may work in some situations but the ultimate behavior may be platform-dependent.</p>

<h3><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-ExceptionthrownfromC%5CpropagatingtoC"></a>Exception thrown from C+&#43; propagating to C</h3>

<p>The most basic form of this scenario is an uncaught exception propagating to a C call frame. This may easily be avoided in practice but exceptions may be useful if the same function is also called from C++. In this case, two versions of the function are required.</p>



<table width="100%">
    <tr>
        <td  align="left" >
            <table>
                <caption align="bottom">
                                    </caption>
                <tr>
                    <td>
                        <img style="border: none; width: 790px;"
                                                          usemap="#gliffy-map-22478850-3334"
                                                          src="/wiki/download/attachments/22085776/reSIProcate_C_calling_CPlusPlus.png?version=1&amp;modificationDate=1355190118743"
                             alt=""/>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
</table>




<h3><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-ExceptionpassingthroughCcodetobecaughtinC%5C"></a>Exception passing through C code to be caught in C+&#43;</h3>

<p>This is a far more severe example: a function implemented in C+&#43; invokes a utility function implemented in C that in turn invokes a C+&#43; function that throws an exception. With a gcc/g+&#43; built executable, the thrown exception actually safely makes its way up the stack due to the way the GNU compiler framework implements C+&#43; exceptions. Weird stack problems or disappearing exceptions do not occur. However, the exception causes immediate stack unwinding and the <tt>free()</tt> and <tt>unlock_mutex()</tt> calls in the example C function is skipped. There is no remedy for that particular issue and the results are potentially disastrous.</p>


<table style="background-color: #2C8FCF;  height: 38px">
    <tr>
        <td style="vertical-align: middle; padding-top: 0px; padding-bottom: 0px;">
            <div style="padding: 3px"><img
                    src="/wiki/download/resources/com.gliffy.integration.confluence:gliffy-macro-key/icons/gliffy_logo_32px.png"/>
            </div>
        </td>
        <td style="border-right: 2px solid white; padding:3px">
            <span style="font-size:120%; font-weight: bold; color: white">Gliffy Macro Error</span>
        </td>
        <td style="padding: 3px;">
            <span style="color:white;">
                Cannot find a diagram with these parameters: <br>
                <strong>name:</strong> Cpp_to_C_to_Cpp <br>
                 <strong>version:</strong> 5 <br>                                                             </span>

                        <hr/>
            <span style="font-weight: bold; ">
                <a href="/wiki/plugins/gliffy/adddiagram.action?name=Cpp_to_C_to_Cpp&ceoid=22085776&key=AST&pageId=22085776">Create Diagram</a>
            </span>
                    </td>
    </tr>
</table>


<p>While it may be difficult to create an example that demonstrates all of the issues around exceptions, it <b>is</b> clear that C code cannot handle C+&#43; exceptions. Exceptions allowed to propagate out of C+&#43; calls into C code will either cause crashes and aborts, undefined behavior or skipped "cleanup" code or essential "matching" operations. To avoid these issues, all C+&#43; exceptions must be caught within the C+&#43; code and either entirely handled there or converted to error codes and data and returned to the caller. The resultant code tends to be neither C+&#43; or C like and unpleasant to maintain. C+&#43; exceptions are difficult to simply avoid altogether as they are necessary for using certain C+&#43; features properly (e.g. exceptions thrown from constructors allow proper automatic cleanup of partially created objects).</p>

<h2><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-MemoryManagement"></a>Memory Management</h2>

<p>Memory management in C+&#43; typically employes <tt>new()</tt> and <tt>delete()</tt>. These operators, besides managing memory allocations on the heap, invoke the appropriate constructor and destructor for the object being allocated. Use of <tt>malloc()</tt> or <tt>free()</tt> may allocate or release memory but will fail to invoke the appropriate constructor or destructor, resulting in partially initialized objects or resource leaks. Complications may also occur if memory management functions use specialized heaps and/or diagnostic code. While it is possible with a reasonable amount of care to successfully manage multiple parallel memory management schemes, variable or unanticipated call paths can make maintaining these systems difficult and time consuming.</p>

<h2><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-PassingObjectsBackAndForthAcrosstheAPIBoundary"></a>Passing Objects Back And Forth Across the API Boundary</h2>

<p>Pointers to C+&#43; objects may be assigned to void&#42; and cast back to the original type via static_cast&lt;T&gt;() without issue. However, there are potential complications with virtual and multiple inheritance and pointer values. Pointers to the "same" object may not agree if they are obtained by different means.</p>

<h2><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-BuildTimeRequirements"></a>Build Time Requirements</h2>

<p>C+&#43; requires the inclusion and initialization of the C+&#43; run-time library. On many systems this means that the compilable unit containing the entry point for the process must be compiled with a C+&#43; compiler and linked to the C+&#43; run-time library. Alternatively, and only if supported, the run-time must be loaded and initialized through some other means.</p>
<div class='panelMacro'><table class='infoMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="/wiki/images/icons/emoticons/information.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td>Manually managing the loading and loading of a run-time library may raise issues such as race conditions during startup and shutdown.</td></tr></table></div>

<h1><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-AsteriskSpecificConsiderations"></a>Asterisk Specific Considerations</h1>

<p>There are issues specific to Asterisk and the future plans for the product that need to be addressed when considering a third party library with a C+&#43; API:</p>
<ul>
        <li>Constraints on Modular Implementations</li>
        <li>Integration with Asterisk Specific Utility Libraries</li>
        <li>Support</li>
</ul>


<h2><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-ConstraintsonModularImplementations"></a>Constraints on Modular Implementations</h2>

<p>Asterisk modules are traditionally monolithic with little code sharing and reuse across modules and module specific functionality is entirely encapsulated in one compilable unit and not exposed through external linkage. There is an initiative to move away from the <em>status quo</em> and have a more modular architecture, exposing some of the functional subunits that have historically been hidden away. For example:</p>
<ul>
        <li>SIP and the registry</li>
        <li>Voicemail and IMAP access<br/>
The motivations behind this initiative are outside of the scope of this document. However, it is generally viewed as a necessary step in maintaining and evolving Asterisk in a reasonable fashion into the foreseeable future.</li>
</ul>


<p>Using a C+&#43; based implementation as basis for a related functionality implies one of the following approaches:</p>
<ul>
        <li>All modules that "use" the third party library are implemented in C+<ins>. The modules internally use C</ins>&#43; and may share common C+&#43; code, but they are ultimately accessible from Asterisk via a C compatible API.</li>
        <li>A C wrapper, or "facade", is created to encapsulate the C+&#43; library. Asterisk modules then use the facade instead of the C+&#43; API.</li>
</ul>


<h3><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-PervadingC%5C"></a>Pervading C+&#43;</h3>

<p>Allowing or requiring C+&#43; to pervade or "creep" into several modules implies that each module be written with care to address the C+&#43; related challenges described above. This is a development, maintenance and support risk, particularly for a community that may not be experienced with C+<ins>. The "natural boundary" at which C</ins>&#43; may be hidden behind may prove to be ambiguous or flexible in time, resulting in inconsistencies in interface definitions and modules of inconsistent utility.</p>


<table style="background-color: #2C8FCF;  height: 38px">
    <tr>
        <td style="vertical-align: middle; padding-top: 0px; padding-bottom: 0px;">
            <div style="padding: 3px"><img
                    src="/wiki/download/resources/com.gliffy.integration.confluence:gliffy-macro-key/icons/gliffy_logo_32px.png"/>
            </div>
        </td>
        <td style="border-right: 2px solid white; padding:3px">
            <span style="font-size:120%; font-weight: bold; color: white">Gliffy Macro Error</span>
        </td>
        <td style="padding: 3px;">
            <span style="color:white;">
                Cannot find a diagram with these parameters: <br>
                <strong>name:</strong> Cpp_Natural_Boundary <br>
                 <strong>version:</strong> 2 <br>                                                             </span>

                        <hr/>
            <span style="font-weight: bold; ">
                <a href="/wiki/plugins/gliffy/adddiagram.action?name=Cpp_Natural_Boundary&ceoid=22085776&key=AST&pageId=22085776">Create Diagram</a>
            </span>
                    </td>
    </tr>
</table>


<p>It is worthwhile noting that C+&#43; code libraries developed to aide in the implementation of the C+&#43; Asterisk modules are, in the same way as the third party C+&#43; library, not available to C Asterisk modules unless wrapped in a facade.</p>

<h3><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-A%22C%22Facade"></a>A "C" Facade</h3>

<p>Implementing and maintaining a facade or "wrapper" around any third party library is a development, maintenance and support burden of some significance. The stability is directly dependent on the third-party library's stability and requires a special, and perhaps uncommon, amalgam (e.g problem domain, product, library, C and C++) of knowledge to implement correctly. In the case of a feature rich third party API, the effort required to wrap a useful expanse of the API may prove to be roughly equivalent to the implementation of the library itself.</p>

<div class='panelMacro'><table class='noteMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="/wiki/images/icons/emoticons/warning.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td>One consequence of this approach is that the more of a library you use, the more of a facade you need to build. If the third-party library API changes in some significant way in a major release, Asterisk must either remain on the old version, possibly maintaining it past it's EOL horizon or alter the facade to match the third-party library's changes. Either situation is against one of the principle reasons for using a third party library in the first place.</td></tr></table></div>


<table style="background-color: #2C8FCF;  height: 38px">
    <tr>
        <td style="vertical-align: middle; padding-top: 0px; padding-bottom: 0px;">
            <div style="padding: 3px"><img
                    src="/wiki/download/resources/com.gliffy.integration.confluence:gliffy-macro-key/icons/gliffy_logo_32px.png"/>
            </div>
        </td>
        <td style="border-right: 2px solid white; padding:3px">
            <span style="font-size:120%; font-weight: bold; color: white">Gliffy Macro Error</span>
        </td>
        <td style="padding: 3px;">
            <span style="color:white;">
                Cannot find a diagram with these parameters: <br>
                <strong>name:</strong> C_Cpp_Facade <br>
                 <strong>version:</strong> 1 <br>                                                             </span>

                        <hr/>
            <span style="font-weight: bold; ">
                <a href="/wiki/plugins/gliffy/adddiagram.action?name=C_Cpp_Facade&ceoid=22085776&key=AST&pageId=22085776">Create Diagram</a>
            </span>
                    </td>
    </tr>
</table>


<h2><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-IntegrationwithAsteriskSpecificUtilityLibraries"></a>Integration with Asterisk Specific Utility Libraries</h2>

<p>The Asterisk code base represents an investment in time and expertise in C development. Crucial, common code elements have been identified and moved into re-usable units of utility functions. Elements such as reference counted data elements, collections (including the incipient red-black tree collection), and memory management are thoroughly tested both by the test framework and frequent and pervasive use. This collateral is primarily C based and may not integrate well with C+&#43; modules. In addition to the issue of usability, APIs for Asterisk and/or the third party library expect data to be defined in terms of collections common to their respective languages or even proprietary to them. This can result in pervasive allocation, copying and deallocation steps as data moves back and forth across API boundaries.</p>

<p>Just as the growing library of C code may not be of utility to a C+&#43; module, neither will C+&#43; specific constructs invented and implemented in the C+&#43; module be available to the C based Asterisk modules.</p>

<h2><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-Support"></a>Support</h2>

<p>The term "support" is used here in the most general and universal sense. To support a C+&#43; based module, whether it be an actual module or a facade, requires community involvement including the commitment for the continuation of C+&#43; expertise both inside and outside of Digium. Independent of a subjective debate regarding the ease or difficulty of C+<ins>, the relevance of C as an application language, etc., supporting a critical, first-class module implemented in C</ins>&#43; requires the continuous availability of the relevant skill sets. In addition to code, there are module specific build system requirements that must be addressed and guidelines on acceptable coding practices must be conceived, documented and maintained. Acceptance in the Asterisk community is perhaps the most important "support" required.</p>

<h1><a name="InvestigationofareSIProcateBasedSIPChannelDriverinAsterisk-Conclusion"></a>Conclusion</h1>

<p>The consequences of employing a third party library that is accessed through a C+&#43; API are diverse and significant. Technical excellence in the library notwithstanding, an effort to incorporate a library of this type in Asterisk requires careful consideration, a detailed communication and agreement of the challenges both current and future, and the full commitment of the Asterisk community and Digium. Considering the existing challenges that the aforementioned face in the continuation and evolution of Asterisk, it is imprudent to add obstacles that do not directly, and in all reasonable fashion, aide in overcoming these challenges. Also, given that the library in question would be used in implementing one of the most critical and fundamental parts of the system and that the initiative to eventually replace the existing SIP implementation is largely motivated on the difficulties of managing and maintaining the current implementation, adopting an approach that adds complexities not related to the challenges of implementing robust SIP functions adds significant complexity and risk to the Asterisk project.</p>
    </div>
        <div id="commentsSection" class="wiki-content pageSection">
        <div style="float: right;" class="grey">
                        <a href="https://wiki.asterisk.org/wiki/users/removespacenotification.action?spaceKey=AST">Stop watching space</a>
            <span style="padding: 0px 5px;">|</span>
                <a href="https://wiki.asterisk.org/wiki/users/editmyemailsettings.action">Change email notification preferences</a>
</div>
        <a href="https://wiki.asterisk.org/wiki/display/AST/Investigation+of+a+reSIProcate+Based+SIP+Channel+Driver+in+Asterisk">View Online</a>
        |
        <a href="https://wiki.asterisk.org/wiki/pages/diffpagesbyversion.action?pageId=22085776&revisedVersion=5&originalVersion=4">View Changes</a>
                |
        <a href="https://wiki.asterisk.org/wiki/display/AST/Investigation+of+a+reSIProcate+Based+SIP+Channel+Driver+in+Asterisk?showComments=true&amp;showCommentArea=true#addcomment">Add Comment</a>
            </div>
</div>
</div>
</div>
</div>
</body>
</html>