]> sjero.net Git - linphone/blob - coreapi/linphonecore_jni.cc
add conference recording API.
[linphone] / coreapi / linphonecore_jni.cc
1 /*
2 linphonecore_jni.cc
3 Copyright (C) 2010  Belledonne Communications, Grenoble, France
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18  */
19 #include <jni.h>
20 #ifdef USE_JAVAH
21 #include "linphonecore_jni.h"
22 #endif
23 #include "linphonecore_utils.h"
24 #include <ortp/zrtp.h>
25
26
27 extern "C" {
28 #include "mediastreamer2/mediastream.h"
29 }
30 #include "mediastreamer2/msjava.h"
31 #include "private.h"
32 #include <cpu-features.h>
33
34 #include "lpconfig.h"
35
36 #ifdef ANDROID
37 #include <android/log.h>
38 extern "C" void libmsilbc_init();
39 #ifdef HAVE_X264
40 extern "C" void libmsx264_init();
41 #endif
42 #ifdef HAVE_AMR
43 extern "C" void libmsamr_init();
44 #endif
45 #ifdef HAVE_SILK
46 extern "C" void libmssilk_init();
47 #endif
48 #ifdef HAVE_G729
49 extern "C" void libmsbcg729_init();
50 #endif
51 #endif /*ANDROID*/
52
53 static JavaVM *jvm=0;
54 static const char* LogDomain = "Linphone";
55
56 #ifdef ANDROID
57 void linphone_android_log_handler(int prio, const char *fmt, va_list args) {
58         char str[4096];
59         char *current;
60         char *next;
61
62         vsnprintf(str, sizeof(str) - 1, fmt, args);
63         str[sizeof(str) - 1] = '\0';
64         if (strlen(str) < 512) {
65                 __android_log_write(prio, LogDomain, str);
66         } else {
67                 current = str;
68                 while ((next = strchr(current, '\n')) != NULL) {
69                         *next = '\0';
70                         __android_log_write(prio, LogDomain, current);
71                         current = next + 1;
72                 }
73                 __android_log_write(prio, LogDomain, current);
74         }
75 }
76
77 static void linphone_android_ortp_log_handler(OrtpLogLevel lev, const char *fmt, va_list args) {
78         int prio;
79         switch(lev){
80         case ORTP_DEBUG:        prio = ANDROID_LOG_DEBUG;       break;
81         case ORTP_MESSAGE:      prio = ANDROID_LOG_INFO;        break;
82         case ORTP_WARNING:      prio = ANDROID_LOG_WARN;        break;
83         case ORTP_ERROR:        prio = ANDROID_LOG_ERROR;       break;
84         case ORTP_FATAL:        prio = ANDROID_LOG_FATAL;       break;
85         default:                prio = ANDROID_LOG_DEFAULT;     break;
86         }
87         linphone_android_log_handler(prio, fmt, args);
88 }
89
90 int dumbMethodForAllowingUsageOfCpuFeaturesFromStaticLibMediastream() {
91         return (android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM && (android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON) != 0);
92 }
93 #endif /*ANDROID*/
94
95 JNIEXPORT jint JNICALL  JNI_OnLoad(JavaVM *ajvm, void *reserved)
96 {
97 #ifdef ANDROID
98         ms_set_jvm(ajvm);
99 #endif /*ANDROID*/
100         jvm=ajvm;
101         return JNI_VERSION_1_2;
102 }
103
104
105 //LinphoneFactory
106 extern "C" void Java_org_linphone_core_LinphoneCoreFactoryImpl_setDebugMode(JNIEnv*  env
107                 ,jobject  thiz
108                 ,jboolean isDebug
109                 ,jstring  jdebugTag) {
110         if (isDebug) {
111                 LogDomain = env->GetStringUTFChars(jdebugTag, NULL);
112                 linphone_core_enable_logs_with_cb(linphone_android_ortp_log_handler);
113         } else {
114                 linphone_core_disable_logs();
115         }
116 }
117 // LinphoneCore
118
119 class LinphoneCoreData {
120 public:
121         LinphoneCoreData(JNIEnv*  env, jobject lc,jobject alistener, jobject auserdata) {
122
123                 core = env->NewGlobalRef(lc);
124                 listener = env->NewGlobalRef(alistener);
125                 userdata = auserdata?env->NewGlobalRef(auserdata):0;
126                 memset(&vTable,0,sizeof(vTable));
127                 vTable.show = showInterfaceCb;
128                 vTable.auth_info_requested = authInfoRequested;
129                 vTable.display_status = displayStatusCb;
130                 vTable.display_message = displayMessageCb;
131                 vTable.display_warning = displayMessageCb;
132                 vTable.global_state_changed = globalStateChange;
133                 vTable.registration_state_changed = registrationStateChange;
134                 vTable.call_state_changed = callStateChange;
135                 vTable.call_encryption_changed = callEncryptionChange;
136                 vTable.text_received = text_received;
137                 vTable.message_received = message_received;
138                 vTable.dtmf_received = dtmf_received;
139                 vTable.new_subscription_request = new_subscription_request;
140                 vTable.notify_presence_recv = notify_presence_recv;
141                 vTable.call_stats_updated = callStatsUpdated;
142
143                 listenerClass = (jclass)env->NewGlobalRef(env->GetObjectClass( alistener));
144
145                 /*displayStatus(LinphoneCore lc,String message);*/
146                 displayStatusId = env->GetMethodID(listenerClass,"displayStatus","(Lorg/linphone/core/LinphoneCore;Ljava/lang/String;)V");
147
148                 /*void generalState(LinphoneCore lc,int state); */
149                 globalStateId = env->GetMethodID(listenerClass,"globalState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCore$GlobalState;Ljava/lang/String;)V");
150                 globalStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$GlobalState"));
151                 globalStateFromIntId = env->GetStaticMethodID(globalStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$GlobalState;");
152
153                 /*registrationState(LinphoneCore lc, LinphoneProxyConfig cfg, LinphoneCore.RegistrationState cstate, String smessage);*/
154                 registrationStateId = env->GetMethodID(listenerClass,"registrationState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneProxyConfig;Lorg/linphone/core/LinphoneCore$RegistrationState;Ljava/lang/String;)V");
155                 registrationStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$RegistrationState"));
156                 registrationStateFromIntId = env->GetStaticMethodID(registrationStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$RegistrationState;");
157
158                 /*callState(LinphoneCore lc, LinphoneCall call, LinphoneCall.State cstate,String message);*/
159                 callStateId = env->GetMethodID(listenerClass,"callState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;Lorg/linphone/core/LinphoneCall$State;Ljava/lang/String;)V");
160                 callStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCall$State"));
161                 callStateFromIntId = env->GetStaticMethodID(callStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCall$State;");
162
163                 /*callStatsUpdated(LinphoneCore lc, LinphoneCall call, LinphoneCallStats stats);*/
164                 callStatsUpdatedId = env->GetMethodID(listenerClass, "callStatsUpdated", "(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;Lorg/linphone/core/LinphoneCallStats;)V");
165
166                 chatMessageStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneChatMessage$State"));
167                 chatMessageStateFromIntId = env->GetStaticMethodID(chatMessageStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneChatMessage$State;");
168
169                 /*callEncryption(LinphoneCore lc, LinphoneCall call, boolean encrypted,String auth_token);*/
170                 callEncryptionChangedId=env->GetMethodID(listenerClass,"callEncryptionChanged","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;ZLjava/lang/String;)V");
171
172                 /*void ecCalibrationStatus(LinphoneCore.EcCalibratorStatus status, int delay_ms, Object data);*/
173                 ecCalibrationStatusId = env->GetMethodID(listenerClass,"ecCalibrationStatus","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCore$EcCalibratorStatus;ILjava/lang/Object;)V");
174                 ecCalibratorStatusClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$EcCalibratorStatus"));
175                 ecCalibratorStatusFromIntId = env->GetStaticMethodID(ecCalibratorStatusClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$EcCalibratorStatus;");
176
177                 /*void newSubscriptionRequest(LinphoneCore lc, LinphoneFriend lf, String url)*/
178                 newSubscriptionRequestId = env->GetMethodID(listenerClass,"newSubscriptionRequest","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneFriend;Ljava/lang/String;)V");
179
180                 /*void notifyPresenceReceived(LinphoneCore lc, LinphoneFriend lf);*/
181                 notifyPresenceReceivedId = env->GetMethodID(listenerClass,"notifyPresenceReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneFriend;)V");
182
183                 /*void textReceived(LinphoneCore lc, LinphoneChatRoom cr,LinphoneAddress from,String message);*/
184                 textReceivedId = env->GetMethodID(listenerClass,"textReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneChatRoom;Lorg/linphone/core/LinphoneAddress;Ljava/lang/String;)V");
185                 messageReceivedId = env->GetMethodID(listenerClass,"messageReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneChatRoom;Lorg/linphone/core/LinphoneChatMessage;)V");
186                 dtmfReceivedId = env->GetMethodID(listenerClass,"dtmfReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;I)V");
187
188                 proxyClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneProxyConfigImpl"));
189                 proxyCtrId = env->GetMethodID(proxyClass,"<init>", "(J)V");
190
191                 callClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCallImpl"));
192                 callCtrId = env->GetMethodID(callClass,"<init>", "(J)V");
193
194                 chatMessageClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneChatMessageImpl"));
195                 if (chatMessageClass) chatMessageCtrId = env->GetMethodID(chatMessageClass,"<init>", "(J)V");
196
197                 chatRoomClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneChatRoomImpl"));
198                 chatRoomCtrId = env->GetMethodID(chatRoomClass,"<init>", "(J)V");
199
200                 friendClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneFriendImpl"));;
201                 friendCtrId =env->GetMethodID(friendClass,"<init>", "(J)V");
202
203                 addressClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneAddressImpl"));
204                 addressCtrId =env->GetMethodID(addressClass,"<init>", "(J)V");
205
206                 callStatsClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCallStatsImpl"));
207                 callStatsId = env->GetMethodID(callStatsClass, "<init>", "(JJ)V");
208                 callSetAudioStatsId = env->GetMethodID(callClass, "setAudioStats", "(Lorg/linphone/core/LinphoneCallStats;)V");
209                 callSetVideoStatsId = env->GetMethodID(callClass, "setVideoStats", "(Lorg/linphone/core/LinphoneCallStats;)V");
210         }
211
212         ~LinphoneCoreData() {
213                 JNIEnv *env = 0;
214                 jvm->AttachCurrentThread(&env,NULL);
215                 env->DeleteGlobalRef(core);
216                 env->DeleteGlobalRef(listener);
217                 if (userdata) env->DeleteGlobalRef(userdata);
218                 env->DeleteGlobalRef(listenerClass);
219                 env->DeleteGlobalRef(globalStateClass);
220                 env->DeleteGlobalRef(registrationStateClass);
221                 env->DeleteGlobalRef(callStateClass);
222                 env->DeleteGlobalRef(callStatsClass);
223                 env->DeleteGlobalRef(chatMessageStateClass);
224                 env->DeleteGlobalRef(proxyClass);
225                 env->DeleteGlobalRef(callClass);
226                 env->DeleteGlobalRef(chatMessageClass);
227                 env->DeleteGlobalRef(chatRoomClass);
228                 env->DeleteGlobalRef(friendClass);
229
230         }
231         jobject core;
232         jobject listener;
233         jobject userdata;
234
235         jclass listenerClass;
236         jmethodID displayStatusId;
237         jmethodID newSubscriptionRequestId;
238         jmethodID notifyPresenceReceivedId;
239         jmethodID textReceivedId;
240         jmethodID messageReceivedId;
241         jmethodID dtmfReceivedId;
242         jmethodID callStatsUpdatedId;
243
244         jclass globalStateClass;
245         jmethodID globalStateId;
246         jmethodID globalStateFromIntId;
247
248         jclass registrationStateClass;
249         jmethodID registrationStateId;
250         jmethodID registrationStateFromIntId;
251
252         jclass callStateClass;
253         jmethodID callStateId;
254         jmethodID callStateFromIntId;
255
256         jclass callStatsClass;
257         jmethodID callStatsId;
258         jmethodID callSetAudioStatsId;
259         jmethodID callSetVideoStatsId;
260
261         jclass chatMessageStateClass;
262         jmethodID chatMessageStateFromIntId;
263
264         jmethodID callEncryptionChangedId;
265
266         jclass ecCalibratorStatusClass;
267         jmethodID ecCalibrationStatusId;
268         jmethodID ecCalibratorStatusFromIntId;
269
270         jclass proxyClass;
271         jmethodID proxyCtrId;
272
273         jclass callClass;
274         jmethodID callCtrId;
275
276         jclass chatMessageClass;
277         jmethodID chatMessageCtrId;
278
279         jclass chatRoomClass;
280         jmethodID chatRoomCtrId;
281
282         jclass friendClass;
283         jmethodID friendCtrId;
284
285         jclass addressClass;
286         jmethodID addressCtrId;
287
288         LinphoneCoreVTable vTable;
289
290         static void showInterfaceCb(LinphoneCore *lc) {
291
292         }
293         static void byeReceivedCb(LinphoneCore *lc, const char *from) {
294
295         }
296         static void displayStatusCb(LinphoneCore *lc, const char *message) {
297                 JNIEnv *env = 0;
298                 jint result = jvm->AttachCurrentThread(&env,NULL);
299                 if (result != 0) {
300                         ms_error("cannot attach VM\n");
301                         return;
302                 }
303                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
304                 env->CallVoidMethod(lcData->listener,lcData->displayStatusId,lcData->core,message ? env->NewStringUTF(message) : NULL);
305         }
306         static void displayMessageCb(LinphoneCore *lc, const char *message) {
307
308         }
309         static void authInfoRequested(LinphoneCore *lc, const char *realm, const char *username) {
310
311         }
312         static void globalStateChange(LinphoneCore *lc, LinphoneGlobalState gstate,const char* message) {
313                 JNIEnv *env = 0;
314                 jint result = jvm->AttachCurrentThread(&env,NULL);
315                 if (result != 0) {
316                         ms_error("cannot attach VM\n");
317                         return;
318                 }
319                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
320                 env->CallVoidMethod(lcData->listener
321                                                         ,lcData->globalStateId
322                                                         ,lcData->core
323                                                         ,env->CallStaticObjectMethod(lcData->globalStateClass,lcData->globalStateFromIntId,(jint)gstate),
324                                                         message ? env->NewStringUTF(message) : NULL);
325         }
326         static void registrationStateChange(LinphoneCore *lc, LinphoneProxyConfig* proxy,LinphoneRegistrationState state,const char* message) {
327                 JNIEnv *env = 0;
328                 jint result = jvm->AttachCurrentThread(&env,NULL);
329                 if (result != 0) {
330                         ms_error("cannot attach VM\n");
331                         return;
332                 }
333                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
334                 env->CallVoidMethod(lcData->listener
335                                                         ,lcData->registrationStateId
336                                                         ,lcData->core
337                                                         ,env->NewObject(lcData->proxyClass,lcData->proxyCtrId,(jlong)proxy)
338                                                         ,env->CallStaticObjectMethod(lcData->registrationStateClass,lcData->registrationStateFromIntId,(jint)state),
339                                                         message ? env->NewStringUTF(message) : NULL);
340         }
341         jobject getCall(JNIEnv *env , LinphoneCall *call){
342                 jobject jobj=0;
343
344                 if (call!=NULL){
345                         void *up=linphone_call_get_user_pointer(call);
346                         
347                         if (up==NULL){
348                                 jobj=env->NewObject(callClass,callCtrId,(jlong)call);
349                                 jobj=env->NewGlobalRef(jobj);
350                                 linphone_call_set_user_pointer(call,(void*)jobj);
351                                 linphone_call_ref(call);
352                         }else{
353                                 jobj=(jobject)up;
354                         }
355                 }
356                 return jobj;
357         }
358
359         static void callStateChange(LinphoneCore *lc, LinphoneCall* call,LinphoneCallState state,const char* message) {
360                 JNIEnv *env = 0;
361                 jint result = jvm->AttachCurrentThread(&env,NULL);
362                 jobject jcall;
363                 if (result != 0) {
364                         ms_error("cannot attach VM\n");
365                         return;
366                 }
367                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
368                 env->CallVoidMethod(lcData->listener
369                                                         ,lcData->callStateId
370                                                         ,lcData->core
371                                                         ,(jcall=lcData->getCall(env,call))
372                                                         ,env->CallStaticObjectMethod(lcData->callStateClass,lcData->callStateFromIntId,(jint)state),
373                                                         message ? env->NewStringUTF(message) : NULL);
374                 if (state==LinphoneCallReleased){
375                         linphone_call_set_user_pointer(call,NULL);
376                         env->DeleteGlobalRef(jcall);
377                 }
378         }
379         static void callEncryptionChange(LinphoneCore *lc, LinphoneCall* call, bool_t encrypted,const char* authentication_token) {
380                 JNIEnv *env = 0;
381                 jint result = jvm->AttachCurrentThread(&env,NULL);
382                 if (result != 0) {
383                         ms_error("cannot attach VM\n");
384                         return;
385                 }
386                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
387                 env->CallVoidMethod(lcData->listener
388                                                         ,lcData->callEncryptionChangedId
389                                                         ,lcData->core
390                                                         ,lcData->getCall(env,call)
391                                                         ,encrypted
392                                                         ,authentication_token ? env->NewStringUTF(authentication_token) : NULL);
393         }
394         static void notify_presence_recv (LinphoneCore *lc,  LinphoneFriend *my_friend) {
395                 JNIEnv *env = 0;
396                 jint result = jvm->AttachCurrentThread(&env,NULL);
397                 if (result != 0) {
398                         ms_error("cannot attach VM\n");
399                         return;
400                 }
401                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
402                 env->CallVoidMethod(lcData->listener
403                                                         ,lcData->notifyPresenceReceivedId
404                                                         ,lcData->core
405                                                         ,env->NewObject(lcData->friendClass,lcData->friendCtrId,(jlong)my_friend));
406         }
407         static void new_subscription_request (LinphoneCore *lc,  LinphoneFriend *my_friend, const char* url) {
408                 JNIEnv *env = 0;
409                 jint result = jvm->AttachCurrentThread(&env,NULL);
410                 if (result != 0) {
411                         ms_error("cannot attach VM\n");
412                         return;
413                 }
414                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
415                 env->CallVoidMethod(lcData->listener
416                                                         ,lcData->newSubscriptionRequestId
417                                                         ,lcData->core
418                                                         ,env->NewObject(lcData->friendClass,lcData->friendCtrId,(jlong)my_friend)
419                                                         ,url ? env->NewStringUTF(url) : NULL);
420         }
421         static void dtmf_received(LinphoneCore *lc, LinphoneCall *call, int dtmf) {
422                 JNIEnv *env = 0;
423                 jint result = jvm->AttachCurrentThread(&env,NULL);
424                 if (result != 0) {
425                         ms_error("cannot attach VM\n");
426                         return;
427                 }
428                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
429                 env->CallVoidMethod(lcData->listener
430                                                         ,lcData->dtmfReceivedId
431                                                         ,lcData->core
432                                                         ,lcData->getCall(env,call)
433                                                         ,dtmf);
434         }
435         static void text_received(LinphoneCore *lc, LinphoneChatRoom *room, const LinphoneAddress *from, const char *message) {
436                 JNIEnv *env = 0;
437                 jint result = jvm->AttachCurrentThread(&env,NULL);
438                 if (result != 0) {
439                         ms_error("cannot attach VM\n");
440                         return;
441                 }
442                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
443                 env->CallVoidMethod(lcData->listener
444                                                         ,lcData->textReceivedId
445                                                         ,lcData->core
446                                                         ,env->NewObject(lcData->chatRoomClass,lcData->chatRoomCtrId,(jlong)room)
447                                                         ,env->NewObject(lcData->addressClass,lcData->addressCtrId,(jlong)from)
448                                                         ,message ? env->NewStringUTF(message) : NULL);
449         }
450         static void message_received(LinphoneCore *lc, LinphoneChatRoom *room, LinphoneChatMessage *msg) {
451                         JNIEnv *env = 0;
452                         jint result = jvm->AttachCurrentThread(&env,NULL);
453                         if (result != 0) {
454                                 ms_error("cannot attach VM\n");
455                                 return;
456                         }
457                         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
458                         env->CallVoidMethod(lcData->listener
459                                                                 ,lcData->messageReceivedId
460                                                                 ,lcData->core
461                                                                 ,env->NewObject(lcData->chatRoomClass,lcData->chatRoomCtrId,(jlong)room)
462                                                                 ,env->NewObject(lcData->chatMessageClass,lcData->chatMessageCtrId,(jlong)msg));
463                 }
464         static void ecCalibrationStatus(LinphoneCore *lc, LinphoneEcCalibratorStatus status, int delay_ms, void *data) {
465                 JNIEnv *env = 0;
466                 jint result = jvm->AttachCurrentThread(&env,NULL);
467                 if (result != 0) {
468                         ms_error("cannot attach VM\n");
469                         return;
470                 }
471                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
472                 env->CallVoidMethod(lcData->listener
473                                                         ,lcData->ecCalibrationStatusId
474                                                         ,lcData->core
475                                                         ,env->CallStaticObjectMethod(lcData->ecCalibratorStatusClass,lcData->ecCalibratorStatusFromIntId,(jint)status)
476                                                         ,delay_ms
477                                                         ,data ? data : NULL);
478                 if (data != NULL &&status !=LinphoneEcCalibratorInProgress ) {
479                         //final state, releasing global ref
480                         env->DeleteGlobalRef((jobject)data);
481                 }
482
483         }
484         static void callStatsUpdated(LinphoneCore *lc, LinphoneCall* call, const LinphoneCallStats *stats) {
485                 JNIEnv *env = 0;
486                 jobject statsobj;
487                 jobject callobj;
488                 jint result = jvm->AttachCurrentThread(&env,NULL);
489                 if (result != 0) {
490                         ms_error("cannot attach VM\n");
491                         return;
492                 }
493                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
494                 statsobj = env->NewObject(lcData->callStatsClass, lcData->callStatsId, (jlong)call, (jlong)stats);
495                 callobj = lcData->getCall(env, call);
496                 if (stats->type == LINPHONE_CALL_STATS_AUDIO)
497                         env->CallVoidMethod(callobj, lcData->callSetAudioStatsId, statsobj);
498                 else
499                         env->CallVoidMethod(callobj, lcData->callSetVideoStatsId, statsobj);
500                 env->CallVoidMethod(lcData->listener, lcData->callStatsUpdatedId, lcData->core, callobj, statsobj);
501         }
502
503
504 };
505 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_newLinphoneCore(JNIEnv*  env
506                 ,jobject  thiz
507                 ,jobject jlistener
508                 ,jstring juserConfig
509                 ,jstring jfactoryConfig
510                 ,jobject  juserdata){
511
512         const char* userConfig = juserConfig?env->GetStringUTFChars(juserConfig, NULL):NULL;
513         const char* factoryConfig = jfactoryConfig?env->GetStringUTFChars(jfactoryConfig, NULL):NULL;
514         LinphoneCoreData* ldata = new LinphoneCoreData(env,thiz,jlistener,juserdata);
515
516 #ifdef HAVE_ILBC
517         libmsilbc_init(); // requires an fpu
518 #endif
519 #ifdef HAVE_X264
520         libmsx264_init();
521 #endif
522 #ifdef HAVE_AMR
523         libmsamr_init();
524 #endif
525 #ifdef HAVE_SILK
526         libmssilk_init();
527 #endif
528 #ifdef HAVE_G729
529         libmsbcg729_init();
530 #endif
531         jlong nativePtr = (jlong)linphone_core_new(     &ldata->vTable
532                         ,userConfig
533                         ,factoryConfig
534                         ,ldata);
535
536         if (userConfig) env->ReleaseStringUTFChars(juserConfig, userConfig);
537         if (factoryConfig) env->ReleaseStringUTFChars(jfactoryConfig, factoryConfig);
538         return nativePtr;
539 }
540 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_delete(JNIEnv*  env
541                 ,jobject  thiz
542                 ,jlong lc) {
543         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
544         linphone_core_destroy((LinphoneCore*)lc);
545         delete lcData;
546 }
547
548 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPrimaryContact(JNIEnv* env, jobject  thiz, jlong lc, jstring jdisplayname, jstring jusername) {
549         const char* displayname = env->GetStringUTFChars(jdisplayname, NULL);
550         const char* username = env->GetStringUTFChars(jusername, NULL);
551
552         LinphoneAddress *parsed = linphone_core_get_primary_contact_parsed((LinphoneCore*)lc);
553     if (parsed != NULL) {
554         linphone_address_set_display_name(parsed, displayname);
555         linphone_address_set_username(parsed, username);
556         char *contact = linphone_address_as_string(parsed);
557                 linphone_core_set_primary_contact((LinphoneCore*)lc, contact);
558         }
559
560         env->ReleaseStringUTFChars(jdisplayname, displayname);
561         env->ReleaseStringUTFChars(jusername, username);
562 }
563
564 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_clearProxyConfigs(JNIEnv* env, jobject thiz,jlong lc) {
565         linphone_core_clear_proxy_config((LinphoneCore*)lc);
566 }
567
568 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDefaultProxyConfig(  JNIEnv*  env
569                 ,jobject  thiz
570                 ,jlong lc
571                 ,jlong pc) {
572         linphone_core_set_default_proxy((LinphoneCore*)lc,(LinphoneProxyConfig*)pc);
573 }
574 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getDefaultProxyConfig( JNIEnv*  env
575                 ,jobject  thiz
576                 ,jlong lc) {
577         LinphoneProxyConfig *config=0;
578         linphone_core_get_default_proxy((LinphoneCore*)lc,&config);
579         return (jlong)config;
580 }
581
582 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_getProxyConfigList(JNIEnv* env, jobject thiz, jlong lc) {
583         const MSList* proxies = linphone_core_get_proxy_config_list((LinphoneCore*)lc);
584         int proxyCount = ms_list_size(proxies);
585         jlongArray jProxies = env->NewLongArray(proxyCount);
586         jlong *jInternalArray = env->GetLongArrayElements(jProxies, NULL);
587
588         for (int i = 0; i < proxyCount; i++ ) {
589                 jInternalArray[i] = (unsigned long) (proxies->data);
590                 proxies = proxies->next;
591         }
592
593         env->ReleaseLongArrayElements(jProxies, jInternalArray, 0);
594
595         return jProxies;
596 }
597
598 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_addProxyConfig( JNIEnv*  env
599                 ,jobject  thiz
600                 ,jobject jproxyCfg
601                 ,jlong lc
602                 ,jlong pc) {
603         LinphoneProxyConfig* proxy = (LinphoneProxyConfig*)pc;
604         linphone_proxy_config_set_user_data(proxy, env->NewGlobalRef(jproxyCfg));
605
606         return (jint)linphone_core_add_proxy_config((LinphoneCore*)lc,(LinphoneProxyConfig*)pc);
607 }
608
609 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_clearAuthInfos(JNIEnv* env, jobject thiz,jlong lc) {
610         linphone_core_clear_all_auth_info((LinphoneCore*)lc);
611 }
612
613 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_refreshRegisters(JNIEnv* env, jobject thiz,jlong lc) {
614         linphone_core_refresh_registers((LinphoneCore*)lc);
615 }
616
617 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAuthInfo(    JNIEnv*  env
618                 ,jobject  thiz
619                 ,jlong lc
620                 ,jlong pc) {
621         linphone_core_add_auth_info((LinphoneCore*)lc,(LinphoneAuthInfo*)pc);
622 }
623 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_iterate(        JNIEnv*  env
624                 ,jobject  thiz
625                 ,jlong lc) {
626         linphone_core_iterate((LinphoneCore*)lc);
627 }
628 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_invite(      JNIEnv*  env
629                 ,jobject  thiz
630                 ,jlong lc
631                 ,jstring juri) {
632         const char* uri = env->GetStringUTFChars(juri, NULL);
633         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
634         LinphoneCall* lCall = linphone_core_invite((LinphoneCore*)lc,uri);
635         env->ReleaseStringUTFChars(juri, uri);
636         return lcd->getCall(env,lCall);
637 }
638 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddress(       JNIEnv*  env
639                 ,jobject  thiz
640                 ,jlong lc
641                 ,jlong to) {
642         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
643         return lcd->getCall(env, linphone_core_invite_address((LinphoneCore*)lc,(LinphoneAddress*)to));
644 }
645
646 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateCall(  JNIEnv*  env
647                 ,jobject  thiz
648                 ,jlong lc
649                 ,jlong call) {
650         linphone_core_terminate_call((LinphoneCore*)lc,(LinphoneCall*)call);
651 }
652
653 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_declineCall(    JNIEnv*  env
654                 ,jobject  thiz
655                 ,jlong lc
656                 ,jlong call, jint reason) {
657         linphone_core_decline_call((LinphoneCore*)lc,(LinphoneCall*)call,(LinphoneReason)reason);
658 }
659
660 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getRemoteAddress(      JNIEnv*  env
661                 ,jobject  thiz
662                 ,jlong lc) {
663         return (jlong)linphone_core_get_current_call_remote_address((LinphoneCore*)lc);
664 }
665 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInCall(   JNIEnv*  env
666                 ,jobject  thiz
667                 ,jlong lc) {
668
669         return (jboolean)linphone_core_in_call((LinphoneCore*)lc);
670 }
671 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInComingInvitePending(    JNIEnv*  env
672                 ,jobject  thiz
673                 ,jlong lc) {
674
675         return (jboolean)linphone_core_inc_invite_pending((LinphoneCore*)lc);
676 }
677 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCall(     JNIEnv*  env
678                 ,jobject  thiz
679                 ,jlong lc
680                 ,jlong call) {
681
682         linphone_core_accept_call((LinphoneCore*)lc,(LinphoneCall*)call);
683 }
684
685 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCallWithParams(JNIEnv *env,
686                 jobject thiz,
687                 jlong lc,
688                 jlong call,
689                 jlong params){
690         linphone_core_accept_call_with_params((LinphoneCore*)lc,(LinphoneCall*)call, (LinphoneCallParams*)params);
691 }
692
693 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCallUpdate(JNIEnv *env,
694                 jobject thiz,
695                 jlong lc,
696                 jlong call,
697                 jlong params){
698         linphone_core_accept_call_update((LinphoneCore*)lc,(LinphoneCall*)call, (LinphoneCallParams*)params);
699 }
700
701 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_deferCallUpdate(JNIEnv *env,
702                 jobject thiz,
703                 jlong lc,
704                 jlong call){
705         linphone_core_defer_call_update((LinphoneCore*)lc,(LinphoneCall*)call);
706 }
707
708 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getCallLog(    JNIEnv*  env
709                 ,jobject  thiz
710                 ,jlong lc
711                 ,jint position) {
712                 return (jlong)ms_list_nth_data(linphone_core_get_call_logs((LinphoneCore*)lc),position);
713 }
714 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getNumberOfCallLogs(    JNIEnv*  env
715                 ,jobject  thiz
716                 ,jlong lc) {
717                 return (jint)ms_list_size(linphone_core_get_call_logs((LinphoneCore*)lc));
718 }
719 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setNetworkStateReachable(       JNIEnv*  env
720                 ,jobject  thiz
721                 ,jlong lc
722                 ,jboolean isReachable) {
723                 linphone_core_set_network_reachable((LinphoneCore*)lc,isReachable);
724 }
725
726 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isNetworkStateReachable(    JNIEnv*  env
727                 ,jobject  thiz
728                 ,jlong lc) {
729                 return (jboolean)linphone_core_is_network_reachable((LinphoneCore*)lc);
730 }
731
732 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMicrophoneGain(JNIEnv*  env
733                 ,jobject  thiz
734                 ,jlong lc
735                 ,jfloat gain) {
736                 linphone_core_set_mic_gain_db((LinphoneCore*)lc,gain);
737 }
738
739 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPlaybackGain(        JNIEnv*  env
740                 ,jobject  thiz
741                 ,jlong lc
742                 ,jfloat gain) {
743                 linphone_core_set_playback_gain_db((LinphoneCore*)lc,gain);
744 }
745
746 extern "C" jfloat Java_org_linphone_core_LinphoneCoreImpl_getPlaybackGain(      JNIEnv*  env
747                 ,jobject  thiz
748                 ,jlong lc) {
749                 return (jfloat)linphone_core_get_playback_gain_db((LinphoneCore*)lc);
750 }
751
752 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_muteMic(        JNIEnv*  env
753                 ,jobject  thiz
754                 ,jlong lc
755                 ,jboolean isMuted) {
756                 linphone_core_mute_mic((LinphoneCore*)lc,isMuted);
757 }
758
759 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_interpretUrl(  JNIEnv*  env
760                 ,jobject  thiz
761                 ,jlong lc
762                 ,jstring jurl) {
763         const char* url = env->GetStringUTFChars(jurl, NULL);
764         jlong result = (jlong)linphone_core_interpret_url((LinphoneCore*)lc,url);
765         env->ReleaseStringUTFChars(jurl, url);
766         return result;
767 }
768 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_sendDtmf(       JNIEnv*  env
769                 ,jobject  thiz
770                 ,jlong lc
771                 ,jchar dtmf) {
772         linphone_core_send_dtmf((LinphoneCore*)lc,dtmf);
773 }
774 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_playDtmf(       JNIEnv*  env
775                 ,jobject  thiz
776                 ,jlong lc
777                 ,jchar dtmf
778                 ,jint duration) {
779         linphone_core_play_dtmf((LinphoneCore*)lc,dtmf,duration);
780 }
781 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_stopDtmf(       JNIEnv*  env
782                 ,jobject  thiz
783                 ,jlong lc) {
784         linphone_core_stop_dtmf((LinphoneCore*)lc);
785 }
786
787 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMissedCallsCount(JNIEnv*  env
788                                                                                                                                                 ,jobject  thiz
789                                                                                                                                                 ,jlong lc) {
790         return (jint)linphone_core_get_missed_calls_count((LinphoneCore*)lc);
791 }
792
793 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_resetMissedCallsCount(JNIEnv*  env
794                                                                                                                                                 ,jobject  thiz
795                                                                                                                                                 ,jlong lc) {
796         linphone_core_reset_missed_calls_count((LinphoneCore*)lc);
797 }
798
799 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeCallLog(JNIEnv*  env
800                                                                                                                                                 ,jobject  thiz
801                                                                                                                                                 ,jlong lc, jlong log) {
802         linphone_core_remove_call_log((LinphoneCore*)lc, (LinphoneCallLog*) log);
803 }
804
805 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_clearCallLogs(JNIEnv*  env
806                                                                                                                                                 ,jobject  thiz
807                                                                                                                                                 ,jlong lc) {
808         linphone_core_clear_call_logs((LinphoneCore*)lc);
809 }
810 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isMicMuted( JNIEnv*  env
811                 ,jobject  thiz
812                 ,jlong lc) {
813         return (jboolean)linphone_core_is_mic_muted((LinphoneCore*)lc);
814 }
815 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_findPayloadType(JNIEnv*  env
816                                                                                                                                                         ,jobject  thiz
817                                                                                                                                                         ,jlong lc
818                                                                                                                                                         ,jstring jmime
819                                                                                                                                                         ,jint rate
820                                                                                                                                                         ,jint channels) {
821         const char* mime = env->GetStringUTFChars(jmime, NULL);
822         jlong result = (jlong)linphone_core_find_payload_type((LinphoneCore*)lc,mime,rate,channels);
823         env->ReleaseStringUTFChars(jmime, mime);
824         return result;
825 }
826 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_listVideoPayloadTypes(JNIEnv*  env
827                                                                                                                                                         ,jobject  thiz
828                                                                                                                                                         ,jlong lc) {
829         const MSList* codecs = linphone_core_get_video_codecs((LinphoneCore*)lc);
830         int codecsCount = ms_list_size(codecs);
831         jlongArray jCodecs = env->NewLongArray(codecsCount);
832         jlong *jInternalArray = env->GetLongArrayElements(jCodecs, NULL);
833
834         for (int i = 0; i < codecsCount; i++ ) {
835                 jInternalArray[i] = (unsigned long) (codecs->data);
836                 codecs = codecs->next;
837         }
838
839         env->ReleaseLongArrayElements(jCodecs, jInternalArray, 0);
840
841         return jCodecs;
842 }
843
844 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_listAudioPayloadTypes(JNIEnv*  env
845                                                                                                                                                         ,jobject  thiz
846                                                                                                                                                         ,jlong lc) {
847         const MSList* codecs = linphone_core_get_audio_codecs((LinphoneCore*)lc);
848         int codecsCount = ms_list_size(codecs);
849         jlongArray jCodecs = env->NewLongArray(codecsCount);
850         jlong *jInternalArray = env->GetLongArrayElements(jCodecs, NULL);
851
852         for (int i = 0; i < codecsCount; i++ ) {
853                 jInternalArray[i] = (unsigned long) (codecs->data);
854                 codecs = codecs->next;
855         }
856
857         env->ReleaseLongArrayElements(jCodecs, jInternalArray, 0);
858
859         return jCodecs;
860 }
861
862 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_enablePayloadType(JNIEnv*  env
863                                                                                                                                                         ,jobject  thiz
864                                                                                                                                                         ,jlong lc
865                                                                                                                                                         ,jlong pt
866                                                                                                                                                         ,jboolean enable) {
867         return (jint)linphone_core_enable_payload_type((LinphoneCore*)lc,(PayloadType*)pt,enable);
868 }
869 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableEchoCancellation(JNIEnv*  env
870                                                                                                                                                         ,jobject  thiz
871                                                                                                                                                         ,jlong lc
872                                                                                                                                                         ,jboolean enable) {
873         linphone_core_enable_echo_cancellation((LinphoneCore*)lc,enable);
874 }
875 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableEchoLimiter(JNIEnv*  env
876                                                                                                                                                         ,jobject  thiz
877                                                                                                                                                         ,jlong lc
878                                                                                                                                                         ,jboolean enable) {
879         linphone_core_enable_echo_limiter((LinphoneCore*)lc,enable);
880 }
881 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isEchoCancellationEnabled(JNIEnv*  env
882                                                                                                                                                         ,jobject  thiz
883                                                                                                                                                         ,jlong lc
884                                                                                                                                                         ) {
885         return (jboolean)linphone_core_echo_cancellation_enabled((LinphoneCore*)lc);
886 }
887
888 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isEchoLimiterEnabled(JNIEnv*  env
889                                                                                                                                                         ,jobject  thiz
890                                                                                                                                                         ,jlong lc
891                                                                                                                                                         ) {
892         return (jboolean)linphone_core_echo_limiter_enabled((LinphoneCore*)lc);
893 }
894
895 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCurrentCall(JNIEnv*  env
896                                                                                                                                                         ,jobject  thiz
897                                                                                                                                                         ,jlong lc
898                                                                                                                                                         ) {
899         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
900         
901         return lcdata->getCall(env,linphone_core_get_current_call((LinphoneCore*)lc));
902 }
903 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addFriend(JNIEnv*  env
904                                                                                                                                                         ,jobject  thiz
905                                                                                                                                                         ,jlong lc
906                                                                                                                                                         ,jlong aFriend
907                                                                                                                                                         ) {
908         linphone_core_add_friend((LinphoneCore*)lc,(LinphoneFriend*)aFriend);
909 }
910 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPresenceInfo(JNIEnv*  env
911                                                                                                                                                         ,jobject  thiz
912                                                                                                                                                         ,jlong lc
913                                                                                                                                                         ,jint minute_away
914                                                                                                                                                         ,jstring jalternative_contact
915                                                                                                                                                         ,jint status) {
916         const char* alternative_contact = jalternative_contact?env->GetStringUTFChars(jalternative_contact, NULL):NULL;
917         linphone_core_set_presence_info((LinphoneCore*)lc,minute_away,alternative_contact,(LinphoneOnlineStatus)status);
918         if (alternative_contact) env->ReleaseStringUTFChars(jalternative_contact, alternative_contact);
919 }
920
921 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_createChatRoom(JNIEnv*  env
922                                                                                                                                                         ,jobject  thiz
923                                                                                                                                                         ,jlong lc
924                                                                                                                                                         ,jstring jto) {
925
926         const char* to = env->GetStringUTFChars(jto, NULL);
927         LinphoneChatRoom* lResult = linphone_core_create_chat_room((LinphoneCore*)lc,to);
928         env->ReleaseStringUTFChars(jto, to);
929         return (jlong)lResult;
930 }
931
932 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableVideo(JNIEnv*  env
933                                                                                                                                                         ,jobject  thiz
934                                                                                                                                                         ,jlong lc
935                                                                                                                                                         ,jboolean vcap_enabled
936                                                                                                                                                         ,jboolean display_enabled) {
937         linphone_core_enable_video((LinphoneCore*)lc, vcap_enabled,display_enabled);
938
939 }
940 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isVideoEnabled(JNIEnv*  env
941                                                                                                                                                         ,jobject  thiz
942                                                                                                                                                         ,jlong lc) {
943         return (jboolean)linphone_core_video_enabled((LinphoneCore*)lc);
944 }
945 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPlayFile(JNIEnv*  env
946                                                                                                                                                         ,jobject  thiz
947                                                                                                                                                         ,jlong lc
948                                                                                                                                                         ,jstring jpath) {
949         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
950         linphone_core_set_play_file((LinphoneCore*)lc,path);
951         if (path) env->ReleaseStringUTFChars(jpath, path);
952 }
953 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setRing(JNIEnv*  env
954                                                                                                                                                         ,jobject  thiz
955                                                                                                                                                         ,jlong lc
956                                                                                                                                                         ,jstring jpath) {
957         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
958         linphone_core_set_ring((LinphoneCore*)lc,path);
959         if (path) env->ReleaseStringUTFChars(jpath, path);
960 }
961 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getRing(JNIEnv*  env
962                                                                                                                                                         ,jobject  thiz
963                                                                                                                                                         ,jlong lc
964                                                                                                                                                         ) {
965         const char* path = linphone_core_get_ring((LinphoneCore*)lc);
966         if (path) {
967                 return env->NewStringUTF(path);
968         } else {
969                 return NULL;
970         }
971 }
972 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setRootCA(JNIEnv*  env
973                                                                                                                                                         ,jobject  thiz
974                                                                                                                                                         ,jlong lc
975                                                                                                                                                         ,jstring jpath) {
976         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
977         linphone_core_set_root_ca((LinphoneCore*)lc,path);
978         if (path) env->ReleaseStringUTFChars(jpath, path);
979 }
980 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableKeepAlive(JNIEnv*  env
981                                                                                                                                 ,jobject  thiz
982                                                                                                                                 ,jlong lc
983                                                                                                                                 ,jboolean enable) {
984         linphone_core_enable_keep_alive((LinphoneCore*)lc,enable);
985
986 }
987 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isKeepAliveEnabled(JNIEnv*  env
988                                                                                                                                 ,jobject  thiz
989                                                                                                                                 ,jlong lc) {
990         return (jboolean)linphone_core_keep_alive_enabled((LinphoneCore*)lc);
991
992 }
993 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_startEchoCalibration(JNIEnv*  env
994                                                                                                                                                                 ,jobject  thiz
995                                                                                                                                                                 ,jlong lc
996                                                                                                                                                                 ,jobject data) {
997         return (jint)linphone_core_start_echo_calibration((LinphoneCore*)lc
998                                                                                                         , LinphoneCoreData::ecCalibrationStatus
999                                                                                                         , data?env->NewGlobalRef(data):NULL);
1000
1001 }
1002
1003 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_needsEchoCalibration(JNIEnv *env, jobject thiz, jlong lc){
1004         MSSndCard *sndcard;
1005         MSSndCardManager *m=ms_snd_card_manager_get();
1006         const char *card=linphone_core_get_capture_device((LinphoneCore*)lc);
1007         sndcard=ms_snd_card_manager_get_card(m,card);
1008         if (sndcard == NULL){
1009                 ms_error("Could not get soundcard.");
1010                 return TRUE;
1011         }
1012         return (ms_snd_card_get_capabilities(sndcard) & MS_SND_CARD_CAP_BUILTIN_ECHO_CANCELLER) || (ms_snd_card_get_minimal_latency(sndcard)>0);
1013 }
1014
1015 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMediaEncryption(JNIEnv*  env
1016                                                                                                                                                         ,jobject  thiz
1017                                                                                                                                                         ,jlong lc
1018                                                                                                                                                         ) {
1019         return (jint)linphone_core_get_media_encryption((LinphoneCore*)lc);
1020 }
1021
1022 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMediaEncryption(JNIEnv*  env
1023                                                                                                                                                         ,jobject  thiz
1024                                                                                                                                                         ,jlong lc
1025                                                                                                                                                         ,jint menc) {
1026         linphone_core_set_media_encryption((LinphoneCore*)lc,(LinphoneMediaEncryption)menc);
1027 }
1028
1029 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_mediaEncryptionSupported(JNIEnv*  env
1030                                                                                                                                                         ,jobject  thiz
1031                                                                                                                                                         ,jlong lc, jint menc
1032                                                                                                                                                         ) {
1033         return (jboolean)linphone_core_media_encryption_supported((LinphoneCore*)lc,(LinphoneMediaEncryption)menc);
1034 }
1035
1036 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isMediaEncryptionMandatory(JNIEnv*  env
1037                                                                                                                                                         ,jobject  thiz
1038                                                                                                                                                         ,jlong lc
1039                                                                                                                                                         ) {
1040         return (jboolean)linphone_core_is_media_encryption_mandatory((LinphoneCore*)lc);
1041 }
1042
1043 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMediaEncryptionMandatory(JNIEnv*  env
1044                                                                                                                                                         ,jobject  thiz
1045                                                                                                                                                         ,jlong lc
1046                                                                                                                                                         , jboolean yesno
1047                                                                                                                                                         ) {
1048         linphone_core_set_media_encryption_mandatory((LinphoneCore*)lc, yesno);
1049 }
1050
1051 //ProxyConfig
1052
1053 extern "C" jlong Java_org_linphone_core_LinphoneProxyConfigImpl_newLinphoneProxyConfig(JNIEnv*  env,jobject  thiz) {
1054         LinphoneProxyConfig* proxy = linphone_proxy_config_new();
1055         return  (jlong) proxy;
1056 }
1057
1058 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_delete(JNIEnv*  env,jobject  thiz,jlong ptr) {
1059         linphone_proxy_config_destroy((LinphoneProxyConfig*)ptr);
1060 }
1061 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jidentity) {
1062         const char* identity = env->GetStringUTFChars(jidentity, NULL);
1063         linphone_proxy_config_set_identity((LinphoneProxyConfig*)proxyCfg,identity);
1064         env->ReleaseStringUTFChars(jidentity, identity);
1065 }
1066 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1067         const char* identity = linphone_proxy_config_get_identity((LinphoneProxyConfig*)proxyCfg);
1068         if (identity) {
1069                 return env->NewStringUTF(identity);
1070         } else {
1071                 return NULL;
1072         }
1073 }
1074 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_setProxy(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jproxy) {
1075         const char* proxy = env->GetStringUTFChars(jproxy, NULL);
1076         jint err=linphone_proxy_config_set_server_addr((LinphoneProxyConfig*)proxyCfg,proxy);
1077         env->ReleaseStringUTFChars(jproxy, proxy);
1078         return err;
1079 }
1080 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getProxy(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1081         const char* proxy = linphone_proxy_config_get_addr((LinphoneProxyConfig*)proxyCfg);
1082         if (proxy) {
1083                 return env->NewStringUTF(proxy);
1084         } else {
1085                 return NULL;
1086         }
1087 }
1088 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setContactParameters(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jparams) {
1089         const char* params = env->GetStringUTFChars(jparams, NULL);
1090         linphone_proxy_config_set_contact_parameters((LinphoneProxyConfig*)proxyCfg, params);
1091         env->ReleaseStringUTFChars(jparams, params);
1092 }
1093 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_setRoute(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jroute) {
1094         if (jroute != NULL) {
1095                 const char* route = env->GetStringUTFChars(jroute, NULL);
1096                 jint err=linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,route);
1097                 env->ReleaseStringUTFChars(jroute, route);
1098                 return err;
1099         } else {
1100                 return (jint)linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,NULL);
1101         }
1102 }
1103 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getRoute(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1104         const char* route = linphone_proxy_config_get_route((LinphoneProxyConfig*)proxyCfg);
1105         if (route) {
1106                 return env->NewStringUTF(route);
1107         } else {
1108                 return NULL;
1109         }
1110 }
1111
1112 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enableRegister(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean enableRegister) {
1113         linphone_proxy_config_enable_register((LinphoneProxyConfig*)proxyCfg,enableRegister);
1114 }
1115 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegistered(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1116         return (jboolean)linphone_proxy_config_is_registered((LinphoneProxyConfig*)proxyCfg);
1117 }
1118 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegisterEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1119         return (jboolean)linphone_proxy_config_register_enabled((LinphoneProxyConfig*)proxyCfg);
1120 }
1121 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_edit(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1122         linphone_proxy_config_edit((LinphoneProxyConfig*)proxyCfg);
1123 }
1124 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_done(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1125         linphone_proxy_config_done((LinphoneProxyConfig*)proxyCfg);
1126 }
1127 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_normalizePhoneNumber(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jnumber) {
1128         if (jnumber == 0) {
1129                 ms_error("cannot normalized null number");
1130         }
1131         const char* number = env->GetStringUTFChars(jnumber, NULL);
1132         int len = env->GetStringLength(jnumber);
1133         if (len == 0) {
1134                 ms_warning("cannot normalize empty number");
1135                 return jnumber;
1136         }
1137         char targetBuff[2*len];// returned number can be greater than origin (specially in case of prefix insertion
1138         linphone_proxy_config_normalize_number((LinphoneProxyConfig*)proxyCfg,number,targetBuff,sizeof(targetBuff));
1139         jstring normalizedNumber = env->NewStringUTF(targetBuff);
1140         env->ReleaseStringUTFChars(jnumber, number);
1141         return normalizedNumber;
1142 }
1143 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_lookupCCCFromIso(JNIEnv* env, jobject thiz, jlong proxyCfg, jstring jiso) {
1144         const char* iso = env->GetStringUTFChars(jiso, NULL);
1145         int prefix = linphone_dial_plan_lookup_ccc_from_iso(iso);
1146         env->ReleaseStringUTFChars(jiso, iso);
1147         return (jint) prefix;
1148 }
1149 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_lookupCCCFromE164(JNIEnv* env, jobject thiz, jlong proxyCfg, jstring je164) {
1150         const char* e164 = env->GetStringUTFChars(je164, NULL);
1151         int prefix = linphone_dial_plan_lookup_ccc_from_e164(e164);
1152         env->ReleaseStringUTFChars(je164, e164);
1153         return (jint) prefix;
1154 }
1155 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getDomain(JNIEnv* env
1156                                                                                                                                                         ,jobject thiz
1157                                                                                                                                                         ,jlong proxyCfg) {
1158         const char* domain = linphone_proxy_config_get_domain((LinphoneProxyConfig*)proxyCfg);
1159         if (domain) {
1160                 return env->NewStringUTF(domain);
1161         } else {
1162                 return NULL;
1163         }
1164 }
1165 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialEscapePlus(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean value) {
1166         linphone_proxy_config_set_dial_escape_plus((LinphoneProxyConfig*)proxyCfg,value);
1167 }
1168
1169 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialPrefix(JNIEnv* env
1170                                                                                                                                         ,jobject thiz
1171                                                                                                                                         ,jlong proxyCfg
1172                                                                                                                                         ,jstring jprefix) {
1173         const char* prefix = env->GetStringUTFChars(jprefix, NULL);
1174         linphone_proxy_config_set_dial_prefix((LinphoneProxyConfig*)proxyCfg,prefix);
1175         env->ReleaseStringUTFChars(jprefix, prefix);
1176 }
1177 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enablePublish(JNIEnv* env
1178                                                                                                                                                                 ,jobject thiz
1179                                                                                                                                                                 ,jlong proxyCfg
1180                                                                                                                                                                 ,jboolean val) {
1181         linphone_proxy_config_enable_publish((LinphoneProxyConfig*)proxyCfg,val);
1182 }
1183 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_publishEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1184         return (jboolean)linphone_proxy_config_publish_enabled((LinphoneProxyConfig*)proxyCfg);
1185 }
1186
1187 //Auth Info
1188
1189 extern "C" jlong Java_org_linphone_core_LinphoneAuthInfoImpl_newLinphoneAuthInfo(JNIEnv* env
1190                 , jobject thiz
1191                 , jstring jusername
1192                 , jstring juserid
1193                 , jstring jpassword
1194                 , jstring jha1
1195                 , jstring jrealm) {
1196
1197         const char* username = env->GetStringUTFChars(jusername, NULL);
1198         const char* userid = env->GetStringUTFChars(juserid, NULL);
1199         const char* password = env->GetStringUTFChars(jpassword, NULL);
1200         const char* ha1 = env->GetStringUTFChars(jha1, NULL);
1201         const char* realm = env->GetStringUTFChars(jrealm, NULL);
1202         jlong auth = (jlong)linphone_auth_info_new(username,userid,password,ha1,realm);
1203
1204         env->ReleaseStringUTFChars(jusername, username);
1205         env->ReleaseStringUTFChars(juserid, userid);
1206         env->ReleaseStringUTFChars(jpassword, password);
1207         env->ReleaseStringUTFChars(jha1, ha1);
1208         env->ReleaseStringUTFChars(jrealm, realm);
1209         return auth;
1210
1211 }
1212 extern "C" void Java_org_linphone_core_LinphoneAuthInfoImpl_delete(JNIEnv* env
1213                 , jobject thiz
1214                 , jlong ptr) {
1215         linphone_auth_info_destroy((LinphoneAuthInfo*)ptr);
1216 }
1217
1218 //LinphoneAddress
1219
1220 extern "C" jlong Java_org_linphone_core_LinphoneAddressImpl_newLinphoneAddressImpl(JNIEnv*  env
1221                                                                                                                                                                         ,jobject  thiz
1222                                                                                                                                                                         ,jstring juri
1223                                                                                                                                                                         ,jstring jdisplayName) {
1224         const char* uri = env->GetStringUTFChars(juri, NULL);
1225         LinphoneAddress* address = linphone_address_new(uri);
1226         if (jdisplayName && address) {
1227                 const char* displayName = env->GetStringUTFChars(jdisplayName, NULL);
1228                 linphone_address_set_display_name(address,displayName);
1229                 env->ReleaseStringUTFChars(jdisplayName, displayName);
1230         }
1231         env->ReleaseStringUTFChars(juri, uri);
1232
1233         return  (jlong) address;
1234 }
1235 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_delete(JNIEnv*  env
1236                                                                                                                                                 ,jobject  thiz
1237                                                                                                                                                 ,jlong ptr) {
1238         linphone_address_destroy((LinphoneAddress*)ptr);
1239 }
1240
1241 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDisplayName(JNIEnv*  env
1242                                                                                                                                                 ,jobject  thiz
1243                                                                                                                                                 ,jlong ptr) {
1244         const char* displayName = linphone_address_get_display_name((LinphoneAddress*)ptr);
1245         if (displayName) {
1246                 return env->NewStringUTF(displayName);
1247         } else {
1248                 return NULL;
1249         }
1250 }
1251 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getUserName(JNIEnv*  env
1252                                                                                                                                                 ,jobject  thiz
1253                                                                                                                                                 ,jlong ptr) {
1254         const char* userName = linphone_address_get_username((LinphoneAddress*)ptr);
1255         if (userName) {
1256                 return env->NewStringUTF(userName);
1257         } else {
1258                 return NULL;
1259         }
1260 }
1261 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDomain(JNIEnv*  env
1262                                                                                                                                                 ,jobject  thiz
1263                                                                                                                                                 ,jlong ptr) {
1264         const char* domain = linphone_address_get_domain((LinphoneAddress*)ptr);
1265         if (domain) {
1266                 return env->NewStringUTF(domain);
1267         } else {
1268                 return NULL;
1269         }
1270 }
1271
1272 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toString(JNIEnv*  env
1273                                                                                                                                                 ,jobject  thiz
1274                                                                                                                                                 ,jlong ptr) {
1275         char* uri = linphone_address_as_string((LinphoneAddress*)ptr);
1276         jstring juri =env->NewStringUTF(uri);
1277         ms_free(uri);
1278         return juri;
1279 }
1280 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toUri(JNIEnv*  env
1281                                                                                                                                                 ,jobject  thiz
1282                                                                                                                                                 ,jlong ptr) {
1283         char* uri = linphone_address_as_string_uri_only((LinphoneAddress*)ptr);
1284         jstring juri =env->NewStringUTF(uri);
1285         ms_free(uri);
1286         return juri;
1287 }
1288 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_setDisplayName(JNIEnv*  env
1289                                                                                                                                                 ,jobject  thiz
1290                                                                                                                                                 ,jlong address
1291                                                                                                                                                 ,jstring jdisplayName) {
1292         const char* displayName = jdisplayName!= NULL?env->GetStringUTFChars(jdisplayName, NULL):NULL;
1293         linphone_address_set_display_name((LinphoneAddress*)address,displayName);
1294         if (displayName != NULL) env->ReleaseStringUTFChars(jdisplayName, displayName);
1295 }
1296
1297
1298 //CallLog
1299 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getFrom(JNIEnv*  env
1300                                                                                                                                                 ,jobject  thiz
1301                                                                                                                                                 ,jlong ptr) {
1302         return (jlong)((LinphoneCallLog*)ptr)->from;
1303 }
1304 extern "C" jint Java_org_linphone_core_LinphoneCallLogImpl_getStatus(JNIEnv*  env
1305                                                                                                                                                 ,jobject  thiz
1306                                                                                                                                                 ,jlong ptr) {
1307         return (jint)((LinphoneCallLog*)ptr)->status;
1308 }
1309 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getTo(JNIEnv*  env
1310                                                                                                                                                 ,jobject  thiz
1311                                                                                                                                                 ,jlong ptr) {
1312         return (jlong)((LinphoneCallLog*)ptr)->to;
1313 }
1314 extern "C" jboolean Java_org_linphone_core_LinphoneCallLogImpl_isIncoming(JNIEnv*  env
1315                                                                                                                                                 ,jobject  thiz
1316                                                                                                                                                 ,jlong ptr) {
1317         return ((LinphoneCallLog*)ptr)->dir==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1318 }
1319 extern "C" jstring Java_org_linphone_core_LinphoneCallLogImpl_getStartDate(JNIEnv*  env
1320                                                                                                                                                 ,jobject  thiz
1321                                                                                                                                                 ,jlong ptr) {
1322         jstring jvalue =env->NewStringUTF(((LinphoneCallLog*)ptr)->start_date);
1323         return jvalue;
1324 }
1325 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getTimestamp(JNIEnv*  env
1326                                                                                                                                                 ,jobject  thiz
1327                                                                                                                                                 ,jlong ptr) {
1328         return static_cast<long> (((LinphoneCallLog*)ptr)->start_date_time);
1329 }
1330 extern "C" jint Java_org_linphone_core_LinphoneCallLogImpl_getCallDuration(JNIEnv*  env
1331                                                                                                                                                 ,jobject  thiz
1332                                                                                                                                                 ,jlong ptr) {
1333         return (jint)((LinphoneCallLog*)ptr)->duration;
1334 }
1335
1336 /* CallStats */
1337 extern "C" jint Java_org_linphone_core_LinphoneCallStatsImpl_getMediaType(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1338         return (jint)((LinphoneCallStats *)stats_ptr)->type;
1339 }
1340 extern "C" jint Java_org_linphone_core_LinphoneCallStatsImpl_getIceState(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1341         return (jint)((LinphoneCallStats *)stats_ptr)->ice_state;
1342 }
1343 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getDownloadBandwidth(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1344         return (jfloat)((LinphoneCallStats *)stats_ptr)->download_bandwidth;
1345 }
1346 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getUploadBandwidth(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1347         return (jfloat)((LinphoneCallStats *)stats_ptr)->upload_bandwidth;
1348 }
1349 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getSenderLossRate(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1350         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1351         const report_block_t *srb = NULL;
1352
1353         if (!stats || !stats->sent_rtcp)
1354                 return (jfloat)0.0;
1355         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1356         if (stats->sent_rtcp->b_cont != NULL)
1357                 msgpullup(stats->sent_rtcp, -1);
1358         if (rtcp_is_SR(stats->sent_rtcp))
1359                 srb = rtcp_SR_get_report_block(stats->sent_rtcp, 0);
1360         else if (rtcp_is_RR(stats->sent_rtcp))
1361                 srb = rtcp_RR_get_report_block(stats->sent_rtcp, 0);
1362         if (!srb)
1363                 return (jfloat)0.0;
1364         return (jfloat)(100.0 * report_block_get_fraction_lost(srb) / 256.0);
1365 }
1366 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getReceiverLossRate(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1367         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1368         const report_block_t *rrb = NULL;
1369
1370         if (!stats || !stats->received_rtcp)
1371                 return (jfloat)0.0;
1372         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1373         if (stats->received_rtcp->b_cont != NULL)
1374                 msgpullup(stats->received_rtcp, -1);
1375         if (rtcp_is_RR(stats->received_rtcp))
1376                 rrb = rtcp_RR_get_report_block(stats->received_rtcp, 0);
1377         else if (rtcp_is_SR(stats->received_rtcp))
1378                 rrb = rtcp_SR_get_report_block(stats->received_rtcp, 0);
1379         if (!rrb)
1380                 return (jfloat)0.0;
1381         return (jfloat)(100.0 * report_block_get_fraction_lost(rrb) / 256.0);
1382 }
1383 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getSenderInterarrivalJitter(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1384         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1385         LinphoneCall *call = (LinphoneCall *)call_ptr;
1386         const LinphoneCallParams *params;
1387         const PayloadType *pt;
1388         const report_block_t *srb = NULL;
1389
1390         if (!stats || !call || !stats->sent_rtcp)
1391                 return (jfloat)0.0;
1392         params = linphone_call_get_current_params(call);
1393         if (!params)
1394                 return (jfloat)0.0;
1395         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1396         if (stats->sent_rtcp->b_cont != NULL)
1397                 msgpullup(stats->sent_rtcp, -1);
1398         if (rtcp_is_SR(stats->sent_rtcp))
1399                 srb = rtcp_SR_get_report_block(stats->sent_rtcp, 0);
1400         else if (rtcp_is_RR(stats->sent_rtcp))
1401                 srb = rtcp_RR_get_report_block(stats->sent_rtcp, 0);
1402         if (!srb)
1403                 return (jfloat)0.0;
1404         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1405                 pt = linphone_call_params_get_used_audio_codec(params);
1406         else
1407                 pt = linphone_call_params_get_used_video_codec(params);
1408         if (!pt || (pt->clock_rate == 0))
1409                 return (jfloat)0.0;
1410         return (jfloat)((float)report_block_get_interarrival_jitter(srb) / (float)pt->clock_rate);
1411 }
1412 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getReceiverInterarrivalJitter(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1413         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1414         LinphoneCall *call = (LinphoneCall *)call_ptr;
1415         const LinphoneCallParams *params;
1416         const PayloadType *pt;
1417         const report_block_t *rrb = NULL;
1418
1419         if (!stats || !call || !stats->received_rtcp)
1420                 return (jfloat)0.0;
1421         params = linphone_call_get_current_params(call);
1422         if (!params)
1423                 return (jfloat)0.0;
1424         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1425         if (stats->received_rtcp->b_cont != NULL)
1426                 msgpullup(stats->received_rtcp, -1);
1427         if (rtcp_is_SR(stats->received_rtcp))
1428                 rrb = rtcp_SR_get_report_block(stats->received_rtcp, 0);
1429         else if (rtcp_is_RR(stats->received_rtcp))
1430                 rrb = rtcp_RR_get_report_block(stats->received_rtcp, 0);
1431         if (!rrb)
1432                 return (jfloat)0.0;
1433         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1434                 pt = linphone_call_params_get_used_audio_codec(params);
1435         else
1436                 pt = linphone_call_params_get_used_video_codec(params);
1437         if (!pt || (pt->clock_rate == 0))
1438                 return (jfloat)0.0;
1439         return (jfloat)((float)report_block_get_interarrival_jitter(rrb) / (float)pt->clock_rate);
1440 }
1441 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getRoundTripDelay(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1442         return (jfloat)((LinphoneCallStats *)stats_ptr)->round_trip_delay;
1443 }
1444 extern "C" jlong Java_org_linphone_core_LinphoneCallStatsImpl_getLatePacketsCumulativeNumber(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1445         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1446         LinphoneCall *call = (LinphoneCall *)call_ptr;
1447         rtp_stats_t rtp_stats;
1448
1449         if (!stats || !call)
1450                 return (jlong)0;
1451         memset(&rtp_stats, 0, sizeof(rtp_stats));
1452         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1453                 audio_stream_get_local_rtp_stats(call->audiostream, &rtp_stats);
1454 #ifdef VIDEO_ENABLED
1455         else
1456                 video_stream_get_local_rtp_stats(call->videostream, &rtp_stats);
1457 #endif
1458         return (jlong)rtp_stats.outoftime;
1459 }
1460 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getJitterBufferSize(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1461         return (jfloat)((LinphoneCallStats *)stats_ptr)->jitter_stats.jitter_buffer_size_ms;
1462 }
1463
1464 /*payloadType*/
1465 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_toString(JNIEnv*  env,jobject  thiz,jlong ptr) {
1466         PayloadType* pt = (PayloadType*)ptr;
1467         char* value = ms_strdup_printf("[%s] clock [%i], bitrate [%i]"
1468                                                                         ,payload_type_get_mime(pt)
1469                                                                         ,payload_type_get_rate(pt)
1470                                                                         ,payload_type_get_bitrate(pt));
1471         jstring jvalue =env->NewStringUTF(value);
1472         ms_free(value);
1473         return jvalue;
1474 }
1475 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_getMime(JNIEnv*  env,jobject  thiz,jlong ptr) {
1476         PayloadType* pt = (PayloadType*)ptr;
1477         jstring jvalue =env->NewStringUTF(payload_type_get_mime(pt));
1478         return jvalue;
1479 }
1480 extern "C" jint Java_org_linphone_core_PayloadTypeImpl_getRate(JNIEnv*  env,jobject  thiz, jlong ptr) {
1481         PayloadType* pt = (PayloadType*)ptr;
1482         return (jint)payload_type_get_rate(pt);
1483 }
1484
1485 //LinphoneCall
1486 extern "C" void Java_org_linphone_core_LinphoneCallImpl_finalize(JNIEnv*  env
1487                                                                                                                                                 ,jobject  thiz
1488                                                                                                                                                 ,jlong ptr) {
1489         LinphoneCall *call=(LinphoneCall*)ptr;
1490         linphone_call_unref(call);
1491 }
1492
1493 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCallLog(    JNIEnv*  env
1494                                                                                                                                                 ,jobject  thiz
1495                                                                                                                                                 ,jlong ptr) {
1496         return (jlong)linphone_call_get_call_log((LinphoneCall*)ptr);
1497 }
1498
1499 extern "C" void Java_org_linphone_core_LinphoneCallImpl_takeSnapshot(   JNIEnv*  env
1500                                                                                                                                                 ,jobject  thiz
1501                                                                                                                                                 ,jlong ptr, jstring path) {
1502         const char* filePath = path != NULL ? env->GetStringUTFChars(path, NULL) : NULL;
1503         linphone_call_take_video_snapshot((LinphoneCall*)ptr, filePath);
1504 }
1505
1506 extern "C" void Java_org_linphone_core_LinphoneCallImpl_zoomVideo(              JNIEnv*  env
1507                                                                                                                                                 ,jobject  thiz
1508                                                                                                                                                 ,jlong ptr, jfloat zoomFactor, jfloat cx, jfloat cy) {
1509         linphone_call_zoom_video((LinphoneCall*)ptr, zoomFactor, &cx, &cy);
1510 }
1511
1512 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isIncoming( JNIEnv*  env
1513                                                                                                                                                 ,jobject  thiz
1514                                                                                                                                                 ,jlong ptr) {
1515         return linphone_call_get_dir((LinphoneCall*)ptr)==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1516 }
1517
1518 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteAddress(      JNIEnv*  env
1519                                                                                                                                                 ,jobject  thiz
1520                                                                                                                                                 ,jlong ptr) {
1521         return (jlong)linphone_call_get_remote_address((LinphoneCall*)ptr);
1522 }
1523
1524 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getRemoteUserAgent(JNIEnv *env, jobject thiz, jlong ptr) {
1525         LinphoneCall *call = (LinphoneCall *)ptr;
1526         const char *value=linphone_call_get_remote_user_agent(call);
1527         jstring jvalue=NULL;
1528         if (value) jvalue=env->NewStringUTF(value);
1529         return jvalue;
1530 }
1531
1532 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getRemoteContact(JNIEnv *env, jobject thiz, jlong ptr) {
1533         LinphoneCall *call = (LinphoneCall *)ptr;
1534         const char *value=linphone_call_get_remote_contact(call);
1535         jstring jvalue = NULL;
1536         if (value) jvalue=env->NewStringUTF(value);
1537         return jvalue;
1538 }
1539
1540 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getState(       JNIEnv*  env
1541                                                                                                                                                 ,jobject  thiz
1542                                                                                                                                                 ,jlong ptr) {
1543         return (jint)linphone_call_get_state((LinphoneCall*)ptr);
1544 }
1545 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoCancellation( JNIEnv*  env
1546                                                                                                                                                 ,jobject  thiz
1547                                                                                                                                                 ,jlong ptr
1548                                                                                                                                                 ,jboolean value) {
1549         linphone_call_enable_echo_cancellation((LinphoneCall*)ptr,value);
1550 }
1551 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoCancellationEnabled(  JNIEnv*  env
1552                                                                                                                                                 ,jobject  thiz
1553                                                                                                                                                 ,jlong ptr) {
1554         return (jboolean)linphone_call_echo_cancellation_enabled((LinphoneCall*)ptr);
1555 }
1556
1557 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoLimiter(      JNIEnv*  env
1558                                                                                                                                                 ,jobject  thiz
1559                                                                                                                                                 ,jlong ptr
1560                                                                                                                                                 ,jboolean value) {
1561         linphone_call_enable_echo_limiter((LinphoneCall*)ptr,value);
1562 }
1563 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoLimiterEnabled(       JNIEnv*  env
1564                                                                                                                                                 ,jobject  thiz
1565                                                                                                                                                 ,jlong ptr) {
1566         return (jboolean)linphone_call_echo_limiter_enabled((LinphoneCall*)ptr);
1567 }
1568
1569 extern "C" jobject Java_org_linphone_core_LinphoneCallImpl_getReplacedCall(     JNIEnv*  env
1570                                                                                                                                                 ,jobject  thiz
1571                                                                                                                                                 ,jlong ptr) {
1572         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data(linphone_call_get_core((LinphoneCall*)ptr));       
1573         return lcd->getCall(env,linphone_call_get_replaced_call((LinphoneCall*)ptr));
1574 }
1575
1576 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getCurrentQuality(    JNIEnv*  env
1577                                                                                                                                                 ,jobject  thiz
1578                                                                                                                                                 ,jlong ptr) {
1579         return (jfloat)linphone_call_get_current_quality((LinphoneCall*)ptr);
1580 }
1581
1582 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getAverageQuality(    JNIEnv*  env
1583                                                                                                                                                 ,jobject  thiz
1584                                                                                                                                                 ,jlong ptr) {
1585         return (jfloat)linphone_call_get_average_quality((LinphoneCall*)ptr);
1586 }
1587
1588
1589 //LinphoneFriend
1590 extern "C" jlong Java_org_linphone_core_LinphoneFriendImpl_newLinphoneFriend(JNIEnv*  env
1591                                                                                                                                                 ,jobject  thiz
1592                                                                                                                                                 ,jstring jFriendUri) {
1593         LinphoneFriend* lResult;
1594
1595         if (jFriendUri) {
1596                 const char* friendUri = env->GetStringUTFChars(jFriendUri, NULL);
1597                 lResult= linphone_friend_new_with_addr(friendUri);
1598                 env->ReleaseStringUTFChars(jFriendUri, friendUri);
1599         } else {
1600                 lResult = linphone_friend_new();
1601         }
1602         return (jlong)lResult;
1603 }
1604 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setAddress(JNIEnv*  env
1605                                                                                                                                                 ,jobject  thiz
1606                                                                                                                                                 ,jlong ptr
1607                                                                                                                                                 ,jlong linphoneAddress) {
1608         linphone_friend_set_addr((LinphoneFriend*)ptr,(LinphoneAddress*)linphoneAddress);
1609 }
1610 extern "C" jlong Java_org_linphone_core_LinphoneFriendImpl_getAddress(JNIEnv*  env
1611                                                                                                                                                 ,jobject  thiz
1612                                                                                                                                                 ,jlong ptr) {
1613         return (jlong)linphone_friend_get_address((LinphoneFriend*)ptr);
1614 }
1615 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setIncSubscribePolicy(JNIEnv*  env
1616                                                                                                                                                 ,jobject  thiz
1617                                                                                                                                                 ,jlong ptr
1618                                                                                                                                                 ,jint policy) {
1619         linphone_friend_set_inc_subscribe_policy((LinphoneFriend*)ptr,(LinphoneSubscribePolicy)policy);
1620 }
1621 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getIncSubscribePolicy(JNIEnv*  env
1622                                                                                                                                                 ,jobject  thiz
1623                                                                                                                                                 ,jlong ptr) {
1624         return (jint)linphone_friend_get_inc_subscribe_policy((LinphoneFriend*)ptr);
1625 }
1626 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_enableSubscribes(JNIEnv*  env
1627                                                                                                                                                 ,jobject  thiz
1628                                                                                                                                                 ,jlong ptr
1629                                                                                                                                                 ,jboolean value) {
1630         linphone_friend_enable_subscribes((LinphoneFriend*)ptr,value);
1631 }
1632 extern "C" jboolean Java_org_linphone_core_LinphoneFriendImpl_isSubscribesEnabled(JNIEnv*  env
1633                                                                                                                                                 ,jobject  thiz
1634                                                                                                                                                 ,jlong ptr) {
1635         return (jboolean)linphone_friend_subscribes_enabled((LinphoneFriend*)ptr);
1636 }
1637 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getStatus(JNIEnv*  env
1638                                                                                                                                                 ,jobject  thiz
1639                                                                                                                                                 ,jlong ptr) {
1640         return (jint)linphone_friend_get_status((LinphoneFriend*)ptr);
1641 }
1642 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_edit(JNIEnv*  env
1643                                                                                                                                                 ,jobject  thiz
1644                                                                                                                                                 ,jlong ptr) {
1645         return linphone_friend_edit((LinphoneFriend*)ptr);
1646 }
1647 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_done(JNIEnv*  env
1648                                                                                                                                                 ,jobject  thiz
1649                                                                                                                                                 ,jlong ptr) {
1650          linphone_friend_done((LinphoneFriend*)ptr);
1651 }
1652 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFriend(JNIEnv*  env
1653                                                                                                                                                 ,jobject  thiz
1654                                                                                                                                                 ,jlong ptr
1655                                                                                                                                                 ,jlong lf) {
1656         linphone_core_remove_friend((LinphoneCore*)ptr, (LinphoneFriend*)lf);
1657 }
1658 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getFriendByAddress(JNIEnv*  env
1659                                                                                                                                                 ,jobject  thiz
1660                                                                                                                                                 ,jlong ptr
1661                                                                                                                                                 ,jstring jaddress) {
1662         const char* address = env->GetStringUTFChars(jaddress, NULL);
1663         LinphoneFriend *lf = linphone_core_get_friend_by_address((LinphoneCore*)ptr, address);
1664         env->ReleaseStringUTFChars(jaddress, address);
1665         return (jlong) lf;
1666 }
1667 //LinphoneChatRoom
1668 extern "C" jlong Java_org_linphone_core_LinphoneChatRoomImpl_getPeerAddress(JNIEnv*  env
1669                                                                                                                                                 ,jobject  thiz
1670                                                                                                                                                 ,jlong ptr) {
1671         return (jlong) linphone_chat_room_get_peer_address((LinphoneChatRoom*)ptr);
1672 }
1673 extern "C" jlong Java_org_linphone_core_LinphoneChatRoomImpl_createLinphoneChatMessage(JNIEnv*  env
1674                                                                                                                                                 ,jobject  thiz
1675                                                                                                                                                 ,jlong ptr
1676                                                                                                                                                 ,jstring jmessage) {
1677         const char* message = env->GetStringUTFChars(jmessage, NULL);
1678         LinphoneChatMessage *chatMessage = linphone_chat_room_create_message((LinphoneChatRoom *)ptr, message);
1679         env->ReleaseStringUTFChars(jmessage, message);
1680
1681         return (jlong) chatMessage;
1682 }
1683 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_setUserData(JNIEnv*  env
1684                                                                                                                                                 ,jobject  thiz
1685                                                                                                                                                 ,jlong ptr) {
1686         jobject ud = env->NewGlobalRef(thiz);
1687         linphone_chat_message_set_user_data((LinphoneChatMessage*)ptr,(void*) ud);
1688 }
1689 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getText(JNIEnv*  env
1690                                                                                                                                                 ,jobject  thiz
1691                                                                                                                                                 ,jlong ptr) {
1692         jstring jvalue =env->NewStringUTF(linphone_chat_message_get_text((LinphoneChatMessage*)ptr));
1693         return jvalue;
1694 }
1695
1696 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getCustomHeader(JNIEnv*  env
1697                                                                                                                                                 ,jobject  thiz
1698                                                                                                                                                 ,jlong ptr, jstring jheader_name) {
1699         const char *name=env->GetStringUTFChars(jheader_name,NULL);
1700         const char *value=linphone_chat_message_get_custom_header((LinphoneChatMessage*)ptr,name);
1701         env->ReleaseStringUTFChars(jheader_name, name);
1702         return value ? env->NewStringUTF(value) : NULL;
1703 }
1704
1705 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_addCustomHeader(JNIEnv*  env
1706                                                                                                                                                 ,jobject  thiz
1707                                                                                                                                                 ,jlong ptr, jstring jheader_name, jstring jheader_value) {
1708         const char *name=env->GetStringUTFChars(jheader_name,NULL);
1709         const char *value=env->GetStringUTFChars(jheader_value,NULL);
1710         linphone_chat_message_add_custom_header((LinphoneChatMessage*)ptr,name,value);
1711         env->ReleaseStringUTFChars(jheader_name, name);
1712         env->ReleaseStringUTFChars(jheader_value, value);
1713 }
1714
1715 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getExternalBodyUrl(JNIEnv*  env
1716                                                                                                                                                 ,jobject  thiz
1717                                                                                                                                                 ,jlong ptr) {
1718         jstring jvalue =env->NewStringUTF(linphone_chat_message_get_external_body_url((LinphoneChatMessage*)ptr));
1719         return jvalue;
1720 }
1721 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_setExternalBodyUrl(JNIEnv*  env
1722                                                                                                                                                 ,jobject  thiz
1723                                                                                                                                                 ,jlong ptr
1724                                                                                                                                                 ,jstring jurl) {
1725         const char* url = env->GetStringUTFChars(jurl, NULL);
1726         linphone_chat_message_set_external_body_url((LinphoneChatMessage *)ptr, url);
1727         env->ReleaseStringUTFChars(jurl, url);
1728 }
1729 extern "C" jlong Java_org_linphone_core_LinphoneChatMessageImpl_getFrom(JNIEnv*  env
1730                                                                                                                                                 ,jobject  thiz
1731                                                                                                                                                 ,jlong ptr) {
1732         return (jlong) linphone_chat_message_get_from((LinphoneChatMessage*)ptr);
1733 }
1734
1735 extern "C" jlong Java_org_linphone_core_LinphoneChatMessageImpl_getPeerAddress(JNIEnv*  env
1736                                                                                                                                                 ,jobject  thiz
1737                                                                                                                                                 ,jlong ptr) {
1738         return (jlong) linphone_chat_message_get_peer_address((LinphoneChatMessage*)ptr);
1739 }
1740
1741 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage(JNIEnv*  env
1742                                                                                                                                                 ,jobject  thiz
1743                                                                                                                                                 ,jlong ptr
1744                                                                                                                                                 ,jstring jmessage) {
1745         const char* message = env->GetStringUTFChars(jmessage, NULL);
1746         linphone_chat_room_send_message((LinphoneChatRoom*)ptr, message);
1747         env->ReleaseStringUTFChars(jmessage, message);
1748 }
1749
1750 static void chat_room_impl_callback(LinphoneChatMessage* msg, LinphoneChatMessageState state, void* ud) {
1751         JNIEnv *env = 0;
1752         jint result = jvm->AttachCurrentThread(&env,NULL);
1753         if (result != 0) {
1754                 ms_error("cannot attach VM\n");
1755                 return;
1756         }
1757
1758         jobject listener = (jobject) ud;
1759         jclass clazz = (jclass) env->GetObjectClass(listener);
1760         jmethodID method = env->GetMethodID(clazz, "onLinphoneChatMessageStateChanged","(Lorg/linphone/core/LinphoneChatMessage;Lorg/linphone/core/LinphoneChatMessage$State;)V");
1761
1762         LinphoneCore *lc = linphone_chat_room_get_lc(linphone_chat_message_get_chat_room(msg));
1763         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
1764         env->CallVoidMethod(
1765                         listener,
1766                         method,
1767                         (jobject)linphone_chat_message_get_user_data(msg),
1768                         env->CallStaticObjectMethod(lcData->chatMessageStateClass,lcData->chatMessageStateFromIntId,(jint)state));
1769
1770         if (state == LinphoneChatMessageStateDelivered || state == LinphoneChatMessageStateNotDelivered) {
1771                 env->DeleteGlobalRef(listener);
1772         }
1773 }
1774 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage2(JNIEnv*  env
1775                                                                                                                                                 ,jobject  thiz
1776                                                                                                                                                 ,jlong ptr
1777                                                                                                                                                 ,jlong jmessage
1778                                                                                                                                                 ,jobject jlistener) {
1779         jobject listener = env->NewGlobalRef(jlistener);
1780         linphone_chat_room_send_message2((LinphoneChatRoom*)ptr, (LinphoneChatMessage*)jmessage, chat_room_impl_callback, (void*)listener);
1781 }
1782 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoWindowId(JNIEnv* env
1783                                                                                                                                                 ,jobject thiz
1784                                                                                                                                                 ,jlong lc
1785                                                                                                                                                 ,jobject obj) {
1786         jobject oldWindow = (jobject) linphone_core_get_native_video_window_id((LinphoneCore*)lc);
1787         if (oldWindow != NULL) {
1788                 env->DeleteGlobalRef(oldWindow);
1789         }
1790         if (obj != NULL) {
1791                 obj = env->NewGlobalRef(obj);
1792         }
1793         linphone_core_set_native_video_window_id((LinphoneCore*)lc,(unsigned long)obj);
1794 }
1795
1796 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreviewWindowId(JNIEnv* env
1797                                                                                                                                                 ,jobject thiz
1798                                                                                                                                                 ,jlong lc
1799                                                                                                                                                 ,jobject obj) {
1800         jobject oldWindow = (jobject) linphone_core_get_native_preview_window_id((LinphoneCore*)lc);
1801         if (oldWindow != NULL) {
1802                 env->DeleteGlobalRef(oldWindow);
1803         }
1804         if (obj != NULL) {
1805                 obj = env->NewGlobalRef(obj);
1806         }
1807         linphone_core_set_native_preview_window_id((LinphoneCore*)lc,(unsigned long)obj);
1808 }
1809
1810 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDeviceRotation(JNIEnv* env
1811                                                                                                                                                 ,jobject thiz
1812                                                                                                                                                 ,jlong lc
1813                                                                                                                                                 ,jint rotation) {
1814         linphone_core_set_device_rotation((LinphoneCore*)lc,rotation);
1815 }
1816
1817
1818 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc, jint enum_value){
1819         linphone_core_set_firewall_policy((LinphoneCore*)lc,(LinphoneFirewallPolicy)enum_value);
1820 }
1821
1822 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc){
1823         return (jint)linphone_core_get_firewall_policy((LinphoneCore*)lc);
1824 }
1825
1826 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setStunServer(JNIEnv *env, jobject thiz, jlong lc, jstring jserver){
1827         const char* server = NULL;
1828         if (jserver) server=env->GetStringUTFChars(jserver, NULL);
1829         linphone_core_set_stun_server((LinphoneCore*)lc,server);
1830         if (server) env->ReleaseStringUTFChars(jserver,server);
1831 }
1832
1833 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getStunServer(JNIEnv *env, jobject thiz, jlong lc){
1834         const char *ret= linphone_core_get_stun_server((LinphoneCore*)lc);
1835         if (ret==NULL) return NULL;
1836         jstring jvalue =env->NewStringUTF(ret);
1837         return jvalue;
1838 }
1839
1840 //CallParams
1841 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_isLowBandwidthEnabled(JNIEnv *env, jobject thiz, jlong cp) {
1842         return (jboolean) linphone_call_params_low_bandwidth_enabled((LinphoneCallParams *)cp);
1843 }
1844
1845 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_enableLowBandwidth(JNIEnv *env, jobject thiz, jlong cp, jboolean enable) {
1846         linphone_call_params_enable_low_bandwidth((LinphoneCallParams *)cp, enable);
1847 }
1848
1849 extern "C" jlong Java_org_linphone_core_LinphoneCallParamsImpl_getUsedAudioCodec(JNIEnv *env, jobject thiz, jlong cp) {
1850         return (jlong)linphone_call_params_get_used_audio_codec((LinphoneCallParams *)cp);
1851 }
1852
1853 extern "C" jlong Java_org_linphone_core_LinphoneCallParamsImpl_getUsedVideoCodec(JNIEnv *env, jobject thiz, jlong cp) {
1854         return (jlong)linphone_call_params_get_used_video_codec((LinphoneCallParams *)cp);
1855 }
1856
1857 extern "C" jint Java_org_linphone_core_LinphoneCallParamsImpl_getMediaEncryption(JNIEnv*  env
1858                                                                                                                                                         ,jobject  thiz
1859                                                                                                                                                         ,jlong cp
1860                                                                                                                                                         ) {
1861         return (jint)linphone_call_params_get_media_encryption((LinphoneCallParams*)cp);
1862 }
1863
1864 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_setMediaEncryption(JNIEnv*  env
1865                                                                                                                                                         ,jobject  thiz
1866                                                                                                                                                         ,jlong cp
1867                                                                                                                                                         ,jint jmenc) {
1868         linphone_call_params_set_media_encryption((LinphoneCallParams*)cp,(LinphoneMediaEncryption)jmenc);
1869 }
1870
1871 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_audioBandwidth(JNIEnv *env, jobject thiz, jlong lcp, jint bw){
1872         linphone_call_params_set_audio_bandwidth_limit((LinphoneCallParams*)lcp, bw);
1873 }
1874
1875 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_enableVideo(JNIEnv *env, jobject thiz, jlong lcp, jboolean b){
1876         linphone_call_params_enable_video((LinphoneCallParams*)lcp, b);
1877 }
1878
1879 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_getVideoEnabled(JNIEnv *env, jobject thiz, jlong lcp){
1880         return (jboolean)linphone_call_params_video_enabled((LinphoneCallParams*)lcp);
1881 }
1882
1883 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_localConferenceMode(JNIEnv *env, jobject thiz, jlong lcp){
1884         return (jboolean)linphone_call_params_local_conference_mode((LinphoneCallParams*)lcp);
1885 }
1886
1887 extern "C" jstring Java_org_linphone_core_LinphoneCallParamsImpl_getCustomHeader(JNIEnv *env, jobject thiz, jlong lcp, jstring jheader_name){
1888         const char* header_name=env->GetStringUTFChars(jheader_name, NULL);
1889         const char *header_value=linphone_call_params_get_custom_header((LinphoneCallParams*)lcp,header_name);
1890         env->ReleaseStringUTFChars(jheader_name, header_name);
1891         return header_value ? env->NewStringUTF(header_value) : NULL;
1892 }
1893
1894 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_addCustomHeader(JNIEnv *env, jobject thiz, jlong lcp, jstring jheader_name, jstring jheader_value){
1895         const char* header_name=env->GetStringUTFChars(jheader_name, NULL);
1896         const char* header_value=env->GetStringUTFChars(jheader_value, NULL);
1897         linphone_call_params_add_custom_header((LinphoneCallParams*)lcp,header_name,header_value);
1898         env->ReleaseStringUTFChars(jheader_name, header_name);
1899         env->ReleaseStringUTFChars(jheader_value, header_value);
1900 }
1901
1902 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_setRecordFile(JNIEnv *env, jobject thiz, jlong lcp, jstring jrecord_file){
1903         if (jrecord_file){
1904                 const char* record_file=env->GetStringUTFChars(jrecord_file, NULL);
1905                 linphone_call_params_set_record_file((LinphoneCallParams*)lcp,record_file);
1906                 env->ReleaseStringUTFChars(jrecord_file, record_file);
1907         }else linphone_call_params_set_record_file((LinphoneCallParams*)lcp,NULL);
1908 }
1909
1910 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_destroy(JNIEnv *env, jobject thiz, jlong lc){
1911         return linphone_call_params_destroy((LinphoneCallParams*)lc);
1912 }
1913 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_createDefaultCallParams(JNIEnv *env, jobject thiz, jlong lc){
1914         return (jlong) linphone_core_create_default_call_parameters((LinphoneCore*)lc);
1915 }
1916
1917 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteParams(JNIEnv *env, jobject thiz, jlong lc){
1918         if (linphone_call_get_remote_params((LinphoneCall*)lc) == NULL) {
1919                         return (jlong) 0;
1920         }
1921         return (jlong) linphone_call_params_copy(linphone_call_get_remote_params((LinphoneCall*)lc));
1922 }
1923
1924 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCurrentParamsCopy(JNIEnv *env, jobject thiz, jlong lc){
1925         return (jlong) linphone_call_params_copy(linphone_call_get_current_params((LinphoneCall*)lc));
1926 }
1927
1928 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableCamera(JNIEnv *env, jobject thiz, jlong lc, jboolean b){
1929         linphone_call_enable_camera((LinphoneCall *)lc, (bool_t) b);
1930 }
1931
1932 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_cameraEnabled(JNIEnv *env, jobject thiz, jlong lc){
1933         return (jboolean)linphone_call_camera_enabled((LinphoneCall *)lc);
1934 }
1935
1936 extern "C" void Java_org_linphone_core_LinphoneCallImpl_startRecording(JNIEnv *env, jobject thiz, jlong lc){
1937         linphone_call_start_recording((LinphoneCall *)lc);
1938 }
1939
1940 extern "C" void Java_org_linphone_core_LinphoneCallImpl_stopRecording(JNIEnv *env, jobject thiz, jlong lc){
1941         linphone_call_stop_recording((LinphoneCall *)lc);
1942 }
1943
1944 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong addr, jlong params){
1945         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
1946         return  lcd->getCall(env,linphone_core_invite_address_with_params((LinphoneCore *)lc, (const LinphoneAddress *)addr, (const LinphoneCallParams *)params));
1947 }
1948
1949 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1950         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (LinphoneCallParams *)params);
1951 }
1952
1953 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateCall(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1954         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (const LinphoneCallParams *)params);
1955 }
1956
1957 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc, jint width, jint height){
1958         MSVideoSize vsize;
1959         vsize.width = (int)width;
1960         vsize.height = (int)height;
1961         linphone_core_set_preferred_video_size((LinphoneCore *)lc, vsize);
1962 }
1963
1964 extern "C" jintArray Java_org_linphone_core_LinphoneCoreImpl_getPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc){
1965         MSVideoSize vsize = linphone_core_get_preferred_video_size((LinphoneCore *)lc);
1966     jintArray arr = env->NewIntArray(2);
1967         int tVsize [2]= {vsize.width,vsize.height};
1968     env->SetIntArrayRegion(arr, 0, 2, tVsize);
1969     return arr;
1970 }
1971
1972 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1973         linphone_core_set_download_bandwidth((LinphoneCore *)lc, (int) bw);
1974 }
1975
1976 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1977         linphone_core_set_upload_bandwidth((LinphoneCore *)lc, (int) bw);
1978 }
1979
1980 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUseSipInfoForDtmfs(JNIEnv *env, jobject thiz, jlong lc, jboolean use){
1981         linphone_core_set_use_info_for_dtmf((LinphoneCore *)lc, (bool) use);
1982 }
1983
1984 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUseRfc2833ForDtmfs(JNIEnv *env, jobject thiz, jlong lc, jboolean use){
1985         linphone_core_set_use_rfc2833_for_dtmf((LinphoneCore *)lc, (bool) use);
1986 }
1987
1988 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1989         linphone_core_set_download_ptime((LinphoneCore *)lc, (int) ptime);
1990 }
1991
1992 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1993         linphone_core_set_upload_ptime((LinphoneCore *)lc, (int) ptime);
1994 }
1995
1996 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_getState(JNIEnv*  env,jobject thiz,jlong ptr) {
1997         return (jint) linphone_proxy_config_get_state((const LinphoneProxyConfig *) ptr);
1998 }
1999 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setExpires(JNIEnv*  env,jobject thiz,jlong ptr,jint delay) {
2000         linphone_proxy_config_expires((LinphoneProxyConfig *) ptr, (int) delay);
2001 }
2002
2003 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getDuration(JNIEnv*  env,jobject thiz,jlong ptr) {
2004         return (jint)linphone_call_get_duration((LinphoneCall *) ptr);
2005 }
2006
2007 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getSignalingTransportPort(JNIEnv* env,jobject thiz,jlong ptr, jint code) {
2008         LCSipTransports tr;
2009         linphone_core_get_sip_transports((LinphoneCore *) ptr, &tr);
2010                 switch (code) {
2011         case 0:
2012                 return tr.udp_port;
2013         case 1:
2014                 return tr.tcp_port;
2015         case 3:
2016                 return tr.tls_port;
2017         default:
2018                 return -2;
2019         }
2020 }
2021
2022 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setSignalingTransportPorts(JNIEnv*  env,jobject thiz,jlong ptr,jint udp, jint tcp, jint tls) {
2023         LinphoneCore *lc = (LinphoneCore *) ptr;
2024         LCSipTransports tr;
2025         tr.udp_port = udp;
2026         tr.tcp_port = tcp;
2027         tr.tls_port = tls;
2028
2029         linphone_core_set_sip_transports(lc, &tr); // tr will be copied
2030 }
2031
2032 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableIpv6(JNIEnv* env,jobject  thiz
2033               ,jlong lc, jboolean enable) {
2034               linphone_core_enable_ipv6((LinphoneCore*)lc,enable);
2035 }
2036
2037 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_adjustSoftwareVolume(JNIEnv* env,jobject  thiz
2038               ,jlong ptr, jint db) {
2039         linphone_core_set_playback_gain_db((LinphoneCore *) ptr, db);
2040 }
2041
2042 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2043         return (jint)linphone_core_pause_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2044 }
2045 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
2046         return (jint)linphone_core_pause_all_calls((LinphoneCore *) pCore);
2047 }
2048 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_resumeCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2049         return (jint)linphone_core_resume_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2050 }
2051 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInConference(JNIEnv *env,jobject thiz,jlong pCore) {
2052         return (jboolean)linphone_core_is_in_conference((LinphoneCore *) pCore);
2053 }
2054 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_enterConference(JNIEnv *env,jobject thiz,jlong pCore) {
2055         return (jboolean)(0 == linphone_core_enter_conference((LinphoneCore *) pCore));
2056 }
2057 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_leaveConference(JNIEnv *env,jobject thiz,jlong pCore) {
2058         linphone_core_leave_conference((LinphoneCore *) pCore);
2059 }
2060 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAllToConference(JNIEnv *env,jobject thiz,jlong pCore) {
2061         linphone_core_add_all_to_conference((LinphoneCore *) pCore);
2062 }
2063
2064 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addToConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2065         linphone_core_add_to_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2066 }
2067
2068 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFromConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2069         linphone_core_remove_from_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2070 }
2071
2072 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateConference(JNIEnv *env,jobject thiz,jlong pCore) {
2073         linphone_core_terminate_conference((LinphoneCore *) pCore);
2074 }
2075 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getConferenceSize(JNIEnv *env,jobject thiz,jlong pCore) {
2076         return (jint)linphone_core_get_conference_size((LinphoneCore *) pCore);
2077 }
2078
2079 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_startConferenceRecording(JNIEnv *env,jobject thiz,jlong pCore, jstring jpath){
2080         int err=-1;
2081         if (jpath){
2082                 const char *path=env->GetStringUTFChars(jpath, NULL);
2083                 err=linphone_core_start_conference_recording((LinphoneCore*)pCore,path);
2084                 env->ReleaseStringUTFChars(jpath,path);
2085         }
2086         return err;
2087 }
2088
2089 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_stopConferenceRecording(JNIEnv *env,jobject thiz,jlong pCore){
2090         int err=linphone_core_stop_conference_recording((LinphoneCore*)pCore);
2091         return err;
2092 }
2093
2094 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
2095         linphone_core_terminate_all_calls((LinphoneCore *) pCore);
2096 }
2097 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCall(JNIEnv *env,jobject thiz,jlong pCore,jint position) {
2098         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
2099         LinphoneCall* lCall = (LinphoneCall*) ms_list_nth_data(linphone_core_get_calls((LinphoneCore *) pCore),position);
2100         return lcd->getCall(env,lCall);
2101 }
2102 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getCallsNb(JNIEnv *env,jobject thiz,jlong pCore) {
2103         return (jint)ms_list_size(linphone_core_get_calls((LinphoneCore *) pCore));
2104 }
2105
2106 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_transferCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jstring jReferTo) {
2107         const char* cReferTo=env->GetStringUTFChars(jReferTo, NULL);
2108         jint err = linphone_core_transfer_call((LinphoneCore *) pCore, (LinphoneCall *) pCall, cReferTo);
2109         env->ReleaseStringUTFChars(jReferTo, cReferTo);
2110         return err;
2111 }
2112 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_transferCallToAnother(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jlong pDestCall) {
2113         return (jint)linphone_core_transfer_call_to_another((LinphoneCore *) pCore, (LinphoneCall *) pCall, (LinphoneCall *) pDestCall);
2114 }
2115
2116 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setZrtpSecretsCache(JNIEnv *env,jobject thiz,jlong pCore, jstring jFile) {
2117         if (jFile) {
2118                 const char* cFile=env->GetStringUTFChars(jFile, NULL);
2119                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,cFile);
2120                 env->ReleaseStringUTFChars(jFile, cFile);
2121         } else {
2122                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,NULL);
2123         }
2124 }
2125
2126 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_findCallFromUri(JNIEnv *env,jobject thiz,jlong pCore, jstring jUri) {
2127         const char* cUri=env->GetStringUTFChars(jUri, NULL);
2128         LinphoneCall *call= (LinphoneCall *) linphone_core_find_call_from_uri((LinphoneCore *) pCore,cUri);
2129         env->ReleaseStringUTFChars(jUri, cUri);
2130         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
2131         return (jobject) lcdata->getCall(env,call);
2132 }
2133
2134
2135 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_setVideoDevice(JNIEnv *env,jobject thiz,jlong pCore,jint id) {
2136         LinphoneCore* lc = (LinphoneCore *) pCore;
2137         const char** devices = linphone_core_get_video_devices(lc);
2138         if (devices == NULL) {
2139                 ms_error("No existing video devices\n");
2140                 return -1;
2141         }
2142         int i;
2143         for(i=0; i<=id; i++) {
2144                 if (devices[i] == NULL)
2145                         break;
2146                 ms_message("Existing device %d : %s\n", i, devices[i]);
2147                 if (i==id) {
2148                         return (jint)linphone_core_set_video_device(lc, devices[i]);
2149                 }
2150         }
2151         return -1;
2152 }
2153
2154 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getVideoDevice(JNIEnv *env,jobject thiz,jlong pCore) {
2155         LinphoneCore* lc = (LinphoneCore *) pCore;
2156         const char** devices = linphone_core_get_video_devices(lc);
2157         if (devices == NULL) {
2158                 ms_error("No existing video devices\n");
2159                 return -1;
2160         }
2161         const char* cam = linphone_core_get_video_device(lc);
2162         if (cam == NULL) {
2163                 ms_error("No current video device\n");
2164         } else {
2165                 int i=0;
2166                 while(devices[i] != NULL) {
2167                         if (strcmp(devices[i], cam) == 0)
2168                                 return i;
2169                         i++;
2170                 }
2171         }
2172         ms_warning("Returning default (0) device\n");
2173         return 0;
2174 }
2175
2176 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getAuthenticationToken(JNIEnv*  env,jobject thiz,jlong ptr) {
2177         LinphoneCall *call = (LinphoneCall *) ptr;
2178         const char* token = linphone_call_get_authentication_token(call);
2179         if (token == NULL) return NULL;
2180         return env->NewStringUTF(token);
2181 }
2182 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr) {
2183         LinphoneCall *call = (LinphoneCall *) ptr;
2184         return (jboolean)linphone_call_get_authentication_token_verified(call);
2185 }
2186 extern "C" void Java_org_linphone_core_LinphoneCallImpl_setAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr,jboolean verified) {
2187         LinphoneCall *call = (LinphoneCall *) ptr;
2188         linphone_call_set_authentication_token_verified(call, verified);
2189 }
2190
2191 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getPlayVolume(JNIEnv* env, jobject thiz, jlong ptr) {
2192         LinphoneCall *call = (LinphoneCall *) ptr;
2193         return (jfloat)linphone_call_get_play_volume(call);
2194 }
2195
2196 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_soundResourcesLocked(JNIEnv* env,jobject thiz,jlong ptr){
2197         return (jboolean)linphone_core_sound_resources_locked((LinphoneCore *) ptr);
2198 }
2199
2200 // Needed by Galaxy S (can't switch to/from speaker while playing and still keep mic working)
2201 // Implemented directly in msandroid.cpp (sound filters for Android).
2202 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_forceSpeakerState(JNIEnv *env, jobject thiz, jlong ptr, jboolean speakerOn) {
2203         LinphoneCore *lc = (LinphoneCore *)ptr;
2204         LinphoneCall *call = linphone_core_get_current_call(lc);
2205         if (call && call->audiostream && call->audiostream->soundread) {
2206                 bool_t on = speakerOn;
2207                 ms_filter_call_method(call->audiostream->soundread, MS_AUDIO_CAPTURE_FORCE_SPEAKER_STATE, &on);
2208         }
2209 }
2210 // End Galaxy S hack functions
2211
2212
2213 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMaxCalls(JNIEnv *env,jobject thiz,jlong pCore) {
2214         return (jint) linphone_core_get_max_calls((LinphoneCore *) pCore);
2215 }
2216 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMaxCalls(JNIEnv *env,jobject thiz,jlong pCore, jint max) {
2217         linphone_core_set_max_calls((LinphoneCore *) pCore, (int) max);
2218 }
2219
2220 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelAddServerAndMirror(JNIEnv *env,jobject thiz,jlong pCore,
2221                 jstring jHost, jint port, jint mirror, jint delay) {
2222         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel;
2223         if (!tunnel) return;
2224
2225         const char* cHost=env->GetStringUTFChars(jHost, NULL);
2226         LinphoneTunnelConfig *tunnelconfig = linphone_tunnel_config_new();
2227         linphone_tunnel_config_set_host(tunnelconfig, cHost);
2228         linphone_tunnel_config_set_port(tunnelconfig, port);
2229         linphone_tunnel_config_set_delay(tunnelconfig, delay);
2230         linphone_tunnel_config_set_remote_udp_mirror_port(tunnelconfig, mirror);
2231         linphone_tunnel_add_server(tunnel, tunnelconfig);
2232         env->ReleaseStringUTFChars(jHost, cHost);
2233 }
2234
2235 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelSetHttpProxy(JNIEnv *env,jobject thiz,jlong pCore,
2236                 jstring jHost, jint port, jstring username, jstring password) {
2237
2238         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel;
2239         if (!tunnel) return;
2240         const char* cHost=(jHost!=NULL) ? env->GetStringUTFChars(jHost, NULL) : NULL;
2241         const char* cUsername= (username!=NULL) ? env->GetStringUTFChars(username, NULL) : NULL;
2242         const char* cPassword= (password!=NULL) ? env->GetStringUTFChars(password, NULL) : NULL;
2243         linphone_tunnel_set_http_proxy(tunnel,cHost, port,cUsername,cPassword);
2244         if (cHost) env->ReleaseStringUTFChars(jHost, cHost);
2245         if (cUsername) env->ReleaseStringUTFChars(username, cUsername);
2246         if (cPassword) env->ReleaseStringUTFChars(password, cPassword);
2247 }
2248
2249
2250 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelAutoDetect(JNIEnv *env,jobject thiz,jlong pCore) {
2251         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2252         linphone_tunnel_auto_detect(tunnel);
2253 }
2254
2255 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelCleanServers(JNIEnv *env,jobject thiz,jlong pCore) {
2256         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2257         linphone_tunnel_clean_servers(tunnel);
2258 }
2259
2260 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelEnable(JNIEnv *env,jobject thiz,jlong pCore, jboolean enable) {
2261         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2262         linphone_tunnel_enable(tunnel, enable);
2263 }
2264
2265
2266 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUserAgent(JNIEnv *env,jobject thiz,jlong pCore, jstring name, jstring version){
2267         const char* cname=env->GetStringUTFChars(name, NULL);
2268         const char* cversion=env->GetStringUTFChars(version, NULL);
2269         linphone_core_set_user_agent((LinphoneCore *)pCore,cname,cversion);
2270         env->ReleaseStringUTFChars(name, cname);
2271         env->ReleaseStringUTFChars(version, cversion);
2272 }
2273
2274 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isTunnelAvailable(JNIEnv *env,jobject thiz){
2275         return (jboolean)linphone_core_tunnel_available();
2276 }
2277
2278 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPolicy(JNIEnv *env, jobject thiz, jlong lc, jboolean autoInitiate, jboolean autoAccept){
2279         LinphoneVideoPolicy vpol;
2280         vpol.automatically_initiate = autoInitiate;
2281         vpol.automatically_accept = autoAccept;
2282         linphone_core_set_video_policy((LinphoneCore *)lc, &vpol);
2283 }
2284
2285 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setStaticPicture(JNIEnv *env, jobject thiz, jlong lc, jstring path) {
2286         const char *cpath = env->GetStringUTFChars(path, NULL);
2287         linphone_core_set_static_picture((LinphoneCore *)lc, cpath);
2288         env->ReleaseStringUTFChars(path, cpath);
2289 }
2290
2291 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setCpuCountNative(JNIEnv *env, jobject thiz, jint count) {
2292         ms_set_cpu_count(count);
2293 }
2294
2295 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setAudioPort(JNIEnv *env, jobject thiz, jlong lc, jint port) {
2296         linphone_core_set_audio_port((LinphoneCore *)lc, port);
2297 }
2298
2299 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPort(JNIEnv *env, jobject thiz, jlong lc, jint port) {
2300         linphone_core_set_video_port((LinphoneCore *)lc, port);
2301 }
2302
2303 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setAudioPortRange(JNIEnv *env, jobject thiz, jlong lc, jint min_port, jint max_port) {
2304         linphone_core_set_audio_port_range((LinphoneCore *)lc, min_port, max_port);
2305 }
2306
2307 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPortRange(JNIEnv *env, jobject thiz, jlong lc, jint min_port, jint max_port) {
2308         linphone_core_set_video_port_range((LinphoneCore *)lc, min_port, max_port);
2309 }
2310
2311 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setIncomingTimeout(JNIEnv *env, jobject thiz, jlong lc, jint timeout) {
2312         linphone_core_set_inc_timeout((LinphoneCore *)lc, timeout);
2313 }
2314
2315 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setInCallTimeout(JNIEnv *env, jobject thiz, jlong lc, jint timeout) {
2316         linphone_core_set_in_call_timeout((LinphoneCore *)lc, timeout);
2317 }
2318
2319 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getVersion(JNIEnv*  env,jobject  thiz,jlong ptr) {
2320         jstring jvalue =env->NewStringUTF(linphone_core_get_version());
2321         return jvalue;
2322 }
2323
2324 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getConfig(JNIEnv *env, jobject thiz, jlong lc) {
2325         return (jlong) linphone_core_get_config((LinphoneCore *)lc);
2326 }
2327
2328 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_upnpAvailable(JNIEnv *env, jobject thiz, jlong lc) {
2329         return (jboolean) linphone_core_upnp_available((LinphoneCore *)lc);
2330 }
2331
2332 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getUpnpState(JNIEnv *env, jobject thiz, jlong lc) {
2333         return (jint) linphone_core_get_upnp_state((LinphoneCore *)lc);
2334 }
2335
2336 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getUpnpExternalIpaddress(JNIEnv *env, jobject thiz, jlong lc) {
2337         jstring jvalue = env->NewStringUTF(linphone_core_get_upnp_external_ipaddress((LinphoneCore *)lc));
2338         return jvalue;
2339 }
2340
2341 extern "C" jlong Java_org_linphone_core_LpConfigImpl_newLpConfigImpl(JNIEnv *env, jobject thiz, jstring file) {
2342         const char *cfile = env->GetStringUTFChars(file, NULL);
2343         LpConfig *lp = lp_config_new(cfile);
2344         env->ReleaseStringUTFChars(file, cfile);
2345         return (jlong) lp;
2346 }
2347
2348 extern "C" void Java_org_linphone_core_LpConfigImpl_sync(JNIEnv *env, jobject thiz, jlong lpc) {
2349         LpConfig *lp = (LpConfig *)lpc;
2350         lp_config_sync(lp);
2351 }
2352
2353 extern "C" void Java_org_linphone_core_LpConfigImpl_delete(JNIEnv *env, jobject thiz, jlong lpc) {
2354         LpConfig *lp = (LpConfig *)lpc;
2355         lp_config_destroy(lp);
2356 }
2357
2358 extern "C" void Java_org_linphone_core_LpConfigImpl_setInt(JNIEnv *env, jobject thiz, jlong lpc,
2359                 jstring section, jstring key, jint value) {
2360         const char *csection = env->GetStringUTFChars(section, NULL);
2361         const char *ckey = env->GetStringUTFChars(key, NULL);
2362         lp_config_set_int((LpConfig *)lpc, csection, ckey, (int) value);
2363         env->ReleaseStringUTFChars(section, csection);
2364         env->ReleaseStringUTFChars(key, ckey);
2365 }
2366