Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblinphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Board
Labels
Milestones
Merge Requests
21
Merge Requests
21
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
liblinphone
Commits
c69320a1
Commit
c69320a1
authored
Nov 13, 2017
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle sending of conference NOTIFY messages for each device.
parent
fbc23966
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
67 additions
and
66 deletions
+67
-66
local-conference-event-handler-p.h
src/conference/local-conference-event-handler-p.h
+1
-2
local-conference-event-handler.cpp
src/conference/local-conference-event-handler.cpp
+41
-34
participant-device.cpp
src/conference/participant-device.cpp
+13
-0
participant-device.h
src/conference/participant-device.h
+7
-0
participant-p.h
src/conference/participant-p.h
+0
-8
participant.cpp
src/conference/participant.cpp
+5
-22
No files found.
src/conference/local-conference-event-handler-p.h
View file @
c69320a1
...
...
@@ -35,7 +35,6 @@ public:
void
notifyFullState
(
const
std
::
string
&
notify
,
const
std
::
shared_ptr
<
Participant
>
&
participant
);
void
notifyAllExcept
(
const
std
::
string
&
notify
,
const
std
::
shared_ptr
<
Participant
>
&
exceptParticipant
);
void
notifyAll
(
const
std
::
string
&
notify
);
void
notifyParticipant
(
const
std
::
string
&
notify
,
const
std
::
shared_ptr
<
Participant
>
&
participant
);
std
::
string
createNotifyFullState
(
int
notifyId
=
-
1
);
std
::
string
createNotifyParticipantAdded
(
const
Address
&
addr
,
int
notifyId
=
-
1
);
std
::
string
createNotifyParticipantRemoved
(
const
Address
&
addr
,
int
notifyId
=
-
1
);
...
...
@@ -52,7 +51,7 @@ private:
unsigned
int
lastNotify
=
0
;
std
::
string
createNotify
(
Xsd
::
ConferenceInfo
::
ConferenceType
confInfo
,
int
notifyId
=
-
1
,
bool
isFullState
=
false
);
void
sendNotify
(
const
std
::
string
&
notify
,
const
std
::
shared_ptr
<
Participant
>
&
participant
);
void
notifyParticipant
(
const
std
::
string
&
notify
,
const
std
::
shared_ptr
<
Participant
>
&
participant
);
L_DECLARE_PUBLIC
(
LocalConferenceEventHandler
);
};
...
...
src/conference/local-conference-event-handler.cpp
View file @
c69320a1
...
...
@@ -38,13 +38,13 @@ using namespace Xsd::ConferenceInfo;
// -----------------------------------------------------------------------------
void
LocalConferenceEventHandlerPrivate
::
notifyFullState
(
const
string
&
notify
,
const
shared_ptr
<
Participant
>
&
participant
)
{
sendNotify
(
notify
,
participant
);
notifyParticipant
(
notify
,
participant
);
}
void
LocalConferenceEventHandlerPrivate
::
notifyAllExcept
(
const
string
&
notify
,
const
shared_ptr
<
Participant
>
&
exceptParticipant
)
{
for
(
const
auto
&
participant
:
conf
->
getParticipants
())
{
if
(
participant
->
getPrivate
()
->
isSubscribedToConferenceEventPackage
()
&&
(
participant
!=
exceptParticipant
)
)
sendNotify
(
notify
,
participant
);
if
(
participant
!=
exceptParticipant
)
notifyParticipant
(
notify
,
participant
);
}
}
...
...
@@ -54,8 +54,15 @@ void LocalConferenceEventHandlerPrivate::notifyAll (const string ¬ify) {
}
void
LocalConferenceEventHandlerPrivate
::
notifyParticipant
(
const
string
&
notify
,
const
shared_ptr
<
Participant
>
&
participant
)
{
if
(
participant
->
getPrivate
()
->
isSubscribedToConferenceEventPackage
())
sendNotify
(
notify
,
participant
);
for
(
const
auto
&
device
:
participant
->
getPrivate
()
->
getDevices
())
{
if
(
device
->
isSubscribedToConferenceEventPackage
())
{
LinphoneEvent
*
ev
=
device
->
getConferenceSubscribeEvent
();
LinphoneContent
*
content
=
linphone_core_create_content
(
ev
->
lc
);
linphone_content_set_buffer
(
content
,
(
const
uint8_t
*
)
notify
.
c_str
(),
strlen
(
notify
.
c_str
()));
linphone_event_notify
(
ev
,
content
);
linphone_content_unref
(
content
);
}
}
}
string
LocalConferenceEventHandlerPrivate
::
createNotify
(
ConferenceType
confInfo
,
int
notifyId
,
bool
isFullState
)
{
...
...
@@ -235,16 +242,6 @@ string LocalConferenceEventHandlerPrivate::createNotifyParticipantDeviceRemoved
return
createNotify
(
confInfo
,
notifyId
);
}
void
LocalConferenceEventHandlerPrivate
::
sendNotify
(
const
string
&
notify
,
const
shared_ptr
<
Participant
>
&
participant
)
{
LinphoneEvent
*
ev
=
participant
->
getPrivate
()
->
getConferenceSubscribeEvent
();
if
(
!
ev
)
return
;
LinphoneContent
*
content
=
linphone_core_create_content
(
ev
->
lc
);
linphone_content_set_buffer
(
content
,
(
const
uint8_t
*
)
notify
.
c_str
(),
strlen
(
notify
.
c_str
()));
linphone_event_notify
(
ev
,
content
);
linphone_content_unref
(
content
);
}
// =============================================================================
LocalConferenceEventHandler
::
LocalConferenceEventHandler
(
LinphoneCore
*
core
,
LocalConference
*
localConf
)
:
...
...
@@ -268,25 +265,35 @@ void LocalConferenceEventHandler::subscribeReceived (LinphoneEvent *lev) {
char
*
addrStr
=
linphone_address_as_string
(
lAddr
);
shared_ptr
<
Participant
>
participant
=
d
->
conf
->
findParticipant
(
Address
(
addrStr
));
bctbx_free
(
addrStr
);
if
(
participant
)
{
if
(
linphone_event_get_subscription_state
(
lev
)
==
LinphoneSubscriptionActive
)
{
unsigned
int
lastNotify
=
static_cast
<
unsigned
int
>
(
Utils
::
stoi
(
linphone_event_get_custom_header
(
lev
,
"Last-Notify-Version"
)));
if
(
lastNotify
==
0
)
{
lInfo
()
<<
"Sending initial notify of conference:"
<<
d
->
conf
->
getConferenceAddress
().
asStringUriOnly
()
<<
" to: "
<<
addrStr
;
participant
->
getPrivate
()
->
setConferenceSubscribeEvent
(
lev
);
d
->
notifyFullState
(
d
->
createNotifyFullState
(),
participant
);
}
else
if
(
lastNotify
<
d
->
lastNotify
)
{
lInfo
()
<<
"Sending all missed notify for conference:"
<<
d
->
conf
->
getConferenceAddress
().
asStringUriOnly
()
<<
" from: "
<<
lastNotify
<<
" to: "
<<
addrStr
;
// TODO : send all missed notify from lastNotify to d->lastNotify
}
else
if
(
lastNotify
>
d
->
lastNotify
)
{
lError
()
<<
"last notify received by client: ["
<<
lastNotify
<<
"] for confernce:"
<<
d
->
conf
->
getConferenceAddress
().
asStringUriOnly
()
<<
" should not be higher than last notify sent by server: ["
<<
d
->
lastNotify
<<
"]."
;
}
}
else
if
(
linphone_event_get_subscription_state
(
lev
)
==
LinphoneSubscriptionTerminated
)
participant
->
getPrivate
()
->
setConferenceSubscribeEvent
(
nullptr
);
}
if
(
!
participant
)
return
;
const
LinphoneAddress
*
lContactAddr
=
linphone_event_get_remote_contact
(
lev
);
char
*
contactAddrStr
=
linphone_address_as_string
(
lContactAddr
);
Address
contactAddr
(
contactAddrStr
);
bctbx_free
(
contactAddrStr
);
if
(
contactAddr
.
getUriParamValue
(
"gr"
).
empty
())
return
;
GruuAddress
gruu
(
contactAddr
);
shared_ptr
<
ParticipantDevice
>
device
=
participant
->
getPrivate
()
->
addDevice
(
gruu
);
if
(
linphone_event_get_subscription_state
(
lev
)
==
LinphoneSubscriptionActive
)
{
unsigned
int
lastNotify
=
static_cast
<
unsigned
int
>
(
Utils
::
stoi
(
linphone_event_get_custom_header
(
lev
,
"Last-Notify-Version"
)));
if
(
lastNotify
==
0
)
{
lInfo
()
<<
"Sending initial notify of conference:"
<<
d
->
conf
->
getConferenceAddress
().
asStringUriOnly
()
<<
" to: "
<<
participant
->
getAddress
().
asString
();
device
->
setConferenceSubscribeEvent
(
lev
);
d
->
notifyFullState
(
d
->
createNotifyFullState
(),
participant
);
}
else
if
(
lastNotify
<
d
->
lastNotify
)
{
lInfo
()
<<
"Sending all missed notify for conference:"
<<
d
->
conf
->
getConferenceAddress
().
asStringUriOnly
()
<<
" from: "
<<
lastNotify
<<
" to: "
<<
participant
->
getAddress
().
asString
();
// TODO : send all missed notify from lastNotify to d->lastNotify
}
else
if
(
lastNotify
>
d
->
lastNotify
)
{
lError
()
<<
"last notify received by client: ["
<<
lastNotify
<<
"] for conference:"
<<
d
->
conf
->
getConferenceAddress
().
asStringUriOnly
()
<<
" should not be higher than last notify sent by server: ["
<<
d
->
lastNotify
<<
"]"
;
}
}
else
if
(
linphone_event_get_subscription_state
(
lev
)
==
LinphoneSubscriptionTerminated
)
device
->
setConferenceSubscribeEvent
(
nullptr
);
}
void
LocalConferenceEventHandler
::
notifyParticipantAdded
(
const
Address
&
addr
)
{
...
...
src/conference/participant-device.cpp
View file @
c69320a1
...
...
@@ -19,6 +19,8 @@
#include "participant-device.h"
#include "linphone/event.h"
using
namespace
std
;
// =============================================================================
...
...
@@ -31,8 +33,19 @@ ParticipantDevice::ParticipantDevice (const GruuAddress &gruu) {
mGruu
=
gruu
;
}
ParticipantDevice
::~
ParticipantDevice
()
{
if
(
mConferenceSubscribeEvent
)
linphone_event_unref
(
mConferenceSubscribeEvent
);
}
bool
ParticipantDevice
::
operator
==
(
const
ParticipantDevice
&
device
)
const
{
return
(
mGruu
==
device
.
getGruu
());
}
void
ParticipantDevice
::
setConferenceSubscribeEvent
(
LinphoneEvent
*
ev
)
{
if
(
mConferenceSubscribeEvent
)
linphone_event_unref
(
mConferenceSubscribeEvent
);
mConferenceSubscribeEvent
=
linphone_event_ref
(
ev
);
}
LINPHONE_END_NAMESPACE
src/conference/participant-device.h
View file @
c69320a1
...
...
@@ -24,6 +24,7 @@
#include <string>
#include "address/gruu-address.h"
#include "linphone/types.h"
#include "linphone/utils/general.h"
// =============================================================================
...
...
@@ -36,6 +37,7 @@ class ParticipantDevice {
public
:
ParticipantDevice
();
explicit
ParticipantDevice
(
const
GruuAddress
&
gruu
);
virtual
~
ParticipantDevice
();
bool
operator
==
(
const
ParticipantDevice
&
device
)
const
;
...
...
@@ -43,11 +45,16 @@ public:
inline
std
::
shared_ptr
<
CallSession
>
getSession
()
const
{
return
mSession
;
}
inline
void
setSession
(
std
::
shared_ptr
<
CallSession
>
session
)
{
mSession
=
session
;
}
inline
bool
isSubscribedToConferenceEventPackage
()
const
{
return
mConferenceSubscribeEvent
!=
nullptr
;
}
LinphoneEvent
*
getConferenceSubscribeEvent
()
const
{
return
mConferenceSubscribeEvent
;
}
void
setConferenceSubscribeEvent
(
LinphoneEvent
*
ev
);
bool
isValid
()
const
{
return
mGruu
.
isValid
();
}
private
:
GruuAddress
mGruu
;
std
::
shared_ptr
<
CallSession
>
mSession
;
LinphoneEvent
*
mConferenceSubscribeEvent
=
nullptr
;
};
LINPHONE_END_NAMESPACE
...
...
src/conference/participant-p.h
View file @
c69320a1
...
...
@@ -29,21 +29,14 @@
#include "conference/session/call-session-listener.h"
#include "conference/params/call-session-params.h"
#include "linphone/types.h"
// =============================================================================
LINPHONE_BEGIN_NAMESPACE
class
ParticipantPrivate
:
public
ObjectPrivate
{
public
:
virtual
~
ParticipantPrivate
();
std
::
shared_ptr
<
CallSession
>
createSession
(
const
Conference
&
conference
,
const
CallSessionParams
*
params
,
bool
hasMedia
,
CallSessionListener
*
listener
);
inline
std
::
shared_ptr
<
CallSession
>
getSession
()
const
{
return
session
;
}
inline
bool
isSubscribedToConferenceEventPackage
()
const
{
return
conferenceSubscribeEvent
!=
nullptr
;
}
LinphoneEvent
*
getConferenceSubscribeEvent
()
const
{
return
conferenceSubscribeEvent
;
}
void
setConferenceSubscribeEvent
(
LinphoneEvent
*
ev
);
inline
void
removeSession
()
{
session
.
reset
();
}
inline
void
setAddress
(
const
SimpleAddress
&
newAddr
)
{
addr
=
newAddr
;
}
inline
void
setAdmin
(
bool
isAdmin
)
{
this
->
isAdmin
=
isAdmin
;
}
...
...
@@ -58,7 +51,6 @@ private:
SimpleAddress
addr
;
Address
contactAddr
;
bool
isAdmin
=
false
;
LinphoneEvent
*
conferenceSubscribeEvent
=
nullptr
;
std
::
shared_ptr
<
CallSession
>
session
;
std
::
list
<
std
::
shared_ptr
<
ParticipantDevice
>>
devices
;
...
...
src/conference/participant.cpp
View file @
c69320a1
...
...
@@ -26,21 +26,12 @@
#include "params/media-session-params.h"
#include "session/media-session.h"
#include "linphone/event.h"
using
namespace
std
;
LINPHONE_BEGIN_NAMESPACE
// =============================================================================
ParticipantPrivate
::~
ParticipantPrivate
()
{
if
(
conferenceSubscribeEvent
)
linphone_event_unref
(
conferenceSubscribeEvent
);
}
// -----------------------------------------------------------------------------
shared_ptr
<
CallSession
>
ParticipantPrivate
::
createSession
(
const
Conference
&
conference
,
const
CallSessionParams
*
params
,
bool
hasMedia
,
CallSessionListener
*
listener
)
{
...
...
@@ -54,14 +45,6 @@ shared_ptr<CallSession> ParticipantPrivate::createSession (
// -----------------------------------------------------------------------------
void
ParticipantPrivate
::
setConferenceSubscribeEvent
(
LinphoneEvent
*
ev
)
{
if
(
conferenceSubscribeEvent
)
linphone_event_unref
(
conferenceSubscribeEvent
);
conferenceSubscribeEvent
=
linphone_event_ref
(
ev
);
}
// -----------------------------------------------------------------------------
shared_ptr
<
ParticipantDevice
>
ParticipantPrivate
::
findDevice
(
const
GruuAddress
&
gruu
)
const
{
for
(
const
auto
&
device
:
devices
)
{
if
(
device
->
getGruu
()
==
gruu
)
...
...
@@ -83,12 +66,12 @@ const list<shared_ptr<ParticipantDevice>> &ParticipantPrivate::getDevices () con
}
shared_ptr
<
ParticipantDevice
>
ParticipantPrivate
::
addDevice
(
const
GruuAddress
&
gruu
)
{
if
(
!
findDevice
(
gruu
))
{
shared_ptr
<
ParticipantDevice
>
device
=
make_shared
<
ParticipantDevice
>
(
gruu
);
devices
.
push_back
(
device
);
shared_ptr
<
ParticipantDevice
>
device
=
findDevice
(
gruu
);
if
(
device
)
return
device
;
}
return
nullptr
;
device
=
make_shared
<
ParticipantDevice
>
(
gruu
);
devices
.
push_back
(
device
);
return
device
;
}
void
ParticipantPrivate
::
removeDevice
(
const
GruuAddress
&
gruu
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment