<p></p>
<p dir="auto">I am bit lost on how the code execution flow works for KEMI. My understanding was that all KEMI methods are exported by <code class="notranslate">sr_kemi_t</code> structure array, which specifies exported function names, their internal implementation function name and its arguments either as string <code class="notranslate">SR_KEMIP_STR</code> or integer <code class="notranslate">SR_KEMIP_INT</code>.</p>
<p dir="auto">Each exported function (e.g. <code class="notranslate">cr_route</code>) calls internal implementation function (e.g. <code class="notranslate">ki_cr_route5</code>), which then checks arguments and then either do the actual implementation or calls up a wrapper function (e.g. <code class="notranslate">w_cr_do_route</code>) which does some formatting on input arguments (e.g. <code class="notranslate">cr_route_fixup</code>) and then pass it to an existing implementation (e.g. <code class="notranslate">cr_do_route</code>). The output arguments control flow is in the opposite direction. Also since there is no free fixup in existing implementation of <code class="notranslate">cmd_export_t</code>, so I didn't created or called-in any for KEMI.</p>
<pre class="notranslate"><code class="notranslate">static cmd_export_t cmds[]={
    {"cr_user_carrier",  (cmd_function)cr_load_user_carrier,  3,
        cr_load_user_carrier_fixup, 0, REQUEST_ROUTE | FAILURE_ROUTE },
    {"cr_route",         (cmd_function)cr_route5,              5,
        cr_route_fixup,             0, REQUEST_ROUTE | FAILURE_ROUTE },
    {"cr_route",         (cmd_function)cr_route,              6,
        cr_route_fixup,             0, REQUEST_ROUTE | FAILURE_ROUTE },
    {"cr_nofallback_route",(cmd_function)cr_nofallback_route5,     5,
        cr_route_fixup,             0, REQUEST_ROUTE | FAILURE_ROUTE },
    {"cr_nofallback_route",(cmd_function)cr_nofallback_route,     6,
        cr_route_fixup,             0, REQUEST_ROUTE | FAILURE_ROUTE },
    {"cr_next_domain",   (cmd_function)cr_load_next_domain,   6,
        cr_load_next_domain_fixup,  0, REQUEST_ROUTE | FAILURE_ROUTE },
    {0, 0, 0, 0, 0, 0}
};
</code></pre>
<p dir="auto">On the python side, my example just shows that whatever we pass as argument (whether <code class="notranslate">$fU</code> or <code class="notranslate">KSR.kx.get_fuser()</code> or <code class="notranslate">"any-string-value"</code>), the module function will accept and take care of it (i.e. fetch the actual string value internally), this is already tested in my lab environment.</p>
<p dir="auto">However, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/miconda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/miconda">@miconda</a> has suggested the completely different approach. Can you please point me to any existing howto or explain a bit more on how to write KEMI implementation of an existing module function? The example you provide at,</p>
<p dir="auto"><a href="https://github.com/kamailio/kamailio/blob/master/src/modules/posops/posops_mod.c#L170-L224">https://github.com/kamailio/kamailio/blob/master/src/modules/posops/posops_mod.c#L170-L224</a></p>
<p dir="auto">is very confusing and does not give any hints on how the flow actually works.</p>
<p dir="auto">Thank you.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />Reply to this email directly, <a href="https://github.com/kamailio/kamailio/pull/3247#issuecomment-1262845427">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/ABO7UZJBYQN4T5BRQVLH633WAYEE3ANCNFSM6AAAAAAQQ7SOMU">unsubscribe</a>.<br />You are receiving this because you are subscribed to this thread.<img src="https://github.com/notifications/beacon/ABO7UZKUR2Q6KOTE6FGS2WLWAYEE3A5CNFSM6AAAAAAQQ7SOMWWGG33NNVSW45C7OR4XAZNMJFZXG5LFINXW23LFNZ2KUY3PNVWWK3TUL5UWJTSLIV67G.gif" height="1" width="1" alt="" /><span style="color: transparent; font-size: 0; display: none; visibility: hidden; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0; mso-hide: all">Message ID: <span><kamailio/kamailio/pull/3247/c1262845427</span><span>@</span><span>github</span><span>.</span><span>com></span></span></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/kamailio/kamailio/pull/3247#issuecomment-1262845427",
"url": "https://github.com/kamailio/kamailio/pull/3247#issuecomment-1262845427",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>