Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
522e4c32
Commit
522e4c32
authored
3 years ago
by
Olivier Dion
Committed by
Adrien Béraud
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
agent/bindings: Add LOG_BINDING() macro
Change-Id: I95edfc348e9ef431e4ad26827bdfdadbba0fc746
parent
49038487
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
test/agent/src/bindings/account.h
+28
-18
28 additions, 18 deletions
test/agent/src/bindings/account.h
test/agent/src/bindings/bindings.h
+2
-0
2 additions, 0 deletions
test/agent/src/bindings/bindings.h
test/agent/src/bindings/call.h
+14
-0
14 additions, 0 deletions
test/agent/src/bindings/call.h
with
44 additions
and
18 deletions
test/agent/src/bindings/account.h
+
28
−
18
View file @
522e4c32
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
test/agent/src/bindings/bindings.h
+
2
−
0
View file @
522e4c32
...
...
@@ -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
();
This diff is collapsed.
Click to expand it.
test/agent/src/bindings/call.h
+
14
−
0
View file @
522e4c32
...
...
@@ -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
)));
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment