Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-android
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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-client-android
Commits
67817199
Commit
67817199
authored
11 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
* #27362 Updated sflphone module
parent
4aaa10a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
jni/sflphone
+1
-1
1 addition, 1 deletion
jni/sflphone
src/com/savoirfairelinux/sflphone/service/SipService.java
+47
-42
47 additions, 42 deletions
src/com/savoirfairelinux/sflphone/service/SipService.java
with
48 additions
and
43 deletions
sflphone
@
883059f4
Subproject commit
58d5ff4122ebc21d17eadc593164e7f2049890e2
Subproject commit
883059f4c9c603388e1110a164fb17a235ae44d3
This diff is collapsed.
Click to expand it.
src/com/savoirfairelinux/sflphone/service/SipService.java
+
47
−
42
View file @
67817199
...
...
@@ -72,6 +72,7 @@ public class SipService extends Service {
private
SipServiceExecutor
mExecutor
;
private
static
HandlerThread
executorThread
;
private
CallManager
callManagerJNI
;
private
ManagerImpl
managerImpl
;
private
CallManagerCallBack
callManagerCallBack
;
private
ConfigurationManager
configurationManagerJNI
;
private
ConfigurationManagerCallback
configurationManagerCallback
;
...
...
@@ -233,7 +234,7 @@ public class SipService extends Service {
System
.
loadLibrary
(
"speexresampler"
);
System
.
loadLibrary
(
"sflphone"
);
isPjSipStackStarted
=
true
;
Log
.
i
(
TAG
,
"PjSIPStack started"
);
}
catch
(
UnsatisfiedLinkError
e
)
{
Log
.
e
(
TAG
,
"Problem with the current Pj stack..."
,
e
);
isPjSipStackStarted
=
false
;
...
...
@@ -242,7 +243,12 @@ public class SipService extends Service {
Log
.
e
(
TAG
,
"Problem with the current Pj stack..."
,
e
);
}
Log
.
i
(
TAG
,
"PjSIPStack started"
);
managerImpl
=
SFLPhoneservice
.
instance
();
/* set static AppPath before calling manager.init */
// managerImpl.setPath(sflphoneApp.getAppPath());
callManagerJNI
=
new
CallManager
();
callManagerCallBack
=
new
CallManagerCallBack
(
this
);
...
...
@@ -251,8 +257,12 @@ public class SipService extends Service {
configurationManagerJNI
=
new
ConfigurationManager
();
configurationManagerCallback
=
new
ConfigurationManagerCallback
(
this
);
SFLPhoneservice
.
setConfigurationCallbackObject
(
configurationManagerCallback
);
Log
.
i
(
TAG
,
"before init"
);
managerImpl
.
init
(
""
);
Log
.
i
(
TAG
,
"->startPjSipStack"
);
return
;
}
public
HashMap
<
String
,
SipCall
>
getCurrent_calls
()
{
...
...
@@ -338,8 +348,9 @@ public class SipService extends Service {
*
* Implement public interface for the service
*
* **********************************/
* *********************************
*/
private
final
ISipService
.
Stub
mBinder
=
new
ISipService
.
Stub
()
{
@Override
...
...
@@ -767,7 +778,7 @@ public class SipService extends Service {
});
}
@Override
public
boolean
isConferenceParticipant
(
final
String
callID
)
throws
RemoteException
{
class
IsParticipant
extends
SipRunnableWithReturn
{
...
...
@@ -789,27 +800,27 @@ public class SipService extends Service {
@Override
public
HashMap
<
String
,
Conference
>
getConferenceList
()
throws
RemoteException
{
//
class ConfList extends SipRunnableWithReturn {
//
@Override
//
protected StringVect doRun() throws SameThreadException {
//
Log.i(TAG, "SipService.getConferenceList() thread running...");
//
return callManagerJNI.getConferenceList();
//
}
//
}
//
;
//
ConfList runInstance = new ConfList();
//
getExecutor().execute(runInstance);
//
while (!runInstance.isDone()) {
//
// Log.w(TAG, "Waiting for getConferenceList");
//
}
//
StringVect swigvect = (StringVect) runInstance.getVal();
//
//
ArrayList<String> nativelist = new ArrayList<String>();
//
//
for (int i = 0; i < swigvect.size(); i++)
//
nativelist.add(swigvect.get(i));
//
//
return nativelist;
//
class ConfList extends SipRunnableWithReturn {
//
@Override
//
protected StringVect doRun() throws SameThreadException {
//
Log.i(TAG, "SipService.getConferenceList() thread running...");
//
return callManagerJNI.getConferenceList();
//
}
//
}
//
;
//
ConfList runInstance = new ConfList();
//
getExecutor().execute(runInstance);
//
while (!runInstance.isDone()) {
//
// Log.w(TAG, "Waiting for getConferenceList");
//
}
//
StringVect swigvect = (StringVect) runInstance.getVal();
//
//
ArrayList<String> nativelist = new ArrayList<String>();
//
//
for (int i = 0; i < swigvect.size(); i++)
//
nativelist.add(swigvect.get(i));
//
//
return nativelist;
return
current_confs
;
}
...
...
@@ -871,7 +882,7 @@ public class SipService extends Service {
@Override
protected
String
doRun
()
throws
SameThreadException
{
Log
.
i
(
TAG
,
"SipService.getRecordPath() thread running..."
);
//
return configurationManager.getRecordPath();
//
return configurationManager.getRecordPath();
return
""
;
}
}
...
...
@@ -897,7 +908,7 @@ public class SipService extends Service {
});
}
@Override
public
boolean
isRecording
(
final
String
id
)
throws
RemoteException
{
class
IsRecording
extends
SipRunnableWithReturn
{
...
...
@@ -915,9 +926,9 @@ public class SipService extends Service {
}
return
(
Boolean
)
runInstance
.
getVal
();
}
@Override
public
boolean
startRecordedFilePlayback
(
final
String
filepath
)
throws
RemoteException
{
getExecutor
().
execute
(
new
SipRunnable
()
{
...
...
@@ -947,7 +958,7 @@ public class SipService extends Service {
@Override
protected
void
doRun
()
throws
SameThreadException
,
RemoteException
{
Log
.
i
(
TAG
,
"SipService.setRecordingCall() thread running..."
);
//
configurationManagerJNI.setRecordPath(path);
//
configurationManagerJNI.setRecordPath(path);
}
});
}
...
...
@@ -1068,25 +1079,19 @@ public class SipService extends Service {
@Override
public
Conference
getCurrentCall
()
throws
RemoteException
{
for
(
SipCall
i
:
current_calls
.
values
()){
if
(
i
.
isOngoing
()){
for
(
SipCall
i
:
current_calls
.
values
())
{
if
(
i
.
isOngoing
())
{
Conference
tmp
=
new
Conference
(
"-1"
);
tmp
.
getParticipants
().
add
(
i
);
return
tmp
;
}
}
if
(!
current_confs
.
isEmpty
()){
if
(!
current_confs
.
isEmpty
())
{
return
(
Conference
)
current_confs
.
values
().
toArray
()[
0
];
}
return
null
;
}
};
}
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