]> sjero.net Git - linphone/blob - coreapi/linphonecore_jni.cc
ddc26f657146565bb40605b052a63e85650b41fe
[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         return (jlong)linphone_auth_info_new(NULL,NULL,NULL,NULL,NULL);
1192 }
1193 extern "C" void Java_org_linphone_core_LinphoneAuthInfoImpl_delete(JNIEnv* env
1194                 , jobject thiz
1195                 , jlong ptr) {
1196         linphone_auth_info_destroy((LinphoneAuthInfo*)ptr);
1197 }
1198 /*
1199  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1200  * Method:    getPassword
1201  * Signature: (J)Ljava/lang/String;
1202  */
1203 JNIEXPORT jstring JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_getPassword
1204 (JNIEnv *env , jobject, jlong auth_info) {
1205         const char* passwd = linphone_auth_info_get_passwd((LinphoneAuthInfo*)auth_info);
1206         if (passwd) {
1207                 return env->NewStringUTF(passwd);
1208         } else {
1209                 return NULL;
1210         }
1211
1212 }
1213 /*
1214  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1215  * Method:    getRealm
1216  * Signature: (J)Ljava/lang/String;
1217  */
1218 JNIEXPORT jstring JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_getRealm
1219 (JNIEnv *env , jobject, jlong auth_info) {
1220         const char* realm = linphone_auth_info_get_realm((LinphoneAuthInfo*)auth_info);
1221         if (realm) {
1222                 return env->NewStringUTF(realm);
1223         } else {
1224                 return NULL;
1225         }
1226
1227 }
1228
1229 /*
1230  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1231  * Method:    getUsername
1232  * Signature: (J)Ljava/lang/String;
1233  */
1234 JNIEXPORT jstring JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_getUsername
1235 (JNIEnv *env , jobject, jlong auth_info) {
1236         const char* username = linphone_auth_info_get_username((LinphoneAuthInfo*)auth_info);
1237         if (username) {
1238                 return env->NewStringUTF(username);
1239         } else {
1240                 return NULL;
1241         }
1242 }
1243
1244 /*
1245  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1246  * Method:    setPassword
1247  * Signature: (JLjava/lang/String;)V
1248  */
1249 JNIEXPORT void JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_setPassword
1250 (JNIEnv *env, jobject, jlong auth_info, jstring jpassword) {
1251         const char* password = jpassword?env->GetStringUTFChars(jpassword, NULL):NULL;
1252         linphone_auth_info_set_passwd((LinphoneAuthInfo*)auth_info,password);
1253         if (password) env->ReleaseStringUTFChars(jpassword, password);
1254 }
1255
1256 /*
1257  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1258  * Method:    setRealm
1259  * Signature: (JLjava/lang/String;)V
1260  */
1261 JNIEXPORT void JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_setRealm
1262 (JNIEnv *env, jobject, jlong auth_info, jstring jrealm) {
1263         const char* realm = jrealm?env->GetStringUTFChars(jrealm, NULL):NULL;
1264         linphone_auth_info_set_realm((LinphoneAuthInfo*)auth_info,realm);
1265         if (realm) env->ReleaseStringUTFChars(jrealm, realm);
1266 }
1267 /*
1268  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1269  * Method:    setUsername
1270  * Signature: (JLjava/lang/String;)V
1271  */
1272 JNIEXPORT void JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_setUsername
1273 (JNIEnv *env, jobject, jlong auth_info, jstring jusername) {
1274         const char* username = jusername?env->GetStringUTFChars(jusername, NULL):NULL;
1275         linphone_auth_info_set_username((LinphoneAuthInfo*)auth_info,username);
1276         if (username) env->ReleaseStringUTFChars(jusername, username);
1277 }
1278
1279 /*
1280  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1281  * Method:    setAuthUserId
1282  * Signature: (JLjava/lang/String;)V
1283  */
1284 JNIEXPORT void JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_setUserId
1285 (JNIEnv *env, jobject, jlong auth_info, jstring juserid) {
1286         const char* userid = juserid?env->GetStringUTFChars(juserid, NULL):NULL;
1287         linphone_auth_info_set_userid((LinphoneAuthInfo*)auth_info,userid);
1288         if (userid) env->ReleaseStringUTFChars(juserid, userid);
1289 }
1290
1291 /*
1292  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1293  * Method:    getAuthUserId
1294  * Signature: (J)Ljava/lang/String;
1295  */
1296 JNIEXPORT jstring JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_getUserId
1297 (JNIEnv *env , jobject, jlong auth_info) {
1298         const char* userid = linphone_auth_info_get_userid((LinphoneAuthInfo*)auth_info);
1299         if (userid) {
1300                 return env->NewStringUTF(userid);
1301         } else {
1302                 return NULL;
1303         }
1304 }
1305
1306 /*
1307  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1308  * Method:    setHa1
1309  * Signature: (JLjava/lang/String;)V
1310  */
1311 JNIEXPORT void JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_setHa1
1312 (JNIEnv *env, jobject, jlong auth_info, jstring jha1) {
1313         const char* ha1 = jha1?env->GetStringUTFChars(jha1, NULL):NULL;
1314         linphone_auth_info_set_ha1((LinphoneAuthInfo*)auth_info,ha1);
1315         if (ha1) env->ReleaseStringUTFChars(jha1, ha1);
1316 }
1317
1318
1319 /*
1320  * Class:     org_linphone_core_LinphoneAuthInfoImpl
1321  * Method:    getHa1
1322  * Signature: (J)Ljava/lang/String;
1323  */
1324 JNIEXPORT jstring JNICALL Java_org_linphone_core_LinphoneAuthInfoImpl_getHa1
1325 (JNIEnv *env , jobject, jlong auth_info) {
1326         const char* ha1 = linphone_auth_info_get_ha1((LinphoneAuthInfo*)auth_info);
1327         if (ha1) {
1328                 return env->NewStringUTF(ha1);
1329         } else {
1330                 return NULL;
1331         }
1332 }
1333
1334
1335 //LinphoneAddress
1336
1337 extern "C" jlong Java_org_linphone_core_LinphoneAddressImpl_newLinphoneAddressImpl(JNIEnv*  env
1338                                                                                                                                                                         ,jobject  thiz
1339                                                                                                                                                                         ,jstring juri
1340                                                                                                                                                                         ,jstring jdisplayName) {
1341         const char* uri = env->GetStringUTFChars(juri, NULL);
1342         LinphoneAddress* address = linphone_address_new(uri);
1343         if (jdisplayName && address) {
1344                 const char* displayName = env->GetStringUTFChars(jdisplayName, NULL);
1345                 linphone_address_set_display_name(address,displayName);
1346                 env->ReleaseStringUTFChars(jdisplayName, displayName);
1347         }
1348         env->ReleaseStringUTFChars(juri, uri);
1349
1350         return  (jlong) address;
1351 }
1352 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_delete(JNIEnv*  env
1353                                                                                                                                                 ,jobject  thiz
1354                                                                                                                                                 ,jlong ptr) {
1355         linphone_address_destroy((LinphoneAddress*)ptr);
1356 }
1357
1358 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDisplayName(JNIEnv*  env
1359                                                                                                                                                 ,jobject  thiz
1360                                                                                                                                                 ,jlong ptr) {
1361         const char* displayName = linphone_address_get_display_name((LinphoneAddress*)ptr);
1362         if (displayName) {
1363                 return env->NewStringUTF(displayName);
1364         } else {
1365                 return NULL;
1366         }
1367 }
1368 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getUserName(JNIEnv*  env
1369                                                                                                                                                 ,jobject  thiz
1370                                                                                                                                                 ,jlong ptr) {
1371         const char* userName = linphone_address_get_username((LinphoneAddress*)ptr);
1372         if (userName) {
1373                 return env->NewStringUTF(userName);
1374         } else {
1375                 return NULL;
1376         }
1377 }
1378 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDomain(JNIEnv*  env
1379                                                                                                                                                 ,jobject  thiz
1380                                                                                                                                                 ,jlong ptr) {
1381         const char* domain = linphone_address_get_domain((LinphoneAddress*)ptr);
1382         if (domain) {
1383                 return env->NewStringUTF(domain);
1384         } else {
1385                 return NULL;
1386         }
1387 }
1388
1389 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toString(JNIEnv*  env
1390                                                                                                                                                 ,jobject  thiz
1391                                                                                                                                                 ,jlong ptr) {
1392         char* uri = linphone_address_as_string((LinphoneAddress*)ptr);
1393         jstring juri =env->NewStringUTF(uri);
1394         ms_free(uri);
1395         return juri;
1396 }
1397 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toUri(JNIEnv*  env
1398                                                                                                                                                 ,jobject  thiz
1399                                                                                                                                                 ,jlong ptr) {
1400         char* uri = linphone_address_as_string_uri_only((LinphoneAddress*)ptr);
1401         jstring juri =env->NewStringUTF(uri);
1402         ms_free(uri);
1403         return juri;
1404 }
1405 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_setDisplayName(JNIEnv*  env
1406                                                                                                                                                 ,jobject  thiz
1407                                                                                                                                                 ,jlong address
1408                                                                                                                                                 ,jstring jdisplayName) {
1409         const char* displayName = jdisplayName!= NULL?env->GetStringUTFChars(jdisplayName, NULL):NULL;
1410         linphone_address_set_display_name((LinphoneAddress*)address,displayName);
1411         if (displayName != NULL) env->ReleaseStringUTFChars(jdisplayName, displayName);
1412 }
1413
1414
1415 //CallLog
1416 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getFrom(JNIEnv*  env
1417                                                                                                                                                 ,jobject  thiz
1418                                                                                                                                                 ,jlong ptr) {
1419         return (jlong)((LinphoneCallLog*)ptr)->from;
1420 }
1421 extern "C" jint Java_org_linphone_core_LinphoneCallLogImpl_getStatus(JNIEnv*  env
1422                                                                                                                                                 ,jobject  thiz
1423                                                                                                                                                 ,jlong ptr) {
1424         return (jint)((LinphoneCallLog*)ptr)->status;
1425 }
1426 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getTo(JNIEnv*  env
1427                                                                                                                                                 ,jobject  thiz
1428                                                                                                                                                 ,jlong ptr) {
1429         return (jlong)((LinphoneCallLog*)ptr)->to;
1430 }
1431 extern "C" jboolean Java_org_linphone_core_LinphoneCallLogImpl_isIncoming(JNIEnv*  env
1432                                                                                                                                                 ,jobject  thiz
1433                                                                                                                                                 ,jlong ptr) {
1434         return ((LinphoneCallLog*)ptr)->dir==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1435 }
1436 extern "C" jstring Java_org_linphone_core_LinphoneCallLogImpl_getStartDate(JNIEnv*  env
1437                                                                                                                                                 ,jobject  thiz
1438                                                                                                                                                 ,jlong ptr) {
1439         jstring jvalue =env->NewStringUTF(((LinphoneCallLog*)ptr)->start_date);
1440         return jvalue;
1441 }
1442 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getTimestamp(JNIEnv*  env
1443                                                                                                                                                 ,jobject  thiz
1444                                                                                                                                                 ,jlong ptr) {
1445         return static_cast<long> (((LinphoneCallLog*)ptr)->start_date_time);
1446 }
1447 extern "C" jint Java_org_linphone_core_LinphoneCallLogImpl_getCallDuration(JNIEnv*  env
1448                                                                                                                                                 ,jobject  thiz
1449                                                                                                                                                 ,jlong ptr) {
1450         return (jint)((LinphoneCallLog*)ptr)->duration;
1451 }
1452
1453 /* CallStats */
1454 extern "C" jint Java_org_linphone_core_LinphoneCallStatsImpl_getMediaType(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1455         return (jint)((LinphoneCallStats *)stats_ptr)->type;
1456 }
1457 extern "C" jint Java_org_linphone_core_LinphoneCallStatsImpl_getIceState(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1458         return (jint)((LinphoneCallStats *)stats_ptr)->ice_state;
1459 }
1460 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getDownloadBandwidth(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1461         return (jfloat)((LinphoneCallStats *)stats_ptr)->download_bandwidth;
1462 }
1463 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getUploadBandwidth(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1464         return (jfloat)((LinphoneCallStats *)stats_ptr)->upload_bandwidth;
1465 }
1466 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getSenderLossRate(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1467         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1468         const report_block_t *srb = NULL;
1469
1470         if (!stats || !stats->sent_rtcp)
1471                 return (jfloat)0.0;
1472         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1473         if (stats->sent_rtcp->b_cont != NULL)
1474                 msgpullup(stats->sent_rtcp, -1);
1475         if (rtcp_is_SR(stats->sent_rtcp))
1476                 srb = rtcp_SR_get_report_block(stats->sent_rtcp, 0);
1477         else if (rtcp_is_RR(stats->sent_rtcp))
1478                 srb = rtcp_RR_get_report_block(stats->sent_rtcp, 0);
1479         if (!srb)
1480                 return (jfloat)0.0;
1481         return (jfloat)(100.0 * report_block_get_fraction_lost(srb) / 256.0);
1482 }
1483 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getReceiverLossRate(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1484         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1485         const report_block_t *rrb = NULL;
1486
1487         if (!stats || !stats->received_rtcp)
1488                 return (jfloat)0.0;
1489         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1490         if (stats->received_rtcp->b_cont != NULL)
1491                 msgpullup(stats->received_rtcp, -1);
1492         if (rtcp_is_RR(stats->received_rtcp))
1493                 rrb = rtcp_RR_get_report_block(stats->received_rtcp, 0);
1494         else if (rtcp_is_SR(stats->received_rtcp))
1495                 rrb = rtcp_SR_get_report_block(stats->received_rtcp, 0);
1496         if (!rrb)
1497                 return (jfloat)0.0;
1498         return (jfloat)(100.0 * report_block_get_fraction_lost(rrb) / 256.0);
1499 }
1500 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getSenderInterarrivalJitter(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1501         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1502         LinphoneCall *call = (LinphoneCall *)call_ptr;
1503         const LinphoneCallParams *params;
1504         const PayloadType *pt;
1505         const report_block_t *srb = NULL;
1506
1507         if (!stats || !call || !stats->sent_rtcp)
1508                 return (jfloat)0.0;
1509         params = linphone_call_get_current_params(call);
1510         if (!params)
1511                 return (jfloat)0.0;
1512         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1513         if (stats->sent_rtcp->b_cont != NULL)
1514                 msgpullup(stats->sent_rtcp, -1);
1515         if (rtcp_is_SR(stats->sent_rtcp))
1516                 srb = rtcp_SR_get_report_block(stats->sent_rtcp, 0);
1517         else if (rtcp_is_RR(stats->sent_rtcp))
1518                 srb = rtcp_RR_get_report_block(stats->sent_rtcp, 0);
1519         if (!srb)
1520                 return (jfloat)0.0;
1521         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1522                 pt = linphone_call_params_get_used_audio_codec(params);
1523         else
1524                 pt = linphone_call_params_get_used_video_codec(params);
1525         if (!pt || (pt->clock_rate == 0))
1526                 return (jfloat)0.0;
1527         return (jfloat)((float)report_block_get_interarrival_jitter(srb) / (float)pt->clock_rate);
1528 }
1529 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getReceiverInterarrivalJitter(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1530         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1531         LinphoneCall *call = (LinphoneCall *)call_ptr;
1532         const LinphoneCallParams *params;
1533         const PayloadType *pt;
1534         const report_block_t *rrb = NULL;
1535
1536         if (!stats || !call || !stats->received_rtcp)
1537                 return (jfloat)0.0;
1538         params = linphone_call_get_current_params(call);
1539         if (!params)
1540                 return (jfloat)0.0;
1541         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1542         if (stats->received_rtcp->b_cont != NULL)
1543                 msgpullup(stats->received_rtcp, -1);
1544         if (rtcp_is_SR(stats->received_rtcp))
1545                 rrb = rtcp_SR_get_report_block(stats->received_rtcp, 0);
1546         else if (rtcp_is_RR(stats->received_rtcp))
1547                 rrb = rtcp_RR_get_report_block(stats->received_rtcp, 0);
1548         if (!rrb)
1549                 return (jfloat)0.0;
1550         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1551                 pt = linphone_call_params_get_used_audio_codec(params);
1552         else
1553                 pt = linphone_call_params_get_used_video_codec(params);
1554         if (!pt || (pt->clock_rate == 0))
1555                 return (jfloat)0.0;
1556         return (jfloat)((float)report_block_get_interarrival_jitter(rrb) / (float)pt->clock_rate);
1557 }
1558 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getRoundTripDelay(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1559         return (jfloat)((LinphoneCallStats *)stats_ptr)->round_trip_delay;
1560 }
1561 extern "C" jlong Java_org_linphone_core_LinphoneCallStatsImpl_getLatePacketsCumulativeNumber(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1562         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1563         LinphoneCall *call = (LinphoneCall *)call_ptr;
1564         rtp_stats_t rtp_stats;
1565
1566         if (!stats || !call)
1567                 return (jlong)0;
1568         memset(&rtp_stats, 0, sizeof(rtp_stats));
1569         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1570                 audio_stream_get_local_rtp_stats(call->audiostream, &rtp_stats);
1571 #ifdef VIDEO_ENABLED
1572         else
1573                 video_stream_get_local_rtp_stats(call->videostream, &rtp_stats);
1574 #endif
1575         return (jlong)rtp_stats.outoftime;
1576 }
1577 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getJitterBufferSize(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1578         return (jfloat)((LinphoneCallStats *)stats_ptr)->jitter_stats.jitter_buffer_size_ms;
1579 }
1580
1581 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getLocalLossRate(JNIEnv *env, jobject thiz,jlong stats_ptr) {
1582         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1583         return stats->local_loss_rate;
1584 }
1585
1586 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getLocalLateRate(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1587         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1588         return stats->local_late_rate;
1589 }
1590
1591 extern "C" void Java_org_linphone_core_LinphoneCallStatsImpl_updateStats(JNIEnv *env, jobject thiz, jlong call_ptr, jint mediatype) {
1592         if (mediatype==LINPHONE_CALL_STATS_AUDIO)
1593                 linphone_call_get_audio_stats((LinphoneCall*)call_ptr);
1594         else 
1595                 linphone_call_get_video_stats((LinphoneCall*)call_ptr);
1596 }
1597
1598 /*payloadType*/
1599 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_toString(JNIEnv*  env,jobject  thiz,jlong ptr) {
1600         PayloadType* pt = (PayloadType*)ptr;
1601         char* value = ms_strdup_printf("[%s] clock [%i], bitrate [%i]"
1602                                                                         ,payload_type_get_mime(pt)
1603                                                                         ,payload_type_get_rate(pt)
1604                                                                         ,payload_type_get_bitrate(pt));
1605         jstring jvalue =env->NewStringUTF(value);
1606         ms_free(value);
1607         return jvalue;
1608 }
1609 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_getMime(JNIEnv*  env,jobject  thiz,jlong ptr) {
1610         PayloadType* pt = (PayloadType*)ptr;
1611         jstring jvalue =env->NewStringUTF(payload_type_get_mime(pt));
1612         return jvalue;
1613 }
1614 extern "C" jint Java_org_linphone_core_PayloadTypeImpl_getRate(JNIEnv*  env,jobject  thiz, jlong ptr) {
1615         PayloadType* pt = (PayloadType*)ptr;
1616         return (jint)payload_type_get_rate(pt);
1617 }
1618
1619 //LinphoneCall
1620 extern "C" void Java_org_linphone_core_LinphoneCallImpl_finalize(JNIEnv*  env
1621                                                                                                                                                 ,jobject  thiz
1622                                                                                                                                                 ,jlong ptr) {
1623         LinphoneCall *call=(LinphoneCall*)ptr;
1624         linphone_call_unref(call);
1625 }
1626
1627 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCallLog(    JNIEnv*  env
1628                                                                                                                                                 ,jobject  thiz
1629                                                                                                                                                 ,jlong ptr) {
1630         return (jlong)linphone_call_get_call_log((LinphoneCall*)ptr);
1631 }
1632
1633 extern "C" void Java_org_linphone_core_LinphoneCallImpl_takeSnapshot(   JNIEnv*  env
1634                                                                                                                                                 ,jobject  thiz
1635                                                                                                                                                 ,jlong ptr, jstring path) {
1636         const char* filePath = path != NULL ? env->GetStringUTFChars(path, NULL) : NULL;
1637         linphone_call_take_video_snapshot((LinphoneCall*)ptr, filePath);
1638 }
1639
1640 extern "C" void Java_org_linphone_core_LinphoneCallImpl_zoomVideo(              JNIEnv*  env
1641                                                                                                                                                 ,jobject  thiz
1642                                                                                                                                                 ,jlong ptr, jfloat zoomFactor, jfloat cx, jfloat cy) {
1643         linphone_call_zoom_video((LinphoneCall*)ptr, zoomFactor, &cx, &cy);
1644 }
1645
1646 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isIncoming( JNIEnv*  env
1647                                                                                                                                                 ,jobject  thiz
1648                                                                                                                                                 ,jlong ptr) {
1649         return linphone_call_get_dir((LinphoneCall*)ptr)==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1650 }
1651
1652 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteAddress(      JNIEnv*  env
1653                                                                                                                                                 ,jobject  thiz
1654                                                                                                                                                 ,jlong ptr) {
1655         return (jlong)linphone_call_get_remote_address((LinphoneCall*)ptr);
1656 }
1657
1658 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getRemoteUserAgent(JNIEnv *env, jobject thiz, jlong ptr) {
1659         LinphoneCall *call = (LinphoneCall *)ptr;
1660         const char *value=linphone_call_get_remote_user_agent(call);
1661         jstring jvalue=NULL;
1662         if (value) jvalue=env->NewStringUTF(value);
1663         return jvalue;
1664 }
1665
1666 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getRemoteContact(JNIEnv *env, jobject thiz, jlong ptr) {
1667         LinphoneCall *call = (LinphoneCall *)ptr;
1668         const char *value=linphone_call_get_remote_contact(call);
1669         jstring jvalue = NULL;
1670         if (value) jvalue=env->NewStringUTF(value);
1671         return jvalue;
1672 }
1673
1674 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getState(       JNIEnv*  env
1675                                                                                                                                                 ,jobject  thiz
1676                                                                                                                                                 ,jlong ptr) {
1677         return (jint)linphone_call_get_state((LinphoneCall*)ptr);
1678 }
1679 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoCancellation( JNIEnv*  env
1680                                                                                                                                                 ,jobject  thiz
1681                                                                                                                                                 ,jlong ptr
1682                                                                                                                                                 ,jboolean value) {
1683         linphone_call_enable_echo_cancellation((LinphoneCall*)ptr,value);
1684 }
1685 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoCancellationEnabled(  JNIEnv*  env
1686                                                                                                                                                 ,jobject  thiz
1687                                                                                                                                                 ,jlong ptr) {
1688         return (jboolean)linphone_call_echo_cancellation_enabled((LinphoneCall*)ptr);
1689 }
1690
1691 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoLimiter(      JNIEnv*  env
1692                                                                                                                                                 ,jobject  thiz
1693                                                                                                                                                 ,jlong ptr
1694                                                                                                                                                 ,jboolean value) {
1695         linphone_call_enable_echo_limiter((LinphoneCall*)ptr,value);
1696 }
1697 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoLimiterEnabled(       JNIEnv*  env
1698                                                                                                                                                 ,jobject  thiz
1699                                                                                                                                                 ,jlong ptr) {
1700         return (jboolean)linphone_call_echo_limiter_enabled((LinphoneCall*)ptr);
1701 }
1702
1703 extern "C" jobject Java_org_linphone_core_LinphoneCallImpl_getReplacedCall(     JNIEnv*  env
1704                                                                                                                                                 ,jobject  thiz
1705                                                                                                                                                 ,jlong ptr) {
1706         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data(linphone_call_get_core((LinphoneCall*)ptr));       
1707         return lcd->getCall(env,linphone_call_get_replaced_call((LinphoneCall*)ptr));
1708 }
1709
1710 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getCurrentQuality(    JNIEnv*  env
1711                                                                                                                                                 ,jobject  thiz
1712                                                                                                                                                 ,jlong ptr) {
1713         return (jfloat)linphone_call_get_current_quality((LinphoneCall*)ptr);
1714 }
1715
1716 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getAverageQuality(    JNIEnv*  env
1717                                                                                                                                                 ,jobject  thiz
1718                                                                                                                                                 ,jlong ptr) {
1719         return (jfloat)linphone_call_get_average_quality((LinphoneCall*)ptr);
1720 }
1721
1722 //LinphoneFriend
1723 extern "C" jlong Java_org_linphone_core_LinphoneFriendImpl_newLinphoneFriend(JNIEnv*  env
1724                                                                                                                                                 ,jobject  thiz
1725                                                                                                                                                 ,jstring jFriendUri) {
1726         LinphoneFriend* lResult;
1727
1728         if (jFriendUri) {
1729                 const char* friendUri = env->GetStringUTFChars(jFriendUri, NULL);
1730                 lResult= linphone_friend_new_with_addr(friendUri);
1731                 env->ReleaseStringUTFChars(jFriendUri, friendUri);
1732         } else {
1733                 lResult = linphone_friend_new();
1734         }
1735         return (jlong)lResult;
1736 }
1737 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setAddress(JNIEnv*  env
1738                                                                                                                                                 ,jobject  thiz
1739                                                                                                                                                 ,jlong ptr
1740                                                                                                                                                 ,jlong linphoneAddress) {
1741         linphone_friend_set_addr((LinphoneFriend*)ptr,(LinphoneAddress*)linphoneAddress);
1742 }
1743 extern "C" jlong Java_org_linphone_core_LinphoneFriendImpl_getAddress(JNIEnv*  env
1744                                                                                                                                                 ,jobject  thiz
1745                                                                                                                                                 ,jlong ptr) {
1746         return (jlong)linphone_friend_get_address((LinphoneFriend*)ptr);
1747 }
1748 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setIncSubscribePolicy(JNIEnv*  env
1749                                                                                                                                                 ,jobject  thiz
1750                                                                                                                                                 ,jlong ptr
1751                                                                                                                                                 ,jint policy) {
1752         linphone_friend_set_inc_subscribe_policy((LinphoneFriend*)ptr,(LinphoneSubscribePolicy)policy);
1753 }
1754 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getIncSubscribePolicy(JNIEnv*  env
1755                                                                                                                                                 ,jobject  thiz
1756                                                                                                                                                 ,jlong ptr) {
1757         return (jint)linphone_friend_get_inc_subscribe_policy((LinphoneFriend*)ptr);
1758 }
1759 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_enableSubscribes(JNIEnv*  env
1760                                                                                                                                                 ,jobject  thiz
1761                                                                                                                                                 ,jlong ptr
1762                                                                                                                                                 ,jboolean value) {
1763         linphone_friend_enable_subscribes((LinphoneFriend*)ptr,value);
1764 }
1765 extern "C" jboolean Java_org_linphone_core_LinphoneFriendImpl_isSubscribesEnabled(JNIEnv*  env
1766                                                                                                                                                 ,jobject  thiz
1767                                                                                                                                                 ,jlong ptr) {
1768         return (jboolean)linphone_friend_subscribes_enabled((LinphoneFriend*)ptr);
1769 }
1770 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getStatus(JNIEnv*  env
1771                                                                                                                                                 ,jobject  thiz
1772                                                                                                                                                 ,jlong ptr) {
1773         return (jint)linphone_friend_get_status((LinphoneFriend*)ptr);
1774 }
1775 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_edit(JNIEnv*  env
1776                                                                                                                                                 ,jobject  thiz
1777                                                                                                                                                 ,jlong ptr) {
1778         return linphone_friend_edit((LinphoneFriend*)ptr);
1779 }
1780 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_done(JNIEnv*  env
1781                                                                                                                                                 ,jobject  thiz
1782                                                                                                                                                 ,jlong ptr) {
1783          linphone_friend_done((LinphoneFriend*)ptr);
1784 }
1785 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFriend(JNIEnv*  env
1786                                                                                                                                                 ,jobject  thiz
1787                                                                                                                                                 ,jlong ptr
1788                                                                                                                                                 ,jlong lf) {
1789         linphone_core_remove_friend((LinphoneCore*)ptr, (LinphoneFriend*)lf);
1790 }
1791 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getFriendByAddress(JNIEnv*  env
1792                                                                                                                                                 ,jobject  thiz
1793                                                                                                                                                 ,jlong ptr
1794                                                                                                                                                 ,jstring jaddress) {
1795         const char* address = env->GetStringUTFChars(jaddress, NULL);
1796         LinphoneFriend *lf = linphone_core_get_friend_by_address((LinphoneCore*)ptr, address);
1797         env->ReleaseStringUTFChars(jaddress, address);
1798         return (jlong) lf;
1799 }
1800 //LinphoneChatRoom
1801 extern "C" jlong Java_org_linphone_core_LinphoneChatRoomImpl_getPeerAddress(JNIEnv*  env
1802                                                                                                                                                 ,jobject  thiz
1803                                                                                                                                                 ,jlong ptr) {
1804         return (jlong) linphone_chat_room_get_peer_address((LinphoneChatRoom*)ptr);
1805 }
1806 extern "C" jlong Java_org_linphone_core_LinphoneChatRoomImpl_createLinphoneChatMessage(JNIEnv*  env
1807                                                                                                                                                 ,jobject  thiz
1808                                                                                                                                                 ,jlong ptr
1809                                                                                                                                                 ,jstring jmessage) {
1810         const char* message = env->GetStringUTFChars(jmessage, NULL);
1811         LinphoneChatMessage *chatMessage = linphone_chat_room_create_message((LinphoneChatRoom *)ptr, message);
1812         env->ReleaseStringUTFChars(jmessage, message);
1813
1814         return (jlong) chatMessage;
1815 }
1816 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_setUserData(JNIEnv*  env
1817                                                                                                                                                 ,jobject  thiz
1818                                                                                                                                                 ,jlong ptr) {
1819         jobject ud = env->NewGlobalRef(thiz);
1820         linphone_chat_message_set_user_data((LinphoneChatMessage*)ptr,(void*) ud);
1821 }
1822 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getText(JNIEnv*  env
1823                                                                                                                                                 ,jobject  thiz
1824                                                                                                                                                 ,jlong ptr) {
1825         jstring jvalue =env->NewStringUTF(linphone_chat_message_get_text((LinphoneChatMessage*)ptr));
1826         return jvalue;
1827 }
1828
1829 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getCustomHeader(JNIEnv*  env
1830                                                                                                                                                 ,jobject  thiz
1831                                                                                                                                                 ,jlong ptr, jstring jheader_name) {
1832         const char *name=env->GetStringUTFChars(jheader_name,NULL);
1833         const char *value=linphone_chat_message_get_custom_header((LinphoneChatMessage*)ptr,name);
1834         env->ReleaseStringUTFChars(jheader_name, name);
1835         return value ? env->NewStringUTF(value) : NULL;
1836 }
1837
1838 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_addCustomHeader(JNIEnv*  env
1839                                                                                                                                                 ,jobject  thiz
1840                                                                                                                                                 ,jlong ptr, jstring jheader_name, jstring jheader_value) {
1841         const char *name=env->GetStringUTFChars(jheader_name,NULL);
1842         const char *value=env->GetStringUTFChars(jheader_value,NULL);
1843         linphone_chat_message_add_custom_header((LinphoneChatMessage*)ptr,name,value);
1844         env->ReleaseStringUTFChars(jheader_name, name);
1845         env->ReleaseStringUTFChars(jheader_value, value);
1846 }
1847
1848 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getExternalBodyUrl(JNIEnv*  env
1849                                                                                                                                                 ,jobject  thiz
1850                                                                                                                                                 ,jlong ptr) {
1851         jstring jvalue =env->NewStringUTF(linphone_chat_message_get_external_body_url((LinphoneChatMessage*)ptr));
1852         return jvalue;
1853 }
1854 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_setExternalBodyUrl(JNIEnv*  env
1855                                                                                                                                                 ,jobject  thiz
1856                                                                                                                                                 ,jlong ptr
1857                                                                                                                                                 ,jstring jurl) {
1858         const char* url = env->GetStringUTFChars(jurl, NULL);
1859         linphone_chat_message_set_external_body_url((LinphoneChatMessage *)ptr, url);
1860         env->ReleaseStringUTFChars(jurl, url);
1861 }
1862 extern "C" jlong Java_org_linphone_core_LinphoneChatMessageImpl_getFrom(JNIEnv*  env
1863                                                                                                                                                 ,jobject  thiz
1864                                                                                                                                                 ,jlong ptr) {
1865         return (jlong) linphone_chat_message_get_from((LinphoneChatMessage*)ptr);
1866 }
1867
1868 extern "C" jlong Java_org_linphone_core_LinphoneChatMessageImpl_getPeerAddress(JNIEnv*  env
1869                                                                                                                                                 ,jobject  thiz
1870                                                                                                                                                 ,jlong ptr) {
1871         return (jlong) linphone_chat_message_get_peer_address((LinphoneChatMessage*)ptr);
1872 }
1873
1874 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage(JNIEnv*  env
1875                                                                                                                                                 ,jobject  thiz
1876                                                                                                                                                 ,jlong ptr
1877                                                                                                                                                 ,jstring jmessage) {
1878         const char* message = env->GetStringUTFChars(jmessage, NULL);
1879         linphone_chat_room_send_message((LinphoneChatRoom*)ptr, message);
1880         env->ReleaseStringUTFChars(jmessage, message);
1881 }
1882
1883 static void chat_room_impl_callback(LinphoneChatMessage* msg, LinphoneChatMessageState state, void* ud) {
1884         JNIEnv *env = 0;
1885         jint result = jvm->AttachCurrentThread(&env,NULL);
1886         if (result != 0) {
1887                 ms_error("cannot attach VM\n");
1888                 return;
1889         }
1890
1891         jobject listener = (jobject) ud;
1892         jclass clazz = (jclass) env->GetObjectClass(listener);
1893         jmethodID method = env->GetMethodID(clazz, "onLinphoneChatMessageStateChanged","(Lorg/linphone/core/LinphoneChatMessage;Lorg/linphone/core/LinphoneChatMessage$State;)V");
1894
1895         LinphoneCore *lc = linphone_chat_room_get_lc(linphone_chat_message_get_chat_room(msg));
1896         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
1897         env->CallVoidMethod(
1898                         listener,
1899                         method,
1900                         (jobject)linphone_chat_message_get_user_data(msg),
1901                         env->CallStaticObjectMethod(lcData->chatMessageStateClass,lcData->chatMessageStateFromIntId,(jint)state));
1902
1903         if (state == LinphoneChatMessageStateDelivered || state == LinphoneChatMessageStateNotDelivered) {
1904                 env->DeleteGlobalRef(listener);
1905         }
1906 }
1907 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage2(JNIEnv*  env
1908                                                                                                                                                 ,jobject  thiz
1909                                                                                                                                                 ,jlong ptr
1910                                                                                                                                                 ,jlong jmessage
1911                                                                                                                                                 ,jobject jlistener) {
1912         jobject listener = env->NewGlobalRef(jlistener);
1913         linphone_chat_room_send_message2((LinphoneChatRoom*)ptr, (LinphoneChatMessage*)jmessage, chat_room_impl_callback, (void*)listener);
1914 }
1915 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoWindowId(JNIEnv* env
1916                                                                                                                                                 ,jobject thiz
1917                                                                                                                                                 ,jlong lc
1918                                                                                                                                                 ,jobject obj) {
1919         jobject oldWindow = (jobject) linphone_core_get_native_video_window_id((LinphoneCore*)lc);
1920         if (oldWindow != NULL) {
1921                 env->DeleteGlobalRef(oldWindow);
1922         }
1923         if (obj != NULL) {
1924                 obj = env->NewGlobalRef(obj);
1925         }
1926         linphone_core_set_native_video_window_id((LinphoneCore*)lc,(unsigned long)obj);
1927 }
1928
1929 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreviewWindowId(JNIEnv* env
1930                                                                                                                                                 ,jobject thiz
1931                                                                                                                                                 ,jlong lc
1932                                                                                                                                                 ,jobject obj) {
1933         jobject oldWindow = (jobject) linphone_core_get_native_preview_window_id((LinphoneCore*)lc);
1934         if (oldWindow != NULL) {
1935                 env->DeleteGlobalRef(oldWindow);
1936         }
1937         if (obj != NULL) {
1938                 obj = env->NewGlobalRef(obj);
1939         }
1940         linphone_core_set_native_preview_window_id((LinphoneCore*)lc,(unsigned long)obj);
1941 }
1942
1943 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDeviceRotation(JNIEnv* env
1944                                                                                                                                                 ,jobject thiz
1945                                                                                                                                                 ,jlong lc
1946                                                                                                                                                 ,jint rotation) {
1947         linphone_core_set_device_rotation((LinphoneCore*)lc,rotation);
1948 }
1949
1950
1951 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc, jint enum_value){
1952         linphone_core_set_firewall_policy((LinphoneCore*)lc,(LinphoneFirewallPolicy)enum_value);
1953 }
1954
1955 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc){
1956         return (jint)linphone_core_get_firewall_policy((LinphoneCore*)lc);
1957 }
1958
1959 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setStunServer(JNIEnv *env, jobject thiz, jlong lc, jstring jserver){
1960         const char* server = NULL;
1961         if (jserver) server=env->GetStringUTFChars(jserver, NULL);
1962         linphone_core_set_stun_server((LinphoneCore*)lc,server);
1963         if (server) env->ReleaseStringUTFChars(jserver,server);
1964 }
1965
1966 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getStunServer(JNIEnv *env, jobject thiz, jlong lc){
1967         const char *ret= linphone_core_get_stun_server((LinphoneCore*)lc);
1968         if (ret==NULL) return NULL;
1969         jstring jvalue =env->NewStringUTF(ret);
1970         return jvalue;
1971 }
1972
1973 //CallParams
1974 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_isLowBandwidthEnabled(JNIEnv *env, jobject thiz, jlong cp) {
1975         return (jboolean) linphone_call_params_low_bandwidth_enabled((LinphoneCallParams *)cp);
1976 }
1977
1978 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_enableLowBandwidth(JNIEnv *env, jobject thiz, jlong cp, jboolean enable) {
1979         linphone_call_params_enable_low_bandwidth((LinphoneCallParams *)cp, enable);
1980 }
1981
1982 extern "C" jlong Java_org_linphone_core_LinphoneCallParamsImpl_getUsedAudioCodec(JNIEnv *env, jobject thiz, jlong cp) {
1983         return (jlong)linphone_call_params_get_used_audio_codec((LinphoneCallParams *)cp);
1984 }
1985
1986 extern "C" jlong Java_org_linphone_core_LinphoneCallParamsImpl_getUsedVideoCodec(JNIEnv *env, jobject thiz, jlong cp) {
1987         return (jlong)linphone_call_params_get_used_video_codec((LinphoneCallParams *)cp);
1988 }
1989
1990 extern "C" jint Java_org_linphone_core_LinphoneCallParamsImpl_getMediaEncryption(JNIEnv*  env
1991                                                                                                                                                         ,jobject  thiz
1992                                                                                                                                                         ,jlong cp
1993                                                                                                                                                         ) {
1994         return (jint)linphone_call_params_get_media_encryption((LinphoneCallParams*)cp);
1995 }
1996
1997 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_setMediaEncryption(JNIEnv*  env
1998                                                                                                                                                         ,jobject  thiz
1999                                                                                                                                                         ,jlong cp
2000                                                                                                                                                         ,jint jmenc) {
2001         linphone_call_params_set_media_encryption((LinphoneCallParams*)cp,(LinphoneMediaEncryption)jmenc);
2002 }
2003
2004 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_audioBandwidth(JNIEnv *env, jobject thiz, jlong lcp, jint bw){
2005         linphone_call_params_set_audio_bandwidth_limit((LinphoneCallParams*)lcp, bw);
2006 }
2007
2008 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_enableVideo(JNIEnv *env, jobject thiz, jlong lcp, jboolean b){
2009         linphone_call_params_enable_video((LinphoneCallParams*)lcp, b);
2010 }
2011
2012 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_getVideoEnabled(JNIEnv *env, jobject thiz, jlong lcp){
2013         return (jboolean)linphone_call_params_video_enabled((LinphoneCallParams*)lcp);
2014 }
2015
2016 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_localConferenceMode(JNIEnv *env, jobject thiz, jlong lcp){
2017         return (jboolean)linphone_call_params_local_conference_mode((LinphoneCallParams*)lcp);
2018 }
2019
2020 extern "C" jstring Java_org_linphone_core_LinphoneCallParamsImpl_getCustomHeader(JNIEnv *env, jobject thiz, jlong lcp, jstring jheader_name){
2021         const char* header_name=env->GetStringUTFChars(jheader_name, NULL);
2022         const char *header_value=linphone_call_params_get_custom_header((LinphoneCallParams*)lcp,header_name);
2023         env->ReleaseStringUTFChars(jheader_name, header_name);
2024         return header_value ? env->NewStringUTF(header_value) : NULL;
2025 }
2026
2027 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_addCustomHeader(JNIEnv *env, jobject thiz, jlong lcp, jstring jheader_name, jstring jheader_value){
2028         const char* header_name=env->GetStringUTFChars(jheader_name, NULL);
2029         const char* header_value=env->GetStringUTFChars(jheader_value, NULL);
2030         linphone_call_params_add_custom_header((LinphoneCallParams*)lcp,header_name,header_value);
2031         env->ReleaseStringUTFChars(jheader_name, header_name);
2032         env->ReleaseStringUTFChars(jheader_value, header_value);
2033 }
2034
2035 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_setRecordFile(JNIEnv *env, jobject thiz, jlong lcp, jstring jrecord_file){
2036         if (jrecord_file){
2037                 const char* record_file=env->GetStringUTFChars(jrecord_file, NULL);
2038                 linphone_call_params_set_record_file((LinphoneCallParams*)lcp,record_file);
2039                 env->ReleaseStringUTFChars(jrecord_file, record_file);
2040         }else linphone_call_params_set_record_file((LinphoneCallParams*)lcp,NULL);
2041 }
2042
2043 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_destroy(JNIEnv *env, jobject thiz, jlong lc){
2044         return linphone_call_params_destroy((LinphoneCallParams*)lc);
2045 }
2046 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_createDefaultCallParams(JNIEnv *env, jobject thiz, jlong lc){
2047         return (jlong) linphone_core_create_default_call_parameters((LinphoneCore*)lc);
2048 }
2049
2050 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteParams(JNIEnv *env, jobject thiz, jlong lc){
2051         if (linphone_call_get_remote_params((LinphoneCall*)lc) == NULL) {
2052                         return (jlong) 0;
2053         }
2054         return (jlong) linphone_call_params_copy(linphone_call_get_remote_params((LinphoneCall*)lc));
2055 }
2056
2057 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCurrentParamsCopy(JNIEnv *env, jobject thiz, jlong lc){
2058         return (jlong) linphone_call_params_copy(linphone_call_get_current_params((LinphoneCall*)lc));
2059 }
2060
2061 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableCamera(JNIEnv *env, jobject thiz, jlong lc, jboolean b){
2062         linphone_call_enable_camera((LinphoneCall *)lc, (bool_t) b);
2063 }
2064
2065 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_cameraEnabled(JNIEnv *env, jobject thiz, jlong lc){
2066         return (jboolean)linphone_call_camera_enabled((LinphoneCall *)lc);
2067 }
2068
2069 extern "C" void Java_org_linphone_core_LinphoneCallImpl_startRecording(JNIEnv *env, jobject thiz, jlong lc){
2070         linphone_call_start_recording((LinphoneCall *)lc);
2071 }
2072
2073 extern "C" void Java_org_linphone_core_LinphoneCallImpl_stopRecording(JNIEnv *env, jobject thiz, jlong lc){
2074         linphone_call_stop_recording((LinphoneCall *)lc);
2075 }
2076
2077 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong addr, jlong params){
2078         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
2079         return  lcd->getCall(env,linphone_core_invite_address_with_params((LinphoneCore *)lc, (const LinphoneAddress *)addr, (const LinphoneCallParams *)params));
2080 }
2081
2082 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
2083         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (LinphoneCallParams *)params);
2084 }
2085
2086 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateCall(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
2087         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (const LinphoneCallParams *)params);
2088 }
2089
2090 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc, jint width, jint height){
2091         MSVideoSize vsize;
2092         vsize.width = (int)width;
2093         vsize.height = (int)height;
2094         linphone_core_set_preferred_video_size((LinphoneCore *)lc, vsize);
2095 }
2096
2097 extern "C" jintArray Java_org_linphone_core_LinphoneCoreImpl_getPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc){
2098         MSVideoSize vsize = linphone_core_get_preferred_video_size((LinphoneCore *)lc);
2099     jintArray arr = env->NewIntArray(2);
2100         int tVsize [2]= {vsize.width,vsize.height};
2101     env->SetIntArrayRegion(arr, 0, 2, tVsize);
2102     return arr;
2103 }
2104
2105 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
2106         linphone_core_set_download_bandwidth((LinphoneCore *)lc, (int) bw);
2107 }
2108
2109 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
2110         linphone_core_set_upload_bandwidth((LinphoneCore *)lc, (int) bw);
2111 }
2112
2113 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUseSipInfoForDtmfs(JNIEnv *env, jobject thiz, jlong lc, jboolean use){
2114         linphone_core_set_use_info_for_dtmf((LinphoneCore *)lc, (bool) use);
2115 }
2116
2117 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUseRfc2833ForDtmfs(JNIEnv *env, jobject thiz, jlong lc, jboolean use){
2118         linphone_core_set_use_rfc2833_for_dtmf((LinphoneCore *)lc, (bool) use);
2119 }
2120
2121 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
2122         linphone_core_set_download_ptime((LinphoneCore *)lc, (int) ptime);
2123 }
2124
2125 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
2126         linphone_core_set_upload_ptime((LinphoneCore *)lc, (int) ptime);
2127 }
2128
2129 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_getState(JNIEnv*  env,jobject thiz,jlong ptr) {
2130         return (jint) linphone_proxy_config_get_state((const LinphoneProxyConfig *) ptr);
2131 }
2132 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setExpires(JNIEnv*  env,jobject thiz,jlong ptr,jint delay) {
2133         linphone_proxy_config_expires((LinphoneProxyConfig *) ptr, (int) delay);
2134 }
2135
2136 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getDuration(JNIEnv*  env,jobject thiz,jlong ptr) {
2137         return (jint)linphone_call_get_duration((LinphoneCall *) ptr);
2138 }
2139
2140 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getSignalingTransportPort(JNIEnv* env,jobject thiz,jlong ptr, jint code) {
2141         LCSipTransports tr;
2142         linphone_core_get_sip_transports((LinphoneCore *) ptr, &tr);
2143                 switch (code) {
2144         case 0:
2145                 return tr.udp_port;
2146         case 1:
2147                 return tr.tcp_port;
2148         case 3:
2149                 return tr.tls_port;
2150         default:
2151                 return -2;
2152         }
2153 }
2154
2155 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setSignalingTransportPorts(JNIEnv*  env,jobject thiz,jlong ptr,jint udp, jint tcp, jint tls) {
2156         LinphoneCore *lc = (LinphoneCore *) ptr;
2157         LCSipTransports tr;
2158         tr.udp_port = udp;
2159         tr.tcp_port = tcp;
2160         tr.tls_port = tls;
2161
2162         linphone_core_set_sip_transports(lc, &tr); // tr will be copied
2163 }
2164
2165 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableIpv6(JNIEnv* env,jobject  thiz
2166               ,jlong lc, jboolean enable) {
2167               linphone_core_enable_ipv6((LinphoneCore*)lc,enable);
2168 }
2169
2170 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_adjustSoftwareVolume(JNIEnv* env,jobject  thiz
2171               ,jlong ptr, jint db) {
2172         linphone_core_set_playback_gain_db((LinphoneCore *) ptr, db);
2173 }
2174
2175 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2176         return (jint)linphone_core_pause_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2177 }
2178 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
2179         return (jint)linphone_core_pause_all_calls((LinphoneCore *) pCore);
2180 }
2181 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_resumeCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2182         return (jint)linphone_core_resume_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2183 }
2184 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInConference(JNIEnv *env,jobject thiz,jlong pCore) {
2185         return (jboolean)linphone_core_is_in_conference((LinphoneCore *) pCore);
2186 }
2187 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_enterConference(JNIEnv *env,jobject thiz,jlong pCore) {
2188         return (jboolean)(0 == linphone_core_enter_conference((LinphoneCore *) pCore));
2189 }
2190 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_leaveConference(JNIEnv *env,jobject thiz,jlong pCore) {
2191         linphone_core_leave_conference((LinphoneCore *) pCore);
2192 }
2193 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAllToConference(JNIEnv *env,jobject thiz,jlong pCore) {
2194         linphone_core_add_all_to_conference((LinphoneCore *) pCore);
2195 }
2196
2197 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addToConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2198         linphone_core_add_to_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2199 }
2200
2201 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFromConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
2202         linphone_core_remove_from_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
2203 }
2204
2205 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateConference(JNIEnv *env,jobject thiz,jlong pCore) {
2206         linphone_core_terminate_conference((LinphoneCore *) pCore);
2207 }
2208 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getConferenceSize(JNIEnv *env,jobject thiz,jlong pCore) {
2209         return (jint)linphone_core_get_conference_size((LinphoneCore *) pCore);
2210 }
2211
2212 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_startConferenceRecording(JNIEnv *env,jobject thiz,jlong pCore, jstring jpath){
2213         int err=-1;
2214         if (jpath){
2215                 const char *path=env->GetStringUTFChars(jpath, NULL);
2216                 err=linphone_core_start_conference_recording((LinphoneCore*)pCore,path);
2217                 env->ReleaseStringUTFChars(jpath,path);
2218         }
2219         return err;
2220 }
2221
2222 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_stopConferenceRecording(JNIEnv *env,jobject thiz,jlong pCore){
2223         int err=linphone_core_stop_conference_recording((LinphoneCore*)pCore);
2224         return err;
2225 }
2226
2227 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
2228         linphone_core_terminate_all_calls((LinphoneCore *) pCore);
2229 }
2230 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCall(JNIEnv *env,jobject thiz,jlong pCore,jint position) {
2231         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
2232         LinphoneCall* lCall = (LinphoneCall*) ms_list_nth_data(linphone_core_get_calls((LinphoneCore *) pCore),position);
2233         return lcd->getCall(env,lCall);
2234 }
2235 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getCallsNb(JNIEnv *env,jobject thiz,jlong pCore) {
2236         return (jint)ms_list_size(linphone_core_get_calls((LinphoneCore *) pCore));
2237 }
2238
2239 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_transferCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jstring jReferTo) {
2240         const char* cReferTo=env->GetStringUTFChars(jReferTo, NULL);
2241         jint err = linphone_core_transfer_call((LinphoneCore *) pCore, (LinphoneCall *) pCall, cReferTo);
2242         env->ReleaseStringUTFChars(jReferTo, cReferTo);
2243         return err;
2244 }
2245 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_transferCallToAnother(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jlong pDestCall) {
2246         return (jint)linphone_core_transfer_call_to_another((LinphoneCore *) pCore, (LinphoneCall *) pCall, (LinphoneCall *) pDestCall);
2247 }
2248
2249 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setZrtpSecretsCache(JNIEnv *env,jobject thiz,jlong pCore, jstring jFile) {
2250         if (jFile) {
2251                 const char* cFile=env->GetStringUTFChars(jFile, NULL);
2252                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,cFile);
2253                 env->ReleaseStringUTFChars(jFile, cFile);
2254         } else {
2255                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,NULL);
2256         }
2257 }
2258
2259 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_findCallFromUri(JNIEnv *env,jobject thiz,jlong pCore, jstring jUri) {
2260         const char* cUri=env->GetStringUTFChars(jUri, NULL);
2261         LinphoneCall *call= (LinphoneCall *) linphone_core_find_call_from_uri((LinphoneCore *) pCore,cUri);
2262         env->ReleaseStringUTFChars(jUri, cUri);
2263         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
2264         return (jobject) lcdata->getCall(env,call);
2265 }
2266
2267
2268 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_setVideoDevice(JNIEnv *env,jobject thiz,jlong pCore,jint id) {
2269         LinphoneCore* lc = (LinphoneCore *) pCore;
2270         const char** devices = linphone_core_get_video_devices(lc);
2271         if (devices == NULL) {
2272                 ms_error("No existing video devices\n");
2273                 return -1;
2274         }
2275         int i;
2276         for(i=0; i<=id; i++) {
2277                 if (devices[i] == NULL)
2278                         break;
2279                 ms_message("Existing device %d : %s\n", i, devices[i]);
2280                 if (i==id) {
2281                         return (jint)linphone_core_set_video_device(lc, devices[i]);
2282                 }
2283         }
2284         return -1;
2285 }
2286
2287 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getVideoDevice(JNIEnv *env,jobject thiz,jlong pCore) {
2288         LinphoneCore* lc = (LinphoneCore *) pCore;
2289         const char** devices = linphone_core_get_video_devices(lc);
2290         if (devices == NULL) {
2291                 ms_error("No existing video devices\n");
2292                 return -1;
2293         }
2294         const char* cam = linphone_core_get_video_device(lc);
2295         if (cam == NULL) {
2296                 ms_error("No current video device\n");
2297         } else {
2298                 int i=0;
2299                 while(devices[i] != NULL) {
2300                         if (strcmp(devices[i], cam) == 0)
2301                                 return i;
2302                         i++;
2303                 }
2304         }
2305         ms_warning("Returning default (0) device\n");
2306         return 0;
2307 }
2308
2309 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getAuthenticationToken(JNIEnv*  env,jobject thiz,jlong ptr) {
2310         LinphoneCall *call = (LinphoneCall *) ptr;
2311         const char* token = linphone_call_get_authentication_token(call);
2312         if (token == NULL) return NULL;
2313         return env->NewStringUTF(token);
2314 }
2315 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr) {
2316         LinphoneCall *call = (LinphoneCall *) ptr;
2317         return (jboolean)linphone_call_get_authentication_token_verified(call);
2318 }
2319 extern "C" void Java_org_linphone_core_LinphoneCallImpl_setAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr,jboolean verified) {
2320         LinphoneCall *call = (LinphoneCall *) ptr;
2321         linphone_call_set_authentication_token_verified(call, verified);
2322 }
2323
2324 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getPlayVolume(JNIEnv* env, jobject thiz, jlong ptr) {
2325         LinphoneCall *call = (LinphoneCall *) ptr;
2326         return (jfloat)linphone_call_get_play_volume(call);
2327 }
2328
2329 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_soundResourcesLocked(JNIEnv* env,jobject thiz,jlong ptr){
2330         return (jboolean)linphone_core_sound_resources_locked((LinphoneCore *) ptr);
2331 }
2332
2333 // Needed by Galaxy S (can't switch to/from speaker while playing and still keep mic working)
2334 // Implemented directly in msandroid.cpp (sound filters for Android).
2335 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_forceSpeakerState(JNIEnv *env, jobject thiz, jlong ptr, jboolean speakerOn) {
2336         LinphoneCore *lc = (LinphoneCore *)ptr;
2337         LinphoneCall *call = linphone_core_get_current_call(lc);
2338         if (call && call->audiostream && call->audiostream->soundread) {
2339                 bool_t on = speakerOn;
2340                 ms_filter_call_method(call->audiostream->soundread, MS_AUDIO_CAPTURE_FORCE_SPEAKER_STATE, &on);
2341         }
2342 }
2343 // End Galaxy S hack functions
2344
2345
2346 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMaxCalls(JNIEnv *env,jobject thiz,jlong pCore) {
2347         return (jint) linphone_core_get_max_calls((LinphoneCore *) pCore);
2348 }
2349 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMaxCalls(JNIEnv *env,jobject thiz,jlong pCore, jint max) {
2350         linphone_core_set_max_calls((LinphoneCore *) pCore, (int) max);
2351 }
2352
2353 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelAddServerAndMirror(JNIEnv *env,jobject thiz,jlong pCore,
2354                 jstring jHost, jint port, jint mirror, jint delay) {
2355         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel;
2356         if (!tunnel) return;
2357
2358         const char* cHost=env->GetStringUTFChars(jHost, NULL);
2359         LinphoneTunnelConfig *tunnelconfig = linphone_tunnel_config_new();
2360         linphone_tunnel_config_set_host(tunnelconfig, cHost);
2361         linphone_tunnel_config_set_port(tunnelconfig, port);
2362         linphone_tunnel_config_set_delay(tunnelconfig, delay);
2363         linphone_tunnel_config_set_remote_udp_mirror_port(tunnelconfig, mirror);
2364         linphone_tunnel_add_server(tunnel, tunnelconfig);
2365         env->ReleaseStringUTFChars(jHost, cHost);
2366 }
2367
2368 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelSetHttpProxy(JNIEnv *env,jobject thiz,jlong pCore,
2369                 jstring jHost, jint port, jstring username, jstring password) {
2370
2371         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel;
2372         if (!tunnel) return;
2373         const char* cHost=(jHost!=NULL) ? env->GetStringUTFChars(jHost, NULL) : NULL;
2374         const char* cUsername= (username!=NULL) ? env->GetStringUTFChars(username, NULL) : NULL;
2375         const char* cPassword= (password!=NULL) ? env->GetStringUTFChars(password, NULL) : NULL;
2376         linphone_tunnel_set_http_proxy(tunnel,cHost, port,cUsername,cPassword);
2377         if (cHost) env->ReleaseStringUTFChars(jHost, cHost);
2378         if (cUsername) env->ReleaseStringUTFChars(username, cUsername);
2379         if (cPassword) env->ReleaseStringUTFChars(password, cPassword);
2380 }
2381
2382
2383 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelAutoDetect(JNIEnv *env,jobject thiz,jlong pCore) {
2384         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2385         linphone_tunnel_auto_detect(tunnel);
2386 }
2387
2388 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelCleanServers(JNIEnv *env,jobject thiz,jlong pCore) {
2389         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2390         linphone_tunnel_clean_servers(tunnel);
2391 }
2392
2393 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelEnable(JNIEnv *env,jobject thiz,jlong pCore, jboolean enable) {
2394         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2395         linphone_tunnel_enable(tunnel, enable);
2396 }
2397
2398
2399 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUserAgent(JNIEnv *env,jobject thiz,jlong pCore, jstring name, jstring version){
2400         const char* cname=env->GetStringUTFChars(name, NULL);
2401         const char* cversion=env->GetStringUTFChars(version, NULL);
2402         linphone_core_set_user_agent((LinphoneCore *)pCore,cname,cversion);
2403         env->ReleaseStringUTFChars(name, cname);
2404         env->ReleaseStringUTFChars(version, cversion);
2405 }
2406
2407 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isTunnelAvailable(JNIEnv *env,jobject thiz){
2408         return (jboolean)linphone_core_tunnel_available();
2409 }
2410
2411 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPolicy(JNIEnv *env, jobject thiz, jlong lc, jboolean autoInitiate, jboolean autoAccept){
2412         LinphoneVideoPolicy vpol;
2413         vpol.automatically_initiate = autoInitiate;
2414         vpol.automatically_accept = autoAccept;
2415         linphone_core_set_video_policy((LinphoneCore *)lc, &vpol);
2416 }
2417
2418 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setStaticPicture(JNIEnv *env, jobject thiz, jlong lc, jstring path) {
2419         const char *cpath = env->GetStringUTFChars(path, NULL);
2420         linphone_core_set_static_picture((LinphoneCore *)lc, cpath);
2421         env->ReleaseStringUTFChars(path, cpath);
2422 }
2423
2424 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setCpuCountNative(JNIEnv *env, jobject thiz, jint count) {
2425         ms_set_cpu_count(count);
2426 }
2427
2428 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setAudioPort(JNIEnv *env, jobject thiz, jlong lc, jint port) {
2429         linphone_core_set_audio_port((LinphoneCore *)lc, port);
2430 }
2431
2432 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPort(JNIEnv *env, jobject thiz, jlong lc, jint port) {
2433         linphone_core_set_video_port((LinphoneCore *)lc, port);
2434 }
2435
2436 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setAudioPortRange(JNIEnv *env, jobject thiz, jlong lc, jint min_port, jint max_port) {
2437         linphone_core_set_audio_port_range((LinphoneCore *)lc, min_port, max_port);
2438 }
2439
2440 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPortRange(JNIEnv *env, jobject thiz, jlong lc, jint min_port, jint max_port) {
2441         linphone_core_set_video_port_range((LinphoneCore *)lc, min_port, max_port);
2442 }
2443
2444 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setIncomingTimeout(JNIEnv *env, jobject thiz, jlong lc, jint timeout) {
2445         linphone_core_set_inc_timeout((LinphoneCore *)lc, timeout);
2446 }
2447
2448 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setInCallTimeout(JNIEnv *env, jobject thiz, jlong lc, jint timeout) {
2449         linphone_core_set_in_call_timeout((LinphoneCore *)lc, timeout);
2450 }
2451
2452 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getVersion(JNIEnv*  env,jobject  thiz,jlong ptr) {
2453         jstring jvalue =env->NewStringUTF(linphone_core_get_version());
2454         return jvalue;
2455 }
2456
2457 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getConfig(JNIEnv *env, jobject thiz, jlong lc) {
2458         return (jlong) linphone_core_get_config((LinphoneCore *)lc);
2459 }
2460
2461 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_upnpAvailable(JNIEnv *env, jobject thiz, jlong lc) {
2462         return (jboolean) linphone_core_upnp_available((LinphoneCore *)lc);
2463 }
2464
2465 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getUpnpState(JNIEnv *env, jobject thiz, jlong lc) {
2466         return (jint) linphone_core_get_upnp_state((LinphoneCore *)lc);
2467 }
2468
2469 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getUpnpExternalIpaddress(JNIEnv *env, jobject thiz, jlong lc) {
2470         jstring jvalue = env->NewStringUTF(linphone_core_get_upnp_external_ipaddress((LinphoneCore *)lc));
2471         return jvalue;
2472 }
2473
2474 extern "C" jlong Java_org_linphone_core_LpConfigImpl_newLpConfigImpl(JNIEnv *env, jobject thiz, jstring file) {
2475         const char *cfile = env->GetStringUTFChars(file, NULL);
2476         LpConfig *lp = lp_config_new(cfile);
2477         env->ReleaseStringUTFChars(file, cfile);
2478         return (jlong) lp;
2479 }
2480
2481 extern "C" void Java_org_linphone_core_LpConfigImpl_sync(JNIEnv *env, jobject thiz, jlong lpc) {
2482         LpConfig *lp = (LpConfig *)lpc;
2483         lp_config_sync(lp);
2484 }
2485
2486 extern "C" void Java_org_linphone_core_LpConfigImpl_delete(JNIEnv *env, jobject thiz, jlong lpc) {
2487         LpConfig *lp = (LpConfig *)lpc;
2488         lp_config_destroy(lp);
2489 }
2490
2491 extern "C" void Java_org_linphone_core_LpConfigImpl_setInt(JNIEnv *env, jobject thiz, jlong lpc,
2492                 jstring section, jstring key, jint value) {
2493         const char *csection = env->GetStringUTFChars(section, NULL);
2494         const char *ckey = env->GetStringUTFChars(key, NULL);
2495         lp_config_set_int((LpConfig *)lpc, csection, ckey, (int) value);
2496         env->ReleaseStringUTFChars(section, csection);
2497         env->ReleaseStringUTFChars(key, ckey);
2498 }
2499