]> sjero.net Git - linphone/blob - coreapi/linphonecore_jni.cc
test if sample rate is supported by android sound card, remove areStreamsEncrypted...
[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 #include "linphonecore_utils.h"
21 #include <ortp/zrtp.h>
22
23 extern "C" {
24 #include "mediastreamer2/mediastream.h"
25 }
26 #include "mediastreamer2/msjava.h"
27 #include "private.h"
28 #include <cpu-features.h>
29
30 #ifdef ANDROID
31 #include <android/log.h>
32 extern "C" void libmsilbc_init();
33 #ifdef HAVE_X264
34 extern "C" void libmsx264_init();
35 #endif
36 #ifdef HAVE_AMR
37 extern "C" void libmsamr_init();
38 #endif
39 #ifdef HAVE_SILK
40 extern "C" void libmssilk_init();
41 #endif
42 #endif /*ANDROID*/
43
44 static JavaVM *jvm=0;
45
46 #ifdef ANDROID
47 static void linphone_android_log_handler(OrtpLogLevel lev, const char *fmt, va_list args){
48         int prio;
49         switch(lev){
50         case ORTP_DEBUG:        prio = ANDROID_LOG_DEBUG;       break;
51         case ORTP_MESSAGE:      prio = ANDROID_LOG_INFO;        break;
52         case ORTP_WARNING:      prio = ANDROID_LOG_WARN;        break;
53         case ORTP_ERROR:        prio = ANDROID_LOG_ERROR;       break;
54         case ORTP_FATAL:        prio = ANDROID_LOG_FATAL;       break;
55         default:                prio = ANDROID_LOG_DEFAULT;     break;
56         }
57         __android_log_vprint(prio, LOG_DOMAIN, fmt, args);
58 }
59
60 int dumbMethodForAllowingUsageOfCpuFeaturesFromStaticLibMediastream() {
61         return (android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM && (android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON) != 0);
62 }
63 #endif /*ANDROID*/
64
65 JNIEXPORT jint JNICALL  JNI_OnLoad(JavaVM *ajvm, void *reserved)
66 {
67 #ifdef ANDROID
68         ms_set_jvm(ajvm);
69 #endif /*ANDROID*/
70         jvm=ajvm;
71         return JNI_VERSION_1_2;
72 }
73
74
75 //LinphoneFactory
76 extern "C" void Java_org_linphone_core_LinphoneCoreFactoryImpl_setDebugMode(JNIEnv*  env
77                 ,jobject  thiz
78                 ,jboolean isDebug) {
79         if (isDebug) {
80                 linphone_core_enable_logs_with_cb(linphone_android_log_handler);
81         } else {
82                 linphone_core_disable_logs();
83         }
84 }
85 // LinphoneCore
86
87 class LinphoneCoreData {
88 public:
89         LinphoneCoreData(JNIEnv*  env, jobject lc,jobject alistener, jobject auserdata) {
90
91                 core = env->NewGlobalRef(lc);
92                 listener = env->NewGlobalRef(alistener);
93                 userdata = auserdata?env->NewGlobalRef(auserdata):0;
94                 memset(&vTable,0,sizeof(vTable));
95                 vTable.show = showInterfaceCb;
96                 vTable.auth_info_requested = authInfoRequested;
97                 vTable.display_status = displayStatusCb;
98                 vTable.display_message = displayMessageCb;
99                 vTable.display_warning = displayMessageCb;
100                 vTable.global_state_changed = globalStateChange;
101                 vTable.registration_state_changed = registrationStateChange;
102                 vTable.call_state_changed = callStateChange;
103                 vTable.call_encryption_changed = callEncryptionChange;
104                 vTable.text_received = text_received;
105                 vTable.new_subscription_request = new_subscription_request;
106                 vTable.notify_presence_recv = notify_presence_recv;
107
108                 listenerClass = (jclass)env->NewGlobalRef(env->GetObjectClass( alistener));
109
110                 /*displayStatus(LinphoneCore lc,String message);*/
111                 displayStatusId = env->GetMethodID(listenerClass,"displayStatus","(Lorg/linphone/core/LinphoneCore;Ljava/lang/String;)V");
112
113                 /*void generalState(LinphoneCore lc,int state); */
114                 globalStateId = env->GetMethodID(listenerClass,"globalState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCore$GlobalState;Ljava/lang/String;)V");
115                 globalStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$GlobalState"));
116                 globalStateFromIntId = env->GetStaticMethodID(globalStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$GlobalState;");
117
118                 /*registrationState(LinphoneCore lc, LinphoneProxyConfig cfg, LinphoneCore.RegistrationState cstate, String smessage);*/
119                 registrationStateId = env->GetMethodID(listenerClass,"registrationState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneProxyConfig;Lorg/linphone/core/LinphoneCore$RegistrationState;Ljava/lang/String;)V");
120                 registrationStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$RegistrationState"));
121                 registrationStateFromIntId = env->GetStaticMethodID(registrationStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$RegistrationState;");
122
123                 /*callState(LinphoneCore lc, LinphoneCall call, LinphoneCall.State cstate,String message);*/
124                 callStateId = env->GetMethodID(listenerClass,"callState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;Lorg/linphone/core/LinphoneCall$State;Ljava/lang/String;)V");
125                 callStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCall$State"));
126                 callStateFromIntId = env->GetStaticMethodID(callStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCall$State;");
127
128                 /*callEncryption(LinphoneCore lc, LinphoneCall call, boolean encrypted,String auth_token);*/
129                 callEncryptionChangedId=env->GetMethodID(listenerClass,"callEncryptionChanged","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;ZLjava/lang/String;)V");
130
131                 /*void ecCalibrationStatus(LinphoneCore.EcCalibratorStatus status, int delay_ms, Object data);*/
132                 ecCalibrationStatusId = env->GetMethodID(listenerClass,"ecCalibrationStatus","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCore$EcCalibratorStatus;ILjava/lang/Object;)V");
133                 ecCalibratorStatusClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$EcCalibratorStatus"));
134                 ecCalibratorStatusFromIntId = env->GetStaticMethodID(ecCalibratorStatusClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$EcCalibratorStatus;");
135
136                 /*void newSubscriptionRequest(LinphoneCore lc, LinphoneFriend lf, String url)*/
137                 newSubscriptionRequestId = env->GetMethodID(listenerClass,"newSubscriptionRequest","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneFriend;Ljava/lang/String;)V");
138
139                 /*void notifyPresenceReceived(LinphoneCore lc, LinphoneFriend lf);*/
140                 notifyPresenceReceivedId = env->GetMethodID(listenerClass,"notifyPresenceReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneFriend;)V");
141
142                 /*void textReceived(LinphoneCore lc, LinphoneChatRoom cr,LinphoneAddress from,String message);*/
143                 textReceivedId = env->GetMethodID(listenerClass,"textReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneChatRoom;Lorg/linphone/core/LinphoneAddress;Ljava/lang/String;)V");
144
145                 proxyClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneProxyConfigImpl"));
146                 proxyCtrId = env->GetMethodID(proxyClass,"<init>", "(J)V");
147
148                 callClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCallImpl"));
149                 callCtrId = env->GetMethodID(callClass,"<init>", "(J)V");
150
151                 chatRoomClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneChatRoomImpl"));
152                 chatRoomCtrId = env->GetMethodID(chatRoomClass,"<init>", "(J)V");
153
154                 friendClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneFriendImpl"));;
155                 friendCtrId =env->GetMethodID(friendClass,"<init>", "(J)V");
156
157                 addressClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneAddressImpl"));
158                 addressCtrId =env->GetMethodID(addressClass,"<init>", "(J)V");
159
160         }
161
162         ~LinphoneCoreData() {
163                 JNIEnv *env = 0;
164                 jvm->AttachCurrentThread(&env,NULL);
165                 env->DeleteGlobalRef(core);
166                 env->DeleteGlobalRef(listener);
167                 if (userdata) env->DeleteGlobalRef(userdata);
168                 env->DeleteGlobalRef(listenerClass);
169                 env->DeleteGlobalRef(globalStateClass);
170                 env->DeleteGlobalRef(registrationStateClass);
171                 env->DeleteGlobalRef(callStateClass);
172                 env->DeleteGlobalRef(proxyClass);
173                 env->DeleteGlobalRef(callClass);
174                 env->DeleteGlobalRef(chatRoomClass);
175                 env->DeleteGlobalRef(friendClass);
176
177         }
178         jobject core;
179         jobject listener;
180         jobject userdata;
181
182         jclass listenerClass;
183         jmethodID displayStatusId;
184         jmethodID newSubscriptionRequestId;
185         jmethodID notifyPresenceReceivedId;
186         jmethodID textReceivedId;
187
188         jclass globalStateClass;
189         jmethodID globalStateId;
190         jmethodID globalStateFromIntId;
191
192         jclass registrationStateClass;
193         jmethodID registrationStateId;
194         jmethodID registrationStateFromIntId;
195
196         jclass callStateClass;
197         jmethodID callStateId;
198         jmethodID callStateFromIntId;
199
200         jmethodID callEncryptionChangedId;
201
202         jclass ecCalibratorStatusClass;
203         jmethodID ecCalibrationStatusId;
204         jmethodID ecCalibratorStatusFromIntId;
205
206         jclass proxyClass;
207         jmethodID proxyCtrId;
208
209         jclass callClass;
210         jmethodID callCtrId;
211
212         jclass chatRoomClass;
213         jmethodID chatRoomCtrId;
214
215         jclass friendClass;
216         jmethodID friendCtrId;
217
218         jclass addressClass;
219         jmethodID addressCtrId;
220
221         LinphoneCoreVTable vTable;
222
223         static void showInterfaceCb(LinphoneCore *lc) {
224
225         }
226         static void byeReceivedCb(LinphoneCore *lc, const char *from) {
227
228         }
229         static void displayStatusCb(LinphoneCore *lc, const char *message) {
230                 JNIEnv *env = 0;
231                 jint result = jvm->AttachCurrentThread(&env,NULL);
232                 if (result != 0) {
233                         ms_error("cannot attach VM\n");
234                         return;
235                 }
236                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
237                 env->CallVoidMethod(lcData->listener,lcData->displayStatusId,lcData->core,env->NewStringUTF(message));
238         }
239         static void displayMessageCb(LinphoneCore *lc, const char *message) {
240
241         }
242         static void authInfoRequested(LinphoneCore *lc, const char *realm, const char *username) {
243
244         }
245         static void globalStateChange(LinphoneCore *lc, LinphoneGlobalState gstate,const char* message) {
246                 JNIEnv *env = 0;
247                 jint result = jvm->AttachCurrentThread(&env,NULL);
248                 if (result != 0) {
249                         ms_error("cannot attach VM\n");
250                         return;
251                 }
252                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
253                 env->CallVoidMethod(lcData->listener
254                                                         ,lcData->globalStateId
255                                                         ,lcData->core
256                                                         ,env->CallStaticObjectMethod(lcData->globalStateClass,lcData->globalStateFromIntId,(jint)gstate),
257                                                         message ? env->NewStringUTF(message) : NULL);
258         }
259         static void registrationStateChange(LinphoneCore *lc, LinphoneProxyConfig* proxy,LinphoneRegistrationState state,const char* message) {
260                 JNIEnv *env = 0;
261                 jint result = jvm->AttachCurrentThread(&env,NULL);
262                 if (result != 0) {
263                         ms_error("cannot attach VM\n");
264                         return;
265                 }
266                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
267                 env->CallVoidMethod(lcData->listener
268                                                         ,lcData->registrationStateId
269                                                         ,lcData->core
270                                                         ,env->NewObject(lcData->proxyClass,lcData->proxyCtrId,(jlong)proxy)
271                                                         ,env->CallStaticObjectMethod(lcData->registrationStateClass,lcData->registrationStateFromIntId,(jint)state),
272                                                         message ? env->NewStringUTF(message) : NULL);
273         }
274         jobject getCall(JNIEnv *env , LinphoneCall *call){
275                 jobject jobj=0;
276
277                 if (call!=NULL){
278                         void *up=linphone_call_get_user_pointer(call);
279                         
280                         if (up==NULL){
281                                 jobj=env->NewObject(callClass,callCtrId,(jlong)call);
282                                 jobj=env->NewGlobalRef(jobj);
283                                 linphone_call_set_user_pointer(call,(void*)jobj);
284                                 linphone_call_ref(call);
285                         }else{
286                                 jobj=(jobject)up;
287                         }
288                 }
289                 return jobj;
290         }
291
292         static void callStateChange(LinphoneCore *lc, LinphoneCall* call,LinphoneCallState state,const char* message) {
293                 JNIEnv *env = 0;
294                 jint result = jvm->AttachCurrentThread(&env,NULL);
295                 jobject jcall;
296                 if (result != 0) {
297                         ms_error("cannot attach VM\n");
298                         return;
299                 }
300                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
301                 env->CallVoidMethod(lcData->listener
302                                                         ,lcData->callStateId
303                                                         ,lcData->core
304                                                         ,(jcall=lcData->getCall(env,call))
305                                                         ,env->CallStaticObjectMethod(lcData->callStateClass,lcData->callStateFromIntId,(jint)state),
306                                                         message ? env->NewStringUTF(message) : NULL);
307                 if (state==LinphoneCallReleased){
308                         linphone_call_set_user_pointer(call,NULL);
309                         env->DeleteGlobalRef(jcall);
310                 }
311         }
312         static void callEncryptionChange(LinphoneCore *lc, LinphoneCall* call, bool_t encrypted,const char* authentication_token) {
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->callEncryptionChangedId
322                                                         ,lcData->core
323                                                         ,lcData->getCall(env,call)
324                                                         ,encrypted
325                                                         ,authentication_token ? env->NewStringUTF(authentication_token) : NULL);
326         }
327         static void notify_presence_recv (LinphoneCore *lc,  LinphoneFriend *my_friend) {
328                 JNIEnv *env = 0;
329                 jint result = jvm->AttachCurrentThread(&env,NULL);
330                 if (result != 0) {
331                         ms_error("cannot attach VM\n");
332                         return;
333                 }
334                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
335                 env->CallVoidMethod(lcData->listener
336                                                         ,lcData->notifyPresenceReceivedId
337                                                         ,lcData->core
338                                                         ,env->NewObject(lcData->friendClass,lcData->friendCtrId,(jlong)my_friend));
339         }
340         static void new_subscription_request (LinphoneCore *lc,  LinphoneFriend *my_friend, const char* url) {
341                 JNIEnv *env = 0;
342                 jint result = jvm->AttachCurrentThread(&env,NULL);
343                 if (result != 0) {
344                         ms_error("cannot attach VM\n");
345                         return;
346                 }
347                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
348                 env->CallVoidMethod(lcData->listener
349                                                         ,lcData->newSubscriptionRequestId
350                                                         ,lcData->core
351                                                         ,env->NewObject(lcData->friendClass,lcData->friendCtrId,(jlong)my_friend)
352                                                         ,url ? env->NewStringUTF(url) : NULL);
353         }
354         static void text_received(LinphoneCore *lc, LinphoneChatRoom *room, const LinphoneAddress *from, const char *message) {
355                 JNIEnv *env = 0;
356                 jint result = jvm->AttachCurrentThread(&env,NULL);
357                 if (result != 0) {
358                         ms_error("cannot attach VM\n");
359                         return;
360                 }
361                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
362                 env->CallVoidMethod(lcData->listener
363                                                         ,lcData->textReceivedId
364                                                         ,lcData->core
365                                                         ,env->NewObject(lcData->chatRoomClass,lcData->chatRoomCtrId,(jlong)room)
366                                                         ,env->NewObject(lcData->addressClass,lcData->addressCtrId,(jlong)from)
367                                                         ,message ? env->NewStringUTF(message) : NULL);
368         }
369         static void ecCalibrationStatus(LinphoneCore *lc, LinphoneEcCalibratorStatus status, int delay_ms, void *data) {
370                 JNIEnv *env = 0;
371                 jint result = jvm->AttachCurrentThread(&env,NULL);
372                 if (result != 0) {
373                         ms_error("cannot attach VM\n");
374                         return;
375                 }
376                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
377                 env->CallVoidMethod(lcData->listener
378                                                         ,lcData->ecCalibrationStatusId
379                                                         ,lcData->core
380                                                         ,env->CallStaticObjectMethod(lcData->ecCalibratorStatusClass,lcData->ecCalibratorStatusFromIntId,(jint)status)
381                                                         ,delay_ms
382                                                         ,data ? data : NULL);
383                 if (data != NULL &&status !=LinphoneEcCalibratorInProgress ) {
384                         //final state, releasing global ref
385                         env->DeleteGlobalRef((jobject)data);
386                 }
387
388         }
389
390
391 };
392 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_newLinphoneCore(JNIEnv*  env
393                 ,jobject  thiz
394                 ,jobject jlistener
395                 ,jstring juserConfig
396                 ,jstring jfactoryConfig
397                 ,jobject  juserdata){
398
399         const char* userConfig = juserConfig?env->GetStringUTFChars(juserConfig, NULL):NULL;
400         const char* factoryConfig = jfactoryConfig?env->GetStringUTFChars(jfactoryConfig, NULL):NULL;
401         LinphoneCoreData* ldata = new LinphoneCoreData(env,thiz,jlistener,juserdata);
402
403 #ifdef HAVE_ILBC
404         libmsilbc_init(); // requires an fpu
405 #endif
406 #ifdef HAVE_X264
407         libmsx264_init();
408 #endif
409 #ifdef HAVE_AMR
410         libmsamr_init();
411 #endif
412 #ifdef HAVE_SILK
413         libmssilk_init();
414 #endif
415         jlong nativePtr = (jlong)linphone_core_new(     &ldata->vTable
416                         ,userConfig
417                         ,factoryConfig
418                         ,ldata);
419         //clear auth info list
420         linphone_core_clear_all_auth_info((LinphoneCore*) nativePtr);
421         //clear existing proxy config
422         linphone_core_clear_proxy_config((LinphoneCore*) nativePtr);
423
424         if (userConfig) env->ReleaseStringUTFChars(juserConfig, userConfig);
425         if (factoryConfig) env->ReleaseStringUTFChars(jfactoryConfig, factoryConfig);
426         return nativePtr;
427 }
428 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_delete(JNIEnv*  env
429                 ,jobject  thiz
430                 ,jlong lc) {
431         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
432         linphone_core_destroy((LinphoneCore*)lc);
433         delete lcData;
434 }
435
436 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_clearProxyConfigs(JNIEnv* env, jobject thiz,jlong lc) {
437         linphone_core_clear_proxy_config((LinphoneCore*)lc);
438 }
439
440 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDefaultProxyConfig(  JNIEnv*  env
441                 ,jobject  thiz
442                 ,jlong lc
443                 ,jlong pc) {
444         linphone_core_set_default_proxy((LinphoneCore*)lc,(LinphoneProxyConfig*)pc);
445 }
446 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getDefaultProxyConfig( JNIEnv*  env
447                 ,jobject  thiz
448                 ,jlong lc) {
449         LinphoneProxyConfig *config=0;
450         linphone_core_get_default_proxy((LinphoneCore*)lc,&config);
451         return (jlong)config;
452 }
453
454 extern "C" int Java_org_linphone_core_LinphoneCoreImpl_addProxyConfig(  JNIEnv*  env
455                 ,jobject  thiz
456                 ,jobject jproxyCfg
457                 ,jlong lc
458                 ,jlong pc) {
459         LinphoneProxyConfig* proxy = (LinphoneProxyConfig*)pc;
460         linphone_proxy_config_set_user_data(proxy, env->NewGlobalRef(jproxyCfg));
461
462         return linphone_core_add_proxy_config((LinphoneCore*)lc,(LinphoneProxyConfig*)pc);
463 }
464
465 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_clearAuthInfos(JNIEnv* env, jobject thiz,jlong lc) {
466         linphone_core_clear_all_auth_info((LinphoneCore*)lc);
467 }
468
469 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAuthInfo(    JNIEnv*  env
470                 ,jobject  thiz
471                 ,jlong lc
472                 ,jlong pc) {
473         linphone_core_add_auth_info((LinphoneCore*)lc,(LinphoneAuthInfo*)pc);
474 }
475 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_iterate(        JNIEnv*  env
476                 ,jobject  thiz
477                 ,jlong lc) {
478         linphone_core_iterate((LinphoneCore*)lc);
479 }
480 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_invite(      JNIEnv*  env
481                 ,jobject  thiz
482                 ,jlong lc
483                 ,jstring juri) {
484         const char* uri = env->GetStringUTFChars(juri, NULL);
485         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
486         LinphoneCall* lCall = linphone_core_invite((LinphoneCore*)lc,uri);
487         env->ReleaseStringUTFChars(juri, uri);
488         return lcd->getCall(env,lCall);
489 }
490 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddress(       JNIEnv*  env
491                 ,jobject  thiz
492                 ,jlong lc
493                 ,jlong to) {
494         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
495         return lcd->getCall(env, linphone_core_invite_address((LinphoneCore*)lc,(LinphoneAddress*)to));
496 }
497
498 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateCall(  JNIEnv*  env
499                 ,jobject  thiz
500                 ,jlong lc
501                 ,jlong call) {
502         linphone_core_terminate_call((LinphoneCore*)lc,(LinphoneCall*)call);
503 }
504
505 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getRemoteAddress(      JNIEnv*  env
506                 ,jobject  thiz
507                 ,jlong lc) {
508         return (jlong)linphone_core_get_current_call_remote_address((LinphoneCore*)lc);
509 }
510 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInCall(   JNIEnv*  env
511                 ,jobject  thiz
512                 ,jlong lc) {
513
514         return linphone_core_in_call((LinphoneCore*)lc);
515 }
516 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInComingInvitePending(    JNIEnv*  env
517                 ,jobject  thiz
518                 ,jlong lc) {
519
520         return linphone_core_inc_invite_pending((LinphoneCore*)lc);
521 }
522 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCall(     JNIEnv*  env
523                 ,jobject  thiz
524                 ,jlong lc
525                 ,jlong call) {
526
527         linphone_core_accept_call((LinphoneCore*)lc,(LinphoneCall*)call);
528 }
529
530 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getCallLog(    JNIEnv*  env
531                 ,jobject  thiz
532                 ,jlong lc
533                 ,jint position) {
534                 return (jlong)ms_list_nth_data(linphone_core_get_call_logs((LinphoneCore*)lc),position);
535 }
536 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getNumberOfCallLogs(    JNIEnv*  env
537                 ,jobject  thiz
538                 ,jlong lc) {
539                 return ms_list_size(linphone_core_get_call_logs((LinphoneCore*)lc));
540 }
541 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setNetworkStateReachable(       JNIEnv*  env
542                 ,jobject  thiz
543                 ,jlong lc
544                 ,jboolean isReachable) {
545                 linphone_core_set_network_reachable((LinphoneCore*)lc,isReachable);
546 }
547
548 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPlaybackGain(        JNIEnv*  env
549                 ,jobject  thiz
550                 ,jlong lc
551                 ,jfloat gain) {
552                 linphone_core_set_playback_gain_db((LinphoneCore*)lc,gain);
553 }
554
555 extern "C" float Java_org_linphone_core_LinphoneCoreImpl_getPlaybackGain(       JNIEnv*  env
556                 ,jobject  thiz
557                 ,jlong lc) {
558                 return linphone_core_get_playback_gain_db((LinphoneCore*)lc);
559 }
560
561 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_muteMic(        JNIEnv*  env
562                 ,jobject  thiz
563                 ,jlong lc
564                 ,jboolean isMuted) {
565                 linphone_core_mute_mic((LinphoneCore*)lc,isMuted);
566 }
567
568 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_interpretUrl(  JNIEnv*  env
569                 ,jobject  thiz
570                 ,jlong lc
571                 ,jstring jurl) {
572         const char* url = env->GetStringUTFChars(jurl, NULL);
573         jlong result = (jlong)linphone_core_interpret_url((LinphoneCore*)lc,url);
574         env->ReleaseStringUTFChars(jurl, url);
575         return result;
576 }
577 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_sendDtmf(       JNIEnv*  env
578                 ,jobject  thiz
579                 ,jlong lc
580                 ,jchar dtmf) {
581         linphone_core_send_dtmf((LinphoneCore*)lc,dtmf);
582 }
583 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_playDtmf(       JNIEnv*  env
584                 ,jobject  thiz
585                 ,jlong lc
586                 ,jchar dtmf
587                 ,jint duration) {
588         linphone_core_play_dtmf((LinphoneCore*)lc,dtmf,duration);
589 }
590 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_stopDtmf(       JNIEnv*  env
591                 ,jobject  thiz
592                 ,jlong lc) {
593         linphone_core_stop_dtmf((LinphoneCore*)lc);
594 }
595
596 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_clearCallLogs(JNIEnv*  env
597                                                                                                                                                 ,jobject  thiz
598                                                                                                                                                 ,jlong lc) {
599         linphone_core_clear_call_logs((LinphoneCore*)lc);
600 }
601 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isMicMuted( JNIEnv*  env
602                 ,jobject  thiz
603                 ,jlong lc) {
604         return linphone_core_is_mic_muted((LinphoneCore*)lc);
605 }
606 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_findPayloadType(JNIEnv*  env
607                                                                                                                                                         ,jobject  thiz
608                                                                                                                                                         ,jlong lc
609                                                                                                                                                         ,jstring jmime
610                                                                                                                                                         ,jint rate) {
611         const char* mime = env->GetStringUTFChars(jmime, NULL);
612         jlong result = (jlong)linphone_core_find_payload_type((LinphoneCore*)lc,mime,rate);
613         env->ReleaseStringUTFChars(jmime, mime);
614         return result;
615 }
616 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_listVideoPayloadTypes(JNIEnv*  env
617                                                                                                                                                         ,jobject  thiz
618                                                                                                                                                         ,jlong lc) {
619         const MSList* codecs = linphone_core_get_video_codecs((LinphoneCore*)lc);
620         int codecsCount = ms_list_size(codecs);
621         jlongArray jCodecs = env->NewLongArray(codecsCount);
622         jlong *jInternalArray = env->GetLongArrayElements(jCodecs, NULL);
623
624         for (int i = 0; i < codecsCount; i++ ) {
625                 jInternalArray[i] = (unsigned long) (codecs->data);
626                 codecs = codecs->next;
627         }
628
629         env->ReleaseLongArrayElements(jCodecs, jInternalArray, 0);
630
631         return jCodecs;
632 }
633
634 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_listAudioPayloadTypes(JNIEnv*  env
635                                                                                                                                                         ,jobject  thiz
636                                                                                                                                                         ,jlong lc) {
637         const MSList* codecs = linphone_core_get_audio_codecs((LinphoneCore*)lc);
638         int codecsCount = ms_list_size(codecs);
639         jlongArray jCodecs = env->NewLongArray(codecsCount);
640         jlong *jInternalArray = env->GetLongArrayElements(jCodecs, NULL);
641
642         for (int i = 0; i < codecsCount; i++ ) {
643                 jInternalArray[i] = (unsigned long) (codecs->data);
644                 codecs = codecs->next;
645         }
646
647         env->ReleaseLongArrayElements(jCodecs, jInternalArray, 0);
648
649         return jCodecs;
650 }
651
652 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_enablePayloadType(JNIEnv*  env
653                                                                                                                                                         ,jobject  thiz
654                                                                                                                                                         ,jlong lc
655                                                                                                                                                         ,jlong pt
656                                                                                                                                                         ,jboolean enable) {
657         return linphone_core_enable_payload_type((LinphoneCore*)lc,(PayloadType*)pt,enable);
658 }
659 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableEchoCancellation(JNIEnv*  env
660                                                                                                                                                         ,jobject  thiz
661                                                                                                                                                         ,jlong lc
662                                                                                                                                                         ,jboolean enable) {
663         linphone_core_enable_echo_cancellation((LinphoneCore*)lc,enable);
664 }
665 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableEchoLimiter(JNIEnv*  env
666                                                                                                                                                         ,jobject  thiz
667                                                                                                                                                         ,jlong lc
668                                                                                                                                                         ,jboolean enable) {
669         linphone_core_enable_echo_limiter((LinphoneCore*)lc,enable);
670 }
671 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isEchoCancellationEnabled(JNIEnv*  env
672                                                                                                                                                         ,jobject  thiz
673                                                                                                                                                         ,jlong lc
674                                                                                                                                                         ) {
675         return linphone_core_echo_cancellation_enabled((LinphoneCore*)lc);
676 }
677
678 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCurrentCall(JNIEnv*  env
679                                                                                                                                                         ,jobject  thiz
680                                                                                                                                                         ,jlong lc
681                                                                                                                                                         ) {
682         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
683         
684         return lcdata->getCall(env,linphone_core_get_current_call((LinphoneCore*)lc));
685 }
686 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addFriend(JNIEnv*  env
687                                                                                                                                                         ,jobject  thiz
688                                                                                                                                                         ,jlong lc
689                                                                                                                                                         ,jlong aFriend
690                                                                                                                                                         ) {
691         linphone_core_add_friend((LinphoneCore*)lc,(LinphoneFriend*)aFriend);
692 }
693 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPresenceInfo(JNIEnv*  env
694                                                                                                                                                         ,jobject  thiz
695                                                                                                                                                         ,jlong lc
696                                                                                                                                                         ,jint minute_away
697                                                                                                                                                         ,jstring jalternative_contact
698                                                                                                                                                         ,jint status) {
699         const char* alternative_contact = jalternative_contact?env->GetStringUTFChars(jalternative_contact, NULL):NULL;
700         linphone_core_set_presence_info((LinphoneCore*)lc,minute_away,alternative_contact,(LinphoneOnlineStatus)status);
701         if (alternative_contact) env->ReleaseStringUTFChars(jalternative_contact, alternative_contact);
702 }
703
704 extern "C" long Java_org_linphone_core_LinphoneCoreImpl_createChatRoom(JNIEnv*  env
705                                                                                                                                                         ,jobject  thiz
706                                                                                                                                                         ,jlong lc
707                                                                                                                                                         ,jstring jto) {
708
709         const char* to = env->GetStringUTFChars(jto, NULL);
710         LinphoneChatRoom* lResult = linphone_core_create_chat_room((LinphoneCore*)lc,to);
711         env->ReleaseStringUTFChars(jto, to);
712         return (long)lResult;
713 }
714
715 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableVideo(JNIEnv*  env
716                                                                                                                                                         ,jobject  thiz
717                                                                                                                                                         ,jlong lc
718                                                                                                                                                         ,jboolean vcap_enabled
719                                                                                                                                                         ,jboolean display_enabled) {
720         linphone_core_enable_video((LinphoneCore*)lc, vcap_enabled,display_enabled);
721
722 }
723 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isVideoEnabled(JNIEnv*  env
724                                                                                                                                                         ,jobject  thiz
725                                                                                                                                                         ,jlong lc) {
726         return linphone_core_video_enabled((LinphoneCore*)lc);
727 }
728 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setRing(JNIEnv*  env
729                                                                                                                                                         ,jobject  thiz
730                                                                                                                                                         ,jlong lc
731                                                                                                                                                         ,jstring jpath) {
732         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
733         linphone_core_set_ring((LinphoneCore*)lc,path);
734         if (path) env->ReleaseStringUTFChars(jpath, path);
735 }
736 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getRing(JNIEnv*  env
737                                                                                                                                                         ,jobject  thiz
738                                                                                                                                                         ,jlong lc
739                                                                                                                                                         ) {
740         const char* path = linphone_core_get_ring((LinphoneCore*)lc);
741         if (path) {
742                 return env->NewStringUTF(path);
743         } else {
744                 return NULL;
745         }
746 }
747 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setRootCA(JNIEnv*  env
748                                                                                                                                                         ,jobject  thiz
749                                                                                                                                                         ,jlong lc
750                                                                                                                                                         ,jstring jpath) {
751         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
752         linphone_core_set_root_ca((LinphoneCore*)lc,path);
753         if (path) env->ReleaseStringUTFChars(jpath, path);
754 }
755 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableKeepAlive(JNIEnv*  env
756                                                                                                                                 ,jobject  thiz
757                                                                                                                                 ,jlong lc
758                                                                                                                                 ,jboolean enable) {
759         linphone_core_enable_keep_alive((LinphoneCore*)lc,enable);
760
761 }
762 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isKeepAliveEnabled(JNIEnv*  env
763                                                                                                                                 ,jobject  thiz
764                                                                                                                                 ,jlong lc) {
765         return linphone_core_keep_alive_enabled((LinphoneCore*)lc);
766
767 }
768 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_startEchoCalibration(JNIEnv*  env
769                                                                                                                                                                 ,jobject  thiz
770                                                                                                                                                                 ,jlong lc
771                                                                                                                                                                 ,jobject data) {
772         return linphone_core_start_echo_calibration((LinphoneCore*)lc
773                                                                                                         , LinphoneCoreData::ecCalibrationStatus
774                                                                                                         , data?env->NewGlobalRef(data):NULL);
775
776 }
777
778 static enum LinphoneMediaEncryption media_encryption_string_to_enum(const char* menc) {
779         if (menc==NULL)
780                 return LinphoneMediaEncryptionNone;
781         else if (strcasecmp(menc, "none")==0)
782                 return LinphoneMediaEncryptionNone;
783         else if (strcasecmp(menc, "srtp")==0)
784                 return LinphoneMediaEncryptionSRTP;
785         else if (strcasecmp(menc, "zrtp")==0)
786                 return LinphoneMediaEncryptionZRTP;
787         else
788                 return LinphoneMediaEncryptionNone;
789 }
790
791 static jstring media_encryption_enum_to_jstring(JNIEnv*  env, enum LinphoneMediaEncryption enc) {
792         switch (enc) {
793                 case LinphoneMediaEncryptionSRTP:
794                         return env->NewStringUTF("srtp");
795                 case LinphoneMediaEncryptionZRTP:
796                         return env->NewStringUTF("zrtp");
797                 case LinphoneMediaEncryptionNone:
798                         return env->NewStringUTF("none");
799                 default:
800                         return NULL;
801         }
802 }
803
804 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getMediaEncryption(JNIEnv*  env
805                                                                                                                                                         ,jobject  thiz
806                                                                                                                                                         ,jlong lc
807                                                                                                                                                         ) {
808         return media_encryption_enum_to_jstring(env,
809                 linphone_core_get_media_encryption((LinphoneCore*)lc));
810 }
811 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMediaEncryption(JNIEnv*  env
812                                                                                                                                                         ,jobject  thiz
813                                                                                                                                                         ,jlong lc
814                                                                                                                                                         ,jstring jmenc) {
815         const char* menc = jmenc?env->GetStringUTFChars(jmenc, NULL):NULL;
816         
817         linphone_core_set_media_encryption((LinphoneCore*)lc,
818                 media_encryption_string_to_enum(menc));
819
820         if (menc) env->ReleaseStringUTFChars(jmenc, menc);
821 }
822
823 extern "C" jstring Java_org_linphone_core_LinphoneCallParamsImpl_getMediaEncryption(JNIEnv*  env
824                                                                                                                                                         ,jobject  thiz
825                                                                                                                                                         ,jlong lc
826                                                                                                                                                         ) {
827         return media_encryption_enum_to_jstring(env,
828                 linphone_call_params_get_media_encryption((LinphoneCallParams*)lc));
829 }
830 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_setMediaEncryption(JNIEnv*  env
831                                                                                                                                                         ,jobject  thiz
832                                                                                                                                                         ,jlong lc
833                                                                                                                                                         ,jstring jmenc) {
834         const char* menc = jmenc?env->GetStringUTFChars(jmenc, NULL):NULL;
835         linphone_call_params_set_media_encryption((LinphoneCallParams*)lc,
836                 media_encryption_string_to_enum(menc));
837         if (menc) env->ReleaseStringUTFChars(jmenc, menc);
838 }
839
840 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_getMediaEncryptionMandatory(JNIEnv*  env
841                                                                                                                                                         ,jobject  thiz
842                                                                                                                                                         ,jlong lc
843                                                                                                                                                         ) {
844         return linphone_core_is_media_encryption_mandatory((LinphoneCore*)lc);
845 }
846
847 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMediaEncryptionMandatory(JNIEnv*  env
848                                                                                                                                                         ,jobject  thiz
849                                                                                                                                                         ,jlong lc
850                                                                                                                                                         , jboolean yesno
851                                                                                                                                                         ) {
852         linphone_core_set_media_encryption_mandatory((LinphoneCore*)lc, yesno);
853 }
854
855 //ProxyConfig
856
857 extern "C" jlong Java_org_linphone_core_LinphoneProxyConfigImpl_newLinphoneProxyConfig(JNIEnv*  env,jobject  thiz) {
858         LinphoneProxyConfig* proxy = linphone_proxy_config_new();
859         return  (jlong) proxy;
860 }
861
862 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_delete(JNIEnv*  env,jobject  thiz,jlong ptr) {
863         linphone_proxy_config_destroy((LinphoneProxyConfig*)ptr);
864 }
865 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jidentity) {
866         const char* identity = env->GetStringUTFChars(jidentity, NULL);
867         linphone_proxy_config_set_identity((LinphoneProxyConfig*)proxyCfg,identity);
868         env->ReleaseStringUTFChars(jidentity, identity);
869 }
870 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg) {
871         const char* identity = linphone_proxy_config_get_identity((LinphoneProxyConfig*)proxyCfg);
872         if (identity) {
873                 return env->NewStringUTF(identity);
874         } else {
875                 return NULL;
876         }
877 }
878 extern "C" int Java_org_linphone_core_LinphoneProxyConfigImpl_setProxy(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jproxy) {
879         const char* proxy = env->GetStringUTFChars(jproxy, NULL);
880         int err=linphone_proxy_config_set_server_addr((LinphoneProxyConfig*)proxyCfg,proxy);
881         env->ReleaseStringUTFChars(jproxy, proxy);
882         return err;
883 }
884 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getProxy(JNIEnv* env,jobject thiz,jlong proxyCfg) {
885         const char* proxy = linphone_proxy_config_get_addr((LinphoneProxyConfig*)proxyCfg);
886         if (proxy) {
887                 return env->NewStringUTF(proxy);
888         } else {
889                 return NULL;
890         }
891 }
892 extern "C" int Java_org_linphone_core_LinphoneProxyConfigImpl_setRoute(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jroute) {
893         if (jroute != NULL) {
894                 const char* route = env->GetStringUTFChars(jroute, NULL);
895                 int err=linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,route);
896                 env->ReleaseStringUTFChars(jroute, route);
897                 return err;
898         } else {
899                 return linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,NULL);
900         }
901 }
902 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getRoute(JNIEnv* env,jobject thiz,jlong proxyCfg) {
903         const char* route = linphone_proxy_config_get_route((LinphoneProxyConfig*)proxyCfg);
904         if (route) {
905                 return env->NewStringUTF(route);
906         } else {
907                 return NULL;
908         }
909 }
910
911 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enableRegister(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean enableRegister) {
912         linphone_proxy_config_enable_register((LinphoneProxyConfig*)proxyCfg,enableRegister);
913 }
914 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegistered(JNIEnv* env,jobject thiz,jlong proxyCfg) {
915         return linphone_proxy_config_is_registered((LinphoneProxyConfig*)proxyCfg);
916 }
917 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegisterEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
918         return linphone_proxy_config_register_enabled((LinphoneProxyConfig*)proxyCfg);
919 }
920 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_edit(JNIEnv* env,jobject thiz,jlong proxyCfg) {
921         linphone_proxy_config_edit((LinphoneProxyConfig*)proxyCfg);
922 }
923 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_done(JNIEnv* env,jobject thiz,jlong proxyCfg) {
924         linphone_proxy_config_done((LinphoneProxyConfig*)proxyCfg);
925 }
926 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_normalizePhoneNumber(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jnumber) {
927         if (jnumber == 0) {
928                 ms_error("cannot normalized null number");
929         }
930         const char* number = env->GetStringUTFChars(jnumber, NULL);
931         int len = env->GetStringLength(jnumber);
932         if (len == 0) {
933                 ms_warning("cannot normalize empty number");
934                 return jnumber;
935         }
936         char targetBuff[2*len];// returned number can be greater than origin (specially in case of prefix insertion
937         linphone_proxy_config_normalize_number((LinphoneProxyConfig*)proxyCfg,number,targetBuff,sizeof(targetBuff));
938         jstring normalizedNumber = env->NewStringUTF(targetBuff);
939         env->ReleaseStringUTFChars(jnumber, number);
940         return normalizedNumber;
941 }
942 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getDomain(JNIEnv* env
943                                                                                                                                                         ,jobject thiz
944                                                                                                                                                         ,jlong proxyCfg) {
945         const char* domain = linphone_proxy_config_get_domain((LinphoneProxyConfig*)proxyCfg);
946         if (domain) {
947                 return env->NewStringUTF(domain);
948         } else {
949                 return NULL;
950         }
951 }
952 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialEscapePlus(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean value) {
953         linphone_proxy_config_set_dial_escape_plus((LinphoneProxyConfig*)proxyCfg,value);
954 }
955
956 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialPrefix(JNIEnv* env
957                                                                                                                                         ,jobject thiz
958                                                                                                                                         ,jlong proxyCfg
959                                                                                                                                         ,jstring jprefix) {
960         const char* prefix = env->GetStringUTFChars(jprefix, NULL);
961         linphone_proxy_config_set_dial_prefix((LinphoneProxyConfig*)proxyCfg,prefix);
962         env->ReleaseStringUTFChars(jprefix, prefix);
963 }
964 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enablePublish(JNIEnv* env
965                                                                                                                                                                 ,jobject thiz
966                                                                                                                                                                 ,jlong proxyCfg
967                                                                                                                                                                 ,jboolean val) {
968         linphone_proxy_config_enable_publish((LinphoneProxyConfig*)proxyCfg,val);
969 }
970 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_publishEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
971         return linphone_proxy_config_publish_enabled((LinphoneProxyConfig*)proxyCfg);
972 }
973
974 //Auth Info
975
976 extern "C" jlong Java_org_linphone_core_LinphoneAuthInfoImpl_newLinphoneAuthInfo(JNIEnv* env
977                 , jobject thiz
978                 , jstring jusername
979                 , jstring juserid
980                 , jstring jpassword
981                 , jstring jha1
982                 , jstring jrealm) {
983
984         const char* username = env->GetStringUTFChars(jusername, NULL);
985         const char* password = env->GetStringUTFChars(jpassword, NULL);
986         jlong auth = (jlong)linphone_auth_info_new(username,NULL,password,NULL,NULL);
987
988         env->ReleaseStringUTFChars(jusername, username);
989         env->ReleaseStringUTFChars(jpassword, password);
990         return auth;
991
992 }
993 extern "C" void Java_org_linphone_core_LinphoneAuthInfoImpl_delete(JNIEnv* env
994                 , jobject thiz
995                 , jlong ptr) {
996         linphone_auth_info_destroy((LinphoneAuthInfo*)ptr);
997 }
998
999 //LinphoneAddress
1000
1001 extern "C" jlong Java_org_linphone_core_LinphoneAddressImpl_newLinphoneAddressImpl(JNIEnv*  env
1002                                                                                                                                                                         ,jobject  thiz
1003                                                                                                                                                                         ,jstring juri
1004                                                                                                                                                                         ,jstring jdisplayName) {
1005         const char* uri = env->GetStringUTFChars(juri, NULL);
1006         LinphoneAddress* address = linphone_address_new(uri);
1007         if (jdisplayName && address) {
1008                 const char* displayName = env->GetStringUTFChars(jdisplayName, NULL);
1009                 linphone_address_set_display_name(address,displayName);
1010                 env->ReleaseStringUTFChars(jdisplayName, displayName);
1011         }
1012         env->ReleaseStringUTFChars(juri, uri);
1013
1014         return  (jlong) address;
1015 }
1016 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_delete(JNIEnv*  env
1017                                                                                                                                                 ,jobject  thiz
1018                                                                                                                                                 ,jlong ptr) {
1019         linphone_address_destroy((LinphoneAddress*)ptr);
1020 }
1021
1022 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDisplayName(JNIEnv*  env
1023                                                                                                                                                 ,jobject  thiz
1024                                                                                                                                                 ,jlong ptr) {
1025         const char* displayName = linphone_address_get_display_name((LinphoneAddress*)ptr);
1026         if (displayName) {
1027                 return env->NewStringUTF(displayName);
1028         } else {
1029                 return 0;
1030         }
1031 }
1032 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getUserName(JNIEnv*  env
1033                                                                                                                                                 ,jobject  thiz
1034                                                                                                                                                 ,jlong ptr) {
1035         const char* userName = linphone_address_get_username((LinphoneAddress*)ptr);
1036         if (userName) {
1037                 return env->NewStringUTF(userName);
1038         } else {
1039                 return 0;
1040         }
1041 }
1042 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDomain(JNIEnv*  env
1043                                                                                                                                                 ,jobject  thiz
1044                                                                                                                                                 ,jlong ptr) {
1045         const char* domain = linphone_address_get_domain((LinphoneAddress*)ptr);
1046         if (domain) {
1047                 return env->NewStringUTF(domain);
1048         } else {
1049                 return 0;
1050         }
1051 }
1052
1053 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toString(JNIEnv*  env
1054                                                                                                                                                 ,jobject  thiz
1055                                                                                                                                                 ,jlong ptr) {
1056         char* uri = linphone_address_as_string((LinphoneAddress*)ptr);
1057         jstring juri =env->NewStringUTF(uri);
1058         ms_free(uri);
1059         return juri;
1060 }
1061 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toUri(JNIEnv*  env
1062                                                                                                                                                 ,jobject  thiz
1063                                                                                                                                                 ,jlong ptr) {
1064         char* uri = linphone_address_as_string_uri_only((LinphoneAddress*)ptr);
1065         jstring juri =env->NewStringUTF(uri);
1066         ms_free(uri);
1067         return juri;
1068 }
1069 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_setDisplayName(JNIEnv*  env
1070                                                                                                                                                 ,jobject  thiz
1071                                                                                                                                                 ,jlong address
1072                                                                                                                                                 ,jstring jdisplayName) {
1073         const char* displayName = jdisplayName!= NULL?env->GetStringUTFChars(jdisplayName, NULL):NULL;
1074         linphone_address_set_display_name((LinphoneAddress*)address,displayName);
1075         if (displayName != NULL) env->ReleaseStringUTFChars(jdisplayName, displayName);
1076 }
1077
1078
1079 //CallLog
1080 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getFrom(JNIEnv*  env
1081                                                                                                                                                 ,jobject  thiz
1082                                                                                                                                                 ,jlong ptr) {
1083         return (jlong)((LinphoneCallLog*)ptr)->from;
1084 }
1085 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getTo(JNIEnv*  env
1086                                                                                                                                                 ,jobject  thiz
1087                                                                                                                                                 ,jlong ptr) {
1088         return (jlong)((LinphoneCallLog*)ptr)->to;
1089 }
1090 extern "C" jboolean Java_org_linphone_core_LinphoneCallLogImpl_isIncoming(JNIEnv*  env
1091                                                                                                                                                 ,jobject  thiz
1092                                                                                                                                                 ,jlong ptr) {
1093         return ((LinphoneCallLog*)ptr)->dir==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1094 }
1095
1096 /*payloadType*/
1097 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_toString(JNIEnv*  env,jobject  thiz,jlong ptr) {
1098         PayloadType* pt = (PayloadType*)ptr;
1099         char* value = ms_strdup_printf("[%s] clock [%i], bitrate [%i]"
1100                                                                         ,payload_type_get_mime(pt)
1101                                                                         ,payload_type_get_rate(pt)
1102                                                                         ,payload_type_get_bitrate(pt));
1103         jstring jvalue =env->NewStringUTF(value);
1104         ms_free(value);
1105         return jvalue;
1106 }
1107 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_getMime(JNIEnv*  env,jobject  thiz,jlong ptr) {
1108         PayloadType* pt = (PayloadType*)ptr;
1109         jstring jvalue =env->NewStringUTF(payload_type_get_mime(pt));
1110         return jvalue;
1111 }
1112 extern "C" jint Java_org_linphone_core_PayloadTypeImpl_getRate(JNIEnv*  env,jobject  thiz, jlong ptr) {
1113         PayloadType* pt = (PayloadType*)ptr;
1114         return payload_type_get_rate(pt);
1115 }
1116
1117 //LinphoneCall
1118 extern "C" void Java_org_linphone_core_LinphoneCallImpl_finalize(JNIEnv*  env
1119                                                                                                                                                 ,jobject  thiz
1120                                                                                                                                                 ,jlong ptr) {
1121         LinphoneCall *call=(LinphoneCall*)ptr;
1122         linphone_call_unref(call);
1123 }
1124
1125 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCallLog(    JNIEnv*  env
1126                                                                                                                                                 ,jobject  thiz
1127                                                                                                                                                 ,jlong ptr) {
1128         return (jlong)linphone_call_get_call_log((LinphoneCall*)ptr);
1129 }
1130
1131 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isIncoming( JNIEnv*  env
1132                                                                                                                                                 ,jobject  thiz
1133                                                                                                                                                 ,jlong ptr) {
1134         return linphone_call_get_dir((LinphoneCall*)ptr)==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1135 }
1136
1137 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteAddress(      JNIEnv*  env
1138                                                                                                                                                 ,jobject  thiz
1139                                                                                                                                                 ,jlong ptr) {
1140         return (jlong)linphone_call_get_remote_address((LinphoneCall*)ptr);
1141 }
1142
1143 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getState(       JNIEnv*  env
1144                                                                                                                                                 ,jobject  thiz
1145                                                                                                                                                 ,jlong ptr) {
1146         return (jint)linphone_call_get_state((LinphoneCall*)ptr);
1147 }
1148 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoCancellation( JNIEnv*  env
1149                                                                                                                                                 ,jobject  thiz
1150                                                                                                                                                 ,jlong ptr
1151                                                                                                                                                 ,jboolean value) {
1152         linphone_call_enable_echo_cancellation((LinphoneCall*)ptr,value);
1153 }
1154 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoCancellationEnabled(  JNIEnv*  env
1155                                                                                                                                                 ,jobject  thiz
1156                                                                                                                                                 ,jlong ptr) {
1157         return linphone_call_echo_cancellation_enabled((LinphoneCall*)ptr);
1158 }
1159
1160 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoLimiter(      JNIEnv*  env
1161                                                                                                                                                 ,jobject  thiz
1162                                                                                                                                                 ,jlong ptr
1163                                                                                                                                                 ,jboolean value) {
1164         linphone_call_enable_echo_limiter((LinphoneCall*)ptr,value);
1165 }
1166 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoLimiterEnabled(       JNIEnv*  env
1167                                                                                                                                                 ,jobject  thiz
1168                                                                                                                                                 ,jlong ptr) {
1169         return linphone_call_echo_limiter_enabled((LinphoneCall*)ptr);
1170 }
1171
1172 extern "C" jobject Java_org_linphone_core_LinphoneCallImpl_getReplacedCall(     JNIEnv*  env
1173                                                                                                                                                 ,jobject  thiz
1174                                                                                                                                                 ,jlong ptr) {
1175         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data(linphone_call_get_core((LinphoneCall*)ptr));       
1176         return lcd->getCall(env,linphone_call_get_replaced_call((LinphoneCall*)ptr));
1177 }
1178
1179 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getCurrentQuality(    JNIEnv*  env
1180                                                                                                                                                 ,jobject  thiz
1181                                                                                                                                                 ,jlong ptr) {
1182         return (jfloat)linphone_call_get_current_quality((LinphoneCall*)ptr);
1183 }
1184
1185 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getAverageQuality(    JNIEnv*  env
1186                                                                                                                                                 ,jobject  thiz
1187                                                                                                                                                 ,jlong ptr) {
1188         return (jfloat)linphone_call_get_average_quality((LinphoneCall*)ptr);
1189 }
1190
1191
1192 //LinphoneFriend
1193 extern "C" long Java_org_linphone_core_LinphoneFriendImpl_newLinphoneFriend(JNIEnv*  env
1194                                                                                                                                                 ,jobject  thiz
1195                                                                                                                                                 ,jstring jFriendUri) {
1196         LinphoneFriend* lResult;
1197
1198         if (jFriendUri) {
1199                 const char* friendUri = env->GetStringUTFChars(jFriendUri, NULL);
1200                 lResult= linphone_friend_new_with_addr(friendUri);
1201                 env->ReleaseStringUTFChars(jFriendUri, friendUri);
1202         } else {
1203                 lResult = linphone_friend_new();
1204         }
1205         return (long)lResult;
1206 }
1207 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setAddress(JNIEnv*  env
1208                                                                                                                                                 ,jobject  thiz
1209                                                                                                                                                 ,jlong ptr
1210                                                                                                                                                 ,jlong linphoneAddress) {
1211         linphone_friend_set_addr((LinphoneFriend*)ptr,(LinphoneAddress*)linphoneAddress);
1212 }
1213 extern "C" long Java_org_linphone_core_LinphoneFriendImpl_getAddress(JNIEnv*  env
1214                                                                                                                                                 ,jobject  thiz
1215                                                                                                                                                 ,jlong ptr) {
1216         return (long)linphone_friend_get_address((LinphoneFriend*)ptr);
1217 }
1218 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setIncSubscribePolicy(JNIEnv*  env
1219                                                                                                                                                 ,jobject  thiz
1220                                                                                                                                                 ,jlong ptr
1221                                                                                                                                                 ,jint policy) {
1222         linphone_friend_set_inc_subscribe_policy((LinphoneFriend*)ptr,(LinphoneSubscribePolicy)policy);
1223 }
1224 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getIncSubscribePolicy(JNIEnv*  env
1225                                                                                                                                                 ,jobject  thiz
1226                                                                                                                                                 ,jlong ptr) {
1227         return linphone_friend_get_inc_subscribe_policy((LinphoneFriend*)ptr);
1228 }
1229 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_enableSubscribes(JNIEnv*  env
1230                                                                                                                                                 ,jobject  thiz
1231                                                                                                                                                 ,jlong ptr
1232                                                                                                                                                 ,jboolean value) {
1233         linphone_friend_enable_subscribes((LinphoneFriend*)ptr,value);
1234 }
1235 extern "C" jboolean Java_org_linphone_core_LinphoneFriendImpl_isSubscribesEnabled(JNIEnv*  env
1236                                                                                                                                                 ,jobject  thiz
1237                                                                                                                                                 ,jlong ptr) {
1238         return linphone_friend_subscribes_enabled((LinphoneFriend*)ptr);
1239 }
1240 extern "C" jboolean Java_org_linphone_core_LinphoneFriendImpl_getStatus(JNIEnv*  env
1241                                                                                                                                                 ,jobject  thiz
1242                                                                                                                                                 ,jlong ptr) {
1243         return linphone_friend_get_status((LinphoneFriend*)ptr);
1244 }
1245 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_edit(JNIEnv*  env
1246                                                                                                                                                 ,jobject  thiz
1247                                                                                                                                                 ,jlong ptr) {
1248         return linphone_friend_edit((LinphoneFriend*)ptr);
1249 }
1250 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_done(JNIEnv*  env
1251                                                                                                                                                 ,jobject  thiz
1252                                                                                                                                                 ,jlong ptr) {
1253          linphone_friend_done((LinphoneFriend*)ptr);
1254 }
1255 //LinphoneChatRoom
1256 extern "C" long Java_org_linphone_core_LinphoneChatRoomImpl_getPeerAddress(JNIEnv*  env
1257                                                                                                                                                 ,jobject  thiz
1258                                                                                                                                                 ,jlong ptr) {
1259         return (long) linphone_chat_room_get_peer_address((LinphoneChatRoom*)ptr);
1260 }
1261 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage(JNIEnv*  env
1262                                                                                                                                                 ,jobject  thiz
1263                                                                                                                                                 ,jlong ptr
1264                                                                                                                                                 ,jstring jmessage) {
1265         const char* message = env->GetStringUTFChars(jmessage, NULL);
1266         linphone_chat_room_send_message((LinphoneChatRoom*)ptr,message);
1267         env->ReleaseStringUTFChars(jmessage, message);
1268
1269 }
1270
1271 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoWindowId(JNIEnv* env
1272                                                                                                                                                 ,jobject thiz
1273                                                                                                                                                 ,jlong lc
1274                                                                                                                                                 ,jobject obj) {
1275         jobject oldWindow = (jobject) linphone_core_get_native_video_window_id((LinphoneCore*)lc);
1276         if (oldWindow != NULL) {
1277                 env->DeleteGlobalRef(oldWindow);
1278         }
1279         if (obj != NULL) {
1280                 obj = env->NewGlobalRef(obj);
1281         }
1282         linphone_core_set_native_video_window_id((LinphoneCore*)lc,(unsigned long)obj);
1283 }
1284
1285 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreviewWindowId(JNIEnv* env
1286                                                                                                                                                 ,jobject thiz
1287                                                                                                                                                 ,jlong lc
1288                                                                                                                                                 ,jobject obj) {
1289         jobject oldWindow = (jobject) linphone_core_get_native_preview_window_id((LinphoneCore*)lc);
1290         if (oldWindow != NULL) {
1291                 env->DeleteGlobalRef(oldWindow);
1292         }
1293         if (obj != NULL) {
1294                 obj = env->NewGlobalRef(obj);
1295         }
1296         linphone_core_set_native_preview_window_id((LinphoneCore*)lc,(unsigned long)obj);
1297 }
1298
1299 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDeviceRotation(JNIEnv* env
1300                                                                                                                                                 ,jobject thiz
1301                                                                                                                                                 ,jlong lc
1302                                                                                                                                                 ,jint rotation) {
1303         linphone_core_set_device_rotation((LinphoneCore*)lc,rotation);
1304 }
1305
1306
1307 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc, int enum_value){
1308         linphone_core_set_firewall_policy((LinphoneCore*)lc,(LinphoneFirewallPolicy)enum_value);
1309 }
1310
1311 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc){
1312         return linphone_core_get_firewall_policy((LinphoneCore*)lc);
1313 }
1314
1315 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setStunServer(JNIEnv *env, jobject thiz, jlong lc, jstring jserver){
1316         const char* server = NULL;
1317         if (jserver) server=env->GetStringUTFChars(jserver, NULL);
1318         linphone_core_set_stun_server((LinphoneCore*)lc,server);
1319         if (server) env->ReleaseStringUTFChars(jserver,server);
1320 }
1321
1322 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getStunServer(JNIEnv *env, jobject thiz, jlong lc){
1323         const char *ret= linphone_core_get_stun_server((LinphoneCore*)lc);
1324         if (ret==NULL) return NULL;
1325         jstring jvalue =env->NewStringUTF(ret);
1326         return jvalue;
1327 }
1328
1329 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_audioBandwidth(JNIEnv *env, jobject thiz, jlong lcp, jint bw){
1330         linphone_call_params_set_audio_bandwidth_limit((LinphoneCallParams*)lcp, bw);
1331 }
1332
1333 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_enableVideo(JNIEnv *env, jobject thiz, jlong lcp, jboolean b){
1334         linphone_call_params_enable_video((LinphoneCallParams*)lcp, b);
1335 }
1336
1337 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_getVideoEnabled(JNIEnv *env, jobject thiz, jlong lcp){
1338         return linphone_call_params_video_enabled((LinphoneCallParams*)lcp);
1339 }
1340
1341 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_localConferenceMode(JNIEnv *env, jobject thiz, jlong lcp){
1342         return linphone_call_params_local_conference_mode((LinphoneCallParams*)lcp);
1343 }
1344
1345 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_destroy(JNIEnv *env, jobject thiz, jlong lc){
1346         return linphone_call_params_destroy((LinphoneCallParams*)lc);
1347 }
1348 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_createDefaultCallParams(JNIEnv *env, jobject thiz, jlong lc){
1349         return (jlong) linphone_core_create_default_call_parameters((LinphoneCore*)lc);
1350 }
1351
1352 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCurrentParamsCopy(JNIEnv *env, jobject thiz, jlong lc){
1353         return (jlong) linphone_call_params_copy(linphone_call_get_current_params((LinphoneCall*)lc));
1354 }
1355
1356 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_enableCamera(JNIEnv *env, jobject thiz, jlong lc, jboolean b){
1357         linphone_call_enable_camera((LinphoneCall *)lc, (bool_t) b);
1358 }
1359
1360 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_cameraEnabled(JNIEnv *env, jobject thiz, jlong lc){
1361         linphone_call_camera_enabled((LinphoneCall *)lc);
1362 }
1363
1364 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong addr, jlong params){
1365         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
1366         return  lcd->getCall(env,linphone_core_invite_address_with_params((LinphoneCore *)lc, (const LinphoneAddress *)addr, (const LinphoneCallParams *)params));
1367 }
1368
1369 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1370         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (LinphoneCallParams *)params);
1371 }
1372
1373 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateCall(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1374         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (const LinphoneCallParams *)params);
1375 }
1376
1377
1378 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc, jint width, jint height){
1379         MSVideoSize vsize;
1380         vsize.width = (int)width;
1381         vsize.height = (int)height;
1382         linphone_core_set_preferred_video_size((LinphoneCore *)lc, vsize);
1383 }
1384
1385 extern "C" jintArray Java_org_linphone_core_LinphoneCoreImpl_getPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc){
1386         MSVideoSize vsize = linphone_core_get_preferred_video_size((LinphoneCore *)lc);
1387     jintArray arr = env->NewIntArray(2);
1388         int tVsize [2]= {vsize.width,vsize.height};
1389     env->SetIntArrayRegion(arr, 0, 2, tVsize);
1390     return arr;
1391 }
1392
1393 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1394         linphone_core_set_download_bandwidth((LinphoneCore *)lc, (int) bw);
1395 }
1396
1397 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1398         linphone_core_set_upload_bandwidth((LinphoneCore *)lc, (int) bw);
1399 }
1400
1401 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1402         linphone_core_set_download_ptime((LinphoneCore *)lc, (int) ptime);
1403 }
1404
1405 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1406         linphone_core_set_upload_ptime((LinphoneCore *)lc, (int) ptime);
1407 }
1408
1409 extern "C" int Java_org_linphone_core_LinphoneProxyConfigImpl_getState(JNIEnv*  env,jobject thiz,jlong ptr) {
1410         return (int) linphone_proxy_config_get_state((const LinphoneProxyConfig *) ptr);
1411 }
1412 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setExpires(JNIEnv*  env,jobject thiz,jlong ptr,jint delay) {
1413         linphone_proxy_config_expires((LinphoneProxyConfig *) ptr, (int) delay);
1414 }
1415
1416 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getDuration(JNIEnv*  env,jobject thiz,jlong ptr) {
1417         linphone_call_get_duration((LinphoneCall *) ptr);
1418 }
1419
1420 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getSignalingTransportPort(JNIEnv* env,jobject thiz,jlong ptr, jint code) {
1421         LCSipTransports tr;
1422         linphone_core_get_sip_transports((LinphoneCore *) ptr, &tr);
1423                 switch (code) {
1424         case 0:
1425                 return tr.udp_port;
1426         case 1:
1427                 return tr.tcp_port;
1428         case 3:
1429                 return tr.tls_port;
1430         default:
1431                 return -2;
1432         }
1433 }
1434
1435 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setSignalingTransportPorts(JNIEnv*  env,jobject thiz,jlong ptr,jint udp, jint tcp, jint tls) {
1436         LinphoneCore *lc = (LinphoneCore *) ptr;
1437         LCSipTransports tr;
1438         tr.udp_port = udp;
1439         tr.tcp_port = tcp;
1440         tr.tls_port = tls;
1441
1442         linphone_core_set_sip_transports(lc, &tr); // tr will be copied
1443 }
1444
1445 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableIpv6(JNIEnv* env,jobject  thiz
1446               ,jlong lc, jboolean enable) {
1447               linphone_core_enable_ipv6((LinphoneCore*)lc,enable);
1448 }
1449
1450 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_adjustSoftwareVolume(JNIEnv* env,jobject  thiz
1451               ,jlong ptr, jint db) {
1452         linphone_core_set_playback_gain_db((LinphoneCore *) ptr, db);
1453 }
1454
1455 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1456         return linphone_core_pause_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1457 }
1458 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1459         return linphone_core_pause_all_calls((LinphoneCore *) pCore);
1460 }
1461 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_resumeCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1462         return linphone_core_resume_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1463 }
1464 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInConference(JNIEnv *env,jobject thiz,jlong pCore) {
1465         return linphone_core_is_in_conference((LinphoneCore *) pCore);
1466 }
1467 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enterConference(JNIEnv *env,jobject thiz,jlong pCore) {
1468         linphone_core_enter_conference((LinphoneCore *) pCore);
1469 }
1470 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_leaveConference(JNIEnv *env,jobject thiz,jlong pCore) {
1471         linphone_core_leave_conference((LinphoneCore *) pCore);
1472 }
1473 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAllToConference(JNIEnv *env,jobject thiz,jlong pCore) {
1474         linphone_core_add_all_to_conference((LinphoneCore *) pCore);
1475 }
1476 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addToConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1477         linphone_core_add_to_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1478 }
1479 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFromConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1480         linphone_core_remove_from_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1481 }
1482
1483 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateConference(JNIEnv *env,jobject thiz,jlong pCore) {
1484         linphone_core_terminate_conference((LinphoneCore *) pCore);
1485 }
1486 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getConferenceSize(JNIEnv *env,jobject thiz,jlong pCore) {
1487         return linphone_core_get_conference_size((LinphoneCore *) pCore);
1488 }
1489 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1490         linphone_core_terminate_all_calls((LinphoneCore *) pCore);
1491 }
1492 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCall(JNIEnv *env,jobject thiz,jlong pCore,jint position) {
1493         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
1494         LinphoneCall* lCall = (LinphoneCall*) ms_list_nth_data(linphone_core_get_calls((LinphoneCore *) pCore),position);
1495         return lcd->getCall(env,lCall);
1496 }
1497 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getCallsNb(JNIEnv *env,jobject thiz,jlong pCore) {
1498         return ms_list_size(linphone_core_get_calls((LinphoneCore *) pCore));
1499 }
1500
1501 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_transferCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jstring jReferTo) {
1502         const char* cReferTo=env->GetStringUTFChars(jReferTo, NULL);
1503         linphone_core_transfer_call((LinphoneCore *) pCore, (LinphoneCall *) pCall, cReferTo);
1504         env->ReleaseStringUTFChars(jReferTo, cReferTo);
1505 }
1506 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_transferCallToAnother(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jlong pDestCall) {
1507         linphone_core_transfer_call_to_another((LinphoneCore *) pCore, (LinphoneCall *) pCall, (LinphoneCall *) pDestCall);
1508 }
1509
1510 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setZrtpSecretsCache(JNIEnv *env,jobject thiz,jlong pCore, jstring jFile) {
1511         if (jFile) {
1512                 const char* cFile=env->GetStringUTFChars(jFile, NULL);
1513                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,cFile);
1514                 env->ReleaseStringUTFChars(jFile, cFile);
1515         } else {
1516                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,NULL);
1517         }
1518 }
1519
1520 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_findCallFromUri(JNIEnv *env,jobject thiz,jlong pCore, jstring jUri) {
1521         const char* cUri=env->GetStringUTFChars(jUri, NULL);
1522         LinphoneCall *call= (LinphoneCall *) linphone_core_find_call_from_uri((LinphoneCore *) pCore,cUri);
1523         env->ReleaseStringUTFChars(jUri, cUri);
1524         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
1525         return (jobject) lcdata->getCall(env,call);
1526 }
1527
1528
1529 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_setVideoDevice(JNIEnv *env,jobject thiz,jlong pCore,jint id) {
1530         LinphoneCore* lc = (LinphoneCore *) pCore;
1531         const char** devices = linphone_core_get_video_devices(lc);
1532         if (devices == NULL) {
1533                 ms_error("No existing video devices\n");
1534                 return -1;
1535         }
1536         int i;
1537         for(i=0; i<=id; i++) {
1538                 if (devices[i] == NULL)
1539                         break;
1540                 ms_message("Existing device %d : %s\n", i, devices[i]);
1541                 if (i==id) {
1542                         return linphone_core_set_video_device(lc, devices[i]);
1543                 }
1544         }
1545         return -1;
1546 }
1547
1548 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getVideoDevice(JNIEnv *env,jobject thiz,jlong pCore) {
1549         LinphoneCore* lc = (LinphoneCore *) pCore;
1550         const char** devices = linphone_core_get_video_devices(lc);
1551         if (devices == NULL) {
1552                 ms_error("No existing video devices\n");
1553                 return -1;
1554         }
1555         const char* cam = linphone_core_get_video_device(lc);
1556         if (cam == NULL) {
1557                 ms_error("No current video device\n");
1558         } else {
1559                 int i=0;
1560                 while(devices[i] != NULL) {
1561                         if (strcmp(devices[i], cam) == 0)
1562                                 return i;
1563                         i++;
1564                 }
1565         }
1566         ms_warning("Returning default (0) device\n");
1567         return 0;
1568 }
1569
1570 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getAuthenticationToken(JNIEnv*  env,jobject thiz,jlong ptr) {
1571         LinphoneCall *call = (LinphoneCall *) ptr;
1572         const char* token = linphone_call_get_authentication_token(call);
1573         if (token == NULL) return NULL;
1574         return env->NewStringUTF(token);
1575 }
1576 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr) {
1577         LinphoneCall *call = (LinphoneCall *) ptr;
1578         return linphone_call_get_authentication_token_verified(call);
1579 }
1580
1581 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_soundResourcesLocked(JNIEnv* env,jobject thiz,jlong ptr){
1582         return linphone_core_sound_resources_locked((LinphoneCore *) ptr);
1583 }
1584
1585 // Needed by Galaxy S (can't switch to/from speaker while playing and still keep mic working)
1586 // Implemented directly in msandroid.cpp (sound filters for Android).
1587 extern "C" void msandroid_hack_speaker_state(bool speakerOn);
1588
1589 extern "C" void Java_org_linphone_LinphoneManager_hackSpeakerState(JNIEnv*  env,jobject thiz,jboolean speakerOn){
1590         msandroid_hack_speaker_state(speakerOn);
1591 }
1592 // End Galaxy S hack functions
1593
1594
1595 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMaxCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1596         return (jint) linphone_core_get_max_calls((LinphoneCore *) pCore);
1597 }
1598 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMaxCalls(JNIEnv *env,jobject thiz,jlong pCore, jint max) {
1599         linphone_core_set_max_calls((LinphoneCore *) pCore, (int) max);
1600 }