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
cbcb6821
Commit
cbcb6821
authored
3 years ago
by
Olivier Dion
Committed by
Adrien Béraud
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
agent/agent: Fix wait for announcement problems
Change-Id: I1de543265671728148e02d5b4d7d1878e22d6e18
parent
95617cc2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/agent/agent.scm
+42
-40
42 additions, 40 deletions
test/agent/agent.scm
with
42 additions
and
40 deletions
test/agent/agent.scm
+
42
−
40
View file @
cbcb6821
...
...
@@ -20,50 +20,52 @@
#
:use-module
(
ice-9
threads
)
#
:use-module
((
jami
account
)
#
:prefix
account:
)
#
:use-module
((
jami
call
)
#
:prefix
call:
)
#
:use-module
((
jami
signal
)
#
:prefix
jami:
))
#
:use-module
((
jami
signal
)
#
:prefix
jami:
)
#
:export
(
ensure-account
ensure-account-from-archive
))
(
define-public
account-id
"afafafafafafafaf"
)
(
define-public
peer-id
#f
)
(
define-public
account-id
(
make-fluid
"afafafafafafafaf"
)
)
(
define-public
peer-id
(
make-fluid
)
)
(
define
(
wait-for-announcement-of%
accounts
)
(
let
((
mtx
(
make-mutex
))
(
cnd
(
make-condition-variable
)))
(
map
(
lambda
(
this-account
)
(
jami:on-signal
'volatile-details-changed
(
lambda
(
accountID
details
)
(
cond
((
not
(
string=
accountID
this-account
))
#f
)
((
not
(
string=
"true"
(
assoc-ref
details
"Account.deviceAnnounced"
)))
#f
)
(
else
(
with-mutex
mtx
(
signal-condition-variable
cnd
))
#t
))))
(
with-mutex
mtx
(
wait-condition-variable
cnd
mtx
)))
accounts
)))
(
define*
(
ensure-account%
this-account-id
account-details
#
:optional
(
wait-for-announcement?
#t
))
(
if
wait-for-announcement?
(
let
((
mtx
(
make-mutex
))
(
cnd
(
make-condition-variable
)))
(
jami:on-signal
'volatile-details-changed
(
lambda
(
accountID
details
)
(
cond
((
and
(
string=
accountID
this-account-id
)
(
string=
"true"
(
assoc-ref
details
"Account.deviceAnnounced"
)))
(
with-mutex
mtx
(
signal-condition-variable
cnd
)
#f
))
(
else
#t
))))
(
when
(
null?
(
account:get-details
this-account-id
))
(
account:add
account-details
this-account-id
))
(
define
(
wait-for-announcement-of
accounts
)
(
if
(
string?
accounts
)
(
wait-for-announcement-of%
(
list
accounts
))
(
wait-for-announcement-of%
accounts
)))
(
with-mutex
mtx
(
wait-condition-variable
cnd
mtx
)))
(
define-public
(
ensure-account
)
(
when
(
null?
(
account:get-details
this-account-id
))
(
account:add
account-details
this-account-id
)))
(
when
(
null?
(
account:get-details
account-id
))
(
account:add
'
((
"Account.type"
.
"RING"
)
(
"Account.displayName"
.
"AGENT"
)
(
"Account.alias"
.
"AGENT"
)
(
"Account.archivePassword"
.
""
)
(
"Account.archivePIN"
.
""
)
(
"Account.archivePath"
.
""
))
account-id
))
(
let
((
details
(
account:get-details
this-account-id
)))
(
fluid-set!
peer-id
(
assoc-ref
details
"Account.username"
))))
(
let
((
result
(
wait-for-announcement-of
account-id
)))
(
display
result
)
(
newline
)
(
unless
(
car
result
)
(
format
#t
"Timeout while waiting for account announcement~%"
)))
(
define*
(
ensure-account
#
:key
(
wait-for-announcement?
#t
))
(
ensure-account%
(
fluid-ref
account-id
)
'
((
"Account.type"
.
"RING"
)
(
"Account.displayName"
.
"AGENT"
)
(
"Account.alias"
.
"AGENT"
)
(
"Account.archivePassword"
.
""
)
(
"Account.archivePIN"
.
""
)
(
"Account.archivePath"
.
""
))
wait-for-announcement?
))
(
let
((
details
(
account:get-details
account-id
)))
(
set!
peer-id
(
assoc-ref
details
"Account.username"
))))
(
define*
(
ensure-account-from-archive
path
#
:key
(
wait-for-announcement?
#t
))
(
ensure-account%
(
fluid-ref
account-id
)
`
((
"Account.type"
.
"RING"
)
(
"Account.displayName"
.
"AGENT"
)
(
"Account.alias"
.
"AGENT"
)
(
"Account.archivePassword"
.
""
)
(
"Account.archivePIN"
.
""
)
(
"Account.archivePath"
.
,
path
))
wait-for-announcement?
))
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