Skip to content
Snippets Groups Projects
Commit 522e4c32 authored by Olivier Dion's avatar Olivier Dion Committed by Adrien Béraud
Browse files

agent/bindings: Add LOG_BINDING() macro

Change-Id: I95edfc348e9ef431e4ad26827bdfdadbba0fc746
parent 49038487
No related branches found
No related tags found
No related merge requests found
......@@ -29,44 +29,54 @@
static SCM set_details_binding(SCM accountID_str, SCM details_alist)
{
DRing::setAccountDetails(from_guile(accountID_str),
from_guile(details_alist));
return SCM_UNDEFINED;
LOG_BINDING();
DRing::setAccountDetails(from_guile(accountID_str),
from_guile(details_alist));
return SCM_UNDEFINED;
}
static SCM get_details_binding(SCM accountID_str)
{
return to_guile(DRing::getAccountDetails(from_guile(accountID_str)));
LOG_BINDING();
return to_guile(DRing::getAccountDetails(from_guile(accountID_str)));
}
static SCM send_register_binding(SCM accountID_str, SCM enable_boolean)
{
DRing::sendRegister(from_guile(accountID_str),
from_guile(enable_boolean));
LOG_BINDING();
DRing::sendRegister(from_guile(accountID_str),
from_guile(enable_boolean));
return SCM_UNDEFINED;
return SCM_UNDEFINED;
}
static SCM export_to_file_binding(SCM accountID_str, SCM path_str, SCM passwd_str_optional)
{
if (SCM_UNBNDP(passwd_str_optional)) {
return to_guile(DRing::exportToFile(from_guile(accountID_str),
from_guile(path_str)));
}
LOG_BINDING();
if (SCM_UNBNDP(passwd_str_optional)) {
return to_guile(DRing::exportToFile(from_guile(accountID_str),
from_guile(path_str),
from_guile(passwd_str_optional)));
from_guile(path_str)));
}
return to_guile(DRing::exportToFile(from_guile(accountID_str),
from_guile(path_str),
from_guile(passwd_str_optional)));
}
static SCM add_account_binding(SCM details_alist, SCM accountID_str_optional)
{
if (SCM_UNBNDP(accountID_str_optional)) {
return to_guile(DRing::addAccount(from_guile(details_alist)));
}
LOG_BINDING();
if (SCM_UNBNDP(accountID_str_optional)) {
return to_guile(DRing::addAccount(from_guile(details_alist)));
}
return to_guile(DRing::addAccount(from_guile(details_alist),
from_guile(accountID_str_optional)));
return to_guile(DRing::addAccount(from_guile(details_alist),
from_guile(accountID_str_optional)));
}
static void
......
......@@ -36,5 +36,7 @@
#define DEFINE_UINT(NAME) DEFINE_AND_EXPORT(#NAME, NAME, scm_from_uint)
#define DEFINE_UINT32(NAME) DEFINE_AND_EXPORT(#NAME, NAME, scm_from_uint32)
#define LOG_BINDING() JAMI_INFO("[GUILE] In binding %s()", __func__)
extern void define_primitive(const char* name, int req, int opt, int rst, void* func);
extern void install_scheme_primitives();
......@@ -30,6 +30,8 @@
static SCM
place_call_binding(SCM accountID_str, SCM contact_str, SCM call_details_alist_optional)
{
LOG_BINDING();
if (SCM_UNBNDP(call_details_alist_optional)) {
return to_guile(DRing::placeCall(from_guile(accountID_str),
from_guile(contact_str)));
......@@ -43,6 +45,8 @@ place_call_binding(SCM accountID_str, SCM contact_str, SCM call_details_alist_op
static SCM
place_call_with_media_binding(SCM accountID_str, SCM contact_str, SCM call_media_vector_alist_optional)
{
LOG_BINDING();
if (SCM_UNBNDP(call_media_vector_alist_optional)) {
call_media_vector_alist_optional = scm_c_make_vector(0, SCM_UNDEFINED);
}
......@@ -55,12 +59,16 @@ place_call_with_media_binding(SCM accountID_str, SCM contact_str, SCM call_media
static SCM
hang_up_binding(SCM callID_str)
{
LOG_BINDING();
return to_guile(DRing::hangUp(from_guile(callID_str)));
}
static SCM
accept_binding(SCM callID_str, SCM call_media_vector_alist_optional)
{
LOG_BINDING();
if (SCM_UNBNDP(call_media_vector_alist_optional)) {
return to_guile(DRing::accept(from_guile(callID_str)));
}
......@@ -72,18 +80,24 @@ accept_binding(SCM callID_str, SCM call_media_vector_alist_optional)
static SCM
refuse_binding(SCM callID_str)
{
LOG_BINDING();
return to_guile(DRing::refuse(from_guile(callID_str)));
}
static SCM
hold_binding(SCM callID_str)
{
LOG_BINDING();
return to_guile(DRing::hold(from_guile(callID_str)));
}
static SCM
unhold_binding(SCM callID_str)
{
LOG_BINDING();
return to_guile(DRing::unhold(from_guile(callID_str)));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment