]> sjero.net Git - linphone/blob - coreapi/linphonecore_jni.cc
Function to check if a call locks sound resources.
[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
779
780 //ProxyConfig
781
782 extern "C" jlong Java_org_linphone_core_LinphoneProxyConfigImpl_newLinphoneProxyConfig(JNIEnv*  env,jobject  thiz) {
783         LinphoneProxyConfig* proxy = linphone_proxy_config_new();
784         return  (jlong) proxy;
785 }
786
787 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_delete(JNIEnv*  env,jobject  thiz,jlong ptr) {
788         linphone_proxy_config_destroy((LinphoneProxyConfig*)ptr);
789 }
790 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jidentity) {
791         const char* identity = env->GetStringUTFChars(jidentity, NULL);
792         linphone_proxy_config_set_identity((LinphoneProxyConfig*)proxyCfg,identity);
793         env->ReleaseStringUTFChars(jidentity, identity);
794 }
795 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg) {
796         const char* identity = linphone_proxy_config_get_identity((LinphoneProxyConfig*)proxyCfg);
797         if (identity) {
798                 return env->NewStringUTF(identity);
799         } else {
800                 return NULL;
801         }
802 }
803 extern "C" int Java_org_linphone_core_LinphoneProxyConfigImpl_setProxy(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jproxy) {
804         const char* proxy = env->GetStringUTFChars(jproxy, NULL);
805         int err=linphone_proxy_config_set_server_addr((LinphoneProxyConfig*)proxyCfg,proxy);
806         env->ReleaseStringUTFChars(jproxy, proxy);
807         return err;
808 }
809 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getProxy(JNIEnv* env,jobject thiz,jlong proxyCfg) {
810         const char* proxy = linphone_proxy_config_get_addr((LinphoneProxyConfig*)proxyCfg);
811         if (proxy) {
812                 return env->NewStringUTF(proxy);
813         } else {
814                 return NULL;
815         }
816 }
817 extern "C" int Java_org_linphone_core_LinphoneProxyConfigImpl_setRoute(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jroute) {
818         if (jroute != NULL) {
819                 const char* route = env->GetStringUTFChars(jroute, NULL);
820                 int err=linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,route);
821                 env->ReleaseStringUTFChars(jroute, route);
822                 return err;
823         } else {
824                 return linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,NULL);
825         }
826 }
827 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getRoute(JNIEnv* env,jobject thiz,jlong proxyCfg) {
828         const char* route = linphone_proxy_config_get_route((LinphoneProxyConfig*)proxyCfg);
829         if (route) {
830                 return env->NewStringUTF(route);
831         } else {
832                 return NULL;
833         }
834 }
835
836 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enableRegister(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean enableRegister) {
837         linphone_proxy_config_enable_register((LinphoneProxyConfig*)proxyCfg,enableRegister);
838 }
839 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegistered(JNIEnv* env,jobject thiz,jlong proxyCfg) {
840         return linphone_proxy_config_is_registered((LinphoneProxyConfig*)proxyCfg);
841 }
842 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegisterEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
843         return linphone_proxy_config_register_enabled((LinphoneProxyConfig*)proxyCfg);
844 }
845 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_edit(JNIEnv* env,jobject thiz,jlong proxyCfg) {
846         linphone_proxy_config_edit((LinphoneProxyConfig*)proxyCfg);
847 }
848 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_done(JNIEnv* env,jobject thiz,jlong proxyCfg) {
849         linphone_proxy_config_done((LinphoneProxyConfig*)proxyCfg);
850 }
851 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_normalizePhoneNumber(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jnumber) {
852         if (jnumber == 0) {
853                 ms_error("cannot normalized null number");
854         }
855         const char* number = env->GetStringUTFChars(jnumber, NULL);
856         int len = env->GetStringLength(jnumber);
857         if (len == 0) {
858                 ms_warning("cannot normalize empty number");
859                 return jnumber;
860         }
861         char targetBuff[2*len];// returned number can be greater than origin (specially in case of prefix insertion
862         linphone_proxy_config_normalize_number((LinphoneProxyConfig*)proxyCfg,number,targetBuff,sizeof(targetBuff));
863         jstring normalizedNumber = env->NewStringUTF(targetBuff);
864         env->ReleaseStringUTFChars(jnumber, number);
865         return normalizedNumber;
866 }
867 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getDomain(JNIEnv* env
868                                                                                                                                                         ,jobject thiz
869                                                                                                                                                         ,jlong proxyCfg) {
870         const char* domain = linphone_proxy_config_get_domain((LinphoneProxyConfig*)proxyCfg);
871         if (domain) {
872                 return env->NewStringUTF(domain);
873         } else {
874                 return NULL;
875         }
876 }
877 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialEscapePlus(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean value) {
878         linphone_proxy_config_set_dial_escape_plus((LinphoneProxyConfig*)proxyCfg,value);
879 }
880
881 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialPrefix(JNIEnv* env
882                                                                                                                                         ,jobject thiz
883                                                                                                                                         ,jlong proxyCfg
884                                                                                                                                         ,jstring jprefix) {
885         const char* prefix = env->GetStringUTFChars(jprefix, NULL);
886         linphone_proxy_config_set_dial_prefix((LinphoneProxyConfig*)proxyCfg,prefix);
887         env->ReleaseStringUTFChars(jprefix, prefix);
888 }
889 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enablePublish(JNIEnv* env
890                                                                                                                                                                 ,jobject thiz
891                                                                                                                                                                 ,jlong proxyCfg
892                                                                                                                                                                 ,jboolean val) {
893         linphone_proxy_config_enable_publish((LinphoneProxyConfig*)proxyCfg,val);
894 }
895 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_publishEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
896         return linphone_proxy_config_publish_enabled((LinphoneProxyConfig*)proxyCfg);
897 }
898
899 //Auth Info
900
901 extern "C" jlong Java_org_linphone_core_LinphoneAuthInfoImpl_newLinphoneAuthInfo(JNIEnv* env
902                 , jobject thiz
903                 , jstring jusername
904                 , jstring juserid
905                 , jstring jpassword
906                 , jstring jha1
907                 , jstring jrealm) {
908
909         const char* username = env->GetStringUTFChars(jusername, NULL);
910         const char* password = env->GetStringUTFChars(jpassword, NULL);
911         jlong auth = (jlong)linphone_auth_info_new(username,NULL,password,NULL,NULL);
912
913         env->ReleaseStringUTFChars(jusername, username);
914         env->ReleaseStringUTFChars(jpassword, password);
915         return auth;
916
917 }
918 extern "C" void Java_org_linphone_core_LinphoneAuthInfoImpl_delete(JNIEnv* env
919                 , jobject thiz
920                 , jlong ptr) {
921         linphone_auth_info_destroy((LinphoneAuthInfo*)ptr);
922 }
923
924 //LinphoneAddress
925
926 extern "C" jlong Java_org_linphone_core_LinphoneAddressImpl_newLinphoneAddressImpl(JNIEnv*  env
927                                                                                                                                                                         ,jobject  thiz
928                                                                                                                                                                         ,jstring juri
929                                                                                                                                                                         ,jstring jdisplayName) {
930         const char* uri = env->GetStringUTFChars(juri, NULL);
931         LinphoneAddress* address = linphone_address_new(uri);
932         if (jdisplayName && address) {
933                 const char* displayName = env->GetStringUTFChars(jdisplayName, NULL);
934                 linphone_address_set_display_name(address,displayName);
935                 env->ReleaseStringUTFChars(jdisplayName, displayName);
936         }
937         env->ReleaseStringUTFChars(juri, uri);
938
939         return  (jlong) address;
940 }
941 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_delete(JNIEnv*  env
942                                                                                                                                                 ,jobject  thiz
943                                                                                                                                                 ,jlong ptr) {
944         linphone_address_destroy((LinphoneAddress*)ptr);
945 }
946
947 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDisplayName(JNIEnv*  env
948                                                                                                                                                 ,jobject  thiz
949                                                                                                                                                 ,jlong ptr) {
950         const char* displayName = linphone_address_get_display_name((LinphoneAddress*)ptr);
951         if (displayName) {
952                 return env->NewStringUTF(displayName);
953         } else {
954                 return 0;
955         }
956 }
957 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getUserName(JNIEnv*  env
958                                                                                                                                                 ,jobject  thiz
959                                                                                                                                                 ,jlong ptr) {
960         const char* userName = linphone_address_get_username((LinphoneAddress*)ptr);
961         if (userName) {
962                 return env->NewStringUTF(userName);
963         } else {
964                 return 0;
965         }
966 }
967 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDomain(JNIEnv*  env
968                                                                                                                                                 ,jobject  thiz
969                                                                                                                                                 ,jlong ptr) {
970         const char* domain = linphone_address_get_domain((LinphoneAddress*)ptr);
971         if (domain) {
972                 return env->NewStringUTF(domain);
973         } else {
974                 return 0;
975         }
976 }
977
978 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toString(JNIEnv*  env
979                                                                                                                                                 ,jobject  thiz
980                                                                                                                                                 ,jlong ptr) {
981         char* uri = linphone_address_as_string((LinphoneAddress*)ptr);
982         jstring juri =env->NewStringUTF(uri);
983         ms_free(uri);
984         return juri;
985 }
986 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toUri(JNIEnv*  env
987                                                                                                                                                 ,jobject  thiz
988                                                                                                                                                 ,jlong ptr) {
989         char* uri = linphone_address_as_string_uri_only((LinphoneAddress*)ptr);
990         jstring juri =env->NewStringUTF(uri);
991         ms_free(uri);
992         return juri;
993 }
994 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_setDisplayName(JNIEnv*  env
995                                                                                                                                                 ,jobject  thiz
996                                                                                                                                                 ,jlong address
997                                                                                                                                                 ,jstring jdisplayName) {
998         const char* displayName = jdisplayName!= NULL?env->GetStringUTFChars(jdisplayName, NULL):NULL;
999         linphone_address_set_display_name((LinphoneAddress*)address,displayName);
1000         if (displayName != NULL) env->ReleaseStringUTFChars(jdisplayName, displayName);
1001 }
1002
1003
1004 //CallLog
1005 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getFrom(JNIEnv*  env
1006                                                                                                                                                 ,jobject  thiz
1007                                                                                                                                                 ,jlong ptr) {
1008         return (jlong)((LinphoneCallLog*)ptr)->from;
1009 }
1010 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getTo(JNIEnv*  env
1011                                                                                                                                                 ,jobject  thiz
1012                                                                                                                                                 ,jlong ptr) {
1013         return (jlong)((LinphoneCallLog*)ptr)->to;
1014 }
1015 extern "C" jboolean Java_org_linphone_core_LinphoneCallLogImpl_isIncoming(JNIEnv*  env
1016                                                                                                                                                 ,jobject  thiz
1017                                                                                                                                                 ,jlong ptr) {
1018         return ((LinphoneCallLog*)ptr)->dir==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1019 }
1020
1021 /*payloadType*/
1022 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_toString(JNIEnv*  env,jobject  thiz,jlong ptr) {
1023         PayloadType* pt = (PayloadType*)ptr;
1024         char* value = ms_strdup_printf("[%s] clock [%i], bitrate [%i]"
1025                                                                         ,payload_type_get_mime(pt)
1026                                                                         ,payload_type_get_rate(pt)
1027                                                                         ,payload_type_get_bitrate(pt));
1028         jstring jvalue =env->NewStringUTF(value);
1029         ms_free(value);
1030         return jvalue;
1031 }
1032 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_getMime(JNIEnv*  env,jobject  thiz,jlong ptr) {
1033         PayloadType* pt = (PayloadType*)ptr;
1034         jstring jvalue =env->NewStringUTF(payload_type_get_mime(pt));
1035         return jvalue;
1036 }
1037 extern "C" jint Java_org_linphone_core_PayloadTypeImpl_getRate(JNIEnv*  env,jobject  thiz, jlong ptr) {
1038         PayloadType* pt = (PayloadType*)ptr;
1039         return payload_type_get_rate(pt);
1040 }
1041
1042 //LinphoneCall
1043 extern "C" void Java_org_linphone_core_LinphoneCallImpl_finalize(JNIEnv*  env
1044                                                                                                                                                 ,jobject  thiz
1045                                                                                                                                                 ,jlong ptr) {
1046         LinphoneCall *call=(LinphoneCall*)ptr;
1047         linphone_call_unref(call);
1048 }
1049
1050 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCallLog(    JNIEnv*  env
1051                                                                                                                                                 ,jobject  thiz
1052                                                                                                                                                 ,jlong ptr) {
1053         return (jlong)linphone_call_get_call_log((LinphoneCall*)ptr);
1054 }
1055
1056 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isIncoming( JNIEnv*  env
1057                                                                                                                                                 ,jobject  thiz
1058                                                                                                                                                 ,jlong ptr) {
1059         return linphone_call_get_dir((LinphoneCall*)ptr)==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1060 }
1061
1062 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteAddress(      JNIEnv*  env
1063                                                                                                                                                 ,jobject  thiz
1064                                                                                                                                                 ,jlong ptr) {
1065         return (jlong)linphone_call_get_remote_address((LinphoneCall*)ptr);
1066 }
1067
1068 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getState(       JNIEnv*  env
1069                                                                                                                                                 ,jobject  thiz
1070                                                                                                                                                 ,jlong ptr) {
1071         return (jint)linphone_call_get_state((LinphoneCall*)ptr);
1072 }
1073 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoCancellation( JNIEnv*  env
1074                                                                                                                                                 ,jobject  thiz
1075                                                                                                                                                 ,jlong ptr
1076                                                                                                                                                 ,jboolean value) {
1077         linphone_call_enable_echo_cancellation((LinphoneCall*)ptr,value);
1078 }
1079 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoCancellationEnabled(  JNIEnv*  env
1080                                                                                                                                                 ,jobject  thiz
1081                                                                                                                                                 ,jlong ptr) {
1082         return linphone_call_echo_cancellation_enabled((LinphoneCall*)ptr);
1083 }
1084
1085 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoLimiter(      JNIEnv*  env
1086                                                                                                                                                 ,jobject  thiz
1087                                                                                                                                                 ,jlong ptr
1088                                                                                                                                                 ,jboolean value) {
1089         linphone_call_enable_echo_limiter((LinphoneCall*)ptr,value);
1090 }
1091 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoLimiterEnabled(       JNIEnv*  env
1092                                                                                                                                                 ,jobject  thiz
1093                                                                                                                                                 ,jlong ptr) {
1094         return linphone_call_echo_limiter_enabled((LinphoneCall*)ptr);
1095 }
1096
1097 extern "C" jobject Java_org_linphone_core_LinphoneCallImpl_getReplacedCall(     JNIEnv*  env
1098                                                                                                                                                 ,jobject  thiz
1099                                                                                                                                                 ,jlong ptr) {
1100         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data(linphone_call_get_core((LinphoneCall*)ptr));       
1101         return lcd->getCall(env,linphone_call_get_replaced_call((LinphoneCall*)ptr));
1102 }
1103
1104 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getCurrentQuality(    JNIEnv*  env
1105                                                                                                                                                 ,jobject  thiz
1106                                                                                                                                                 ,jlong ptr) {
1107         return (jfloat)linphone_call_get_current_quality((LinphoneCall*)ptr);
1108 }
1109
1110 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getAverageQuality(    JNIEnv*  env
1111                                                                                                                                                 ,jobject  thiz
1112                                                                                                                                                 ,jlong ptr) {
1113         return (jfloat)linphone_call_get_average_quality((LinphoneCall*)ptr);
1114 }
1115
1116
1117 //LinphoneFriend
1118 extern "C" long Java_org_linphone_core_LinphoneFriendImpl_newLinphoneFriend(JNIEnv*  env
1119                                                                                                                                                 ,jobject  thiz
1120                                                                                                                                                 ,jstring jFriendUri) {
1121         LinphoneFriend* lResult;
1122
1123         if (jFriendUri) {
1124                 const char* friendUri = env->GetStringUTFChars(jFriendUri, NULL);
1125                 lResult= linphone_friend_new_with_addr(friendUri);
1126                 env->ReleaseStringUTFChars(jFriendUri, friendUri);
1127         } else {
1128                 lResult = linphone_friend_new();
1129         }
1130         return (long)lResult;
1131 }
1132 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setAddress(JNIEnv*  env
1133                                                                                                                                                 ,jobject  thiz
1134                                                                                                                                                 ,jlong ptr
1135                                                                                                                                                 ,jlong linphoneAddress) {
1136         linphone_friend_set_addr((LinphoneFriend*)ptr,(LinphoneAddress*)linphoneAddress);
1137 }
1138 extern "C" long Java_org_linphone_core_LinphoneFriendImpl_getAddress(JNIEnv*  env
1139                                                                                                                                                 ,jobject  thiz
1140                                                                                                                                                 ,jlong ptr) {
1141         return (long)linphone_friend_get_address((LinphoneFriend*)ptr);
1142 }
1143 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setIncSubscribePolicy(JNIEnv*  env
1144                                                                                                                                                 ,jobject  thiz
1145                                                                                                                                                 ,jlong ptr
1146                                                                                                                                                 ,jint policy) {
1147         linphone_friend_set_inc_subscribe_policy((LinphoneFriend*)ptr,(LinphoneSubscribePolicy)policy);
1148 }
1149 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getIncSubscribePolicy(JNIEnv*  env
1150                                                                                                                                                 ,jobject  thiz
1151                                                                                                                                                 ,jlong ptr) {
1152         return linphone_friend_get_inc_subscribe_policy((LinphoneFriend*)ptr);
1153 }
1154 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_enableSubscribes(JNIEnv*  env
1155                                                                                                                                                 ,jobject  thiz
1156                                                                                                                                                 ,jlong ptr
1157                                                                                                                                                 ,jboolean value) {
1158         linphone_friend_enable_subscribes((LinphoneFriend*)ptr,value);
1159 }
1160 extern "C" jboolean Java_org_linphone_core_LinphoneFriendImpl_isSubscribesEnabled(JNIEnv*  env
1161                                                                                                                                                 ,jobject  thiz
1162                                                                                                                                                 ,jlong ptr) {
1163         return linphone_friend_subscribes_enabled((LinphoneFriend*)ptr);
1164 }
1165 extern "C" jboolean Java_org_linphone_core_LinphoneFriendImpl_getStatus(JNIEnv*  env
1166                                                                                                                                                 ,jobject  thiz
1167                                                                                                                                                 ,jlong ptr) {
1168         return linphone_friend_get_status((LinphoneFriend*)ptr);
1169 }
1170 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_edit(JNIEnv*  env
1171                                                                                                                                                 ,jobject  thiz
1172                                                                                                                                                 ,jlong ptr) {
1173         return linphone_friend_edit((LinphoneFriend*)ptr);
1174 }
1175 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_done(JNIEnv*  env
1176                                                                                                                                                 ,jobject  thiz
1177                                                                                                                                                 ,jlong ptr) {
1178          linphone_friend_done((LinphoneFriend*)ptr);
1179 }
1180 //LinphoneChatRoom
1181 extern "C" long Java_org_linphone_core_LinphoneChatRoomImpl_getPeerAddress(JNIEnv*  env
1182                                                                                                                                                 ,jobject  thiz
1183                                                                                                                                                 ,jlong ptr) {
1184         return (long) linphone_chat_room_get_peer_address((LinphoneChatRoom*)ptr);
1185 }
1186 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage(JNIEnv*  env
1187                                                                                                                                                 ,jobject  thiz
1188                                                                                                                                                 ,jlong ptr
1189                                                                                                                                                 ,jstring jmessage) {
1190         const char* message = env->GetStringUTFChars(jmessage, NULL);
1191         linphone_chat_room_send_message((LinphoneChatRoom*)ptr,message);
1192         env->ReleaseStringUTFChars(jmessage, message);
1193
1194 }
1195
1196 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoWindowId(JNIEnv* env
1197                                                                                                                                                 ,jobject thiz
1198                                                                                                                                                 ,jlong lc
1199                                                                                                                                                 ,jobject obj) {
1200         jobject oldWindow = (jobject) linphone_core_get_native_video_window_id((LinphoneCore*)lc);
1201         if (oldWindow != NULL) {
1202                 env->DeleteGlobalRef(oldWindow);
1203         }
1204         if (obj != NULL) {
1205                 obj = env->NewGlobalRef(obj);
1206         }
1207         linphone_core_set_native_video_window_id((LinphoneCore*)lc,(unsigned long)obj);
1208 }
1209
1210 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreviewWindowId(JNIEnv* env
1211                                                                                                                                                 ,jobject thiz
1212                                                                                                                                                 ,jlong lc
1213                                                                                                                                                 ,jobject obj) {
1214         jobject oldWindow = (jobject) linphone_core_get_native_preview_window_id((LinphoneCore*)lc);
1215         if (oldWindow != NULL) {
1216                 env->DeleteGlobalRef(oldWindow);
1217         }
1218         if (obj != NULL) {
1219                 obj = env->NewGlobalRef(obj);
1220         }
1221         linphone_core_set_native_preview_window_id((LinphoneCore*)lc,(unsigned long)obj);
1222 }
1223
1224 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDeviceRotation(JNIEnv* env
1225                                                                                                                                                 ,jobject thiz
1226                                                                                                                                                 ,jlong lc
1227                                                                                                                                                 ,jint rotation) {
1228         linphone_core_set_device_rotation((LinphoneCore*)lc,rotation);
1229 }
1230
1231
1232 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc, int enum_value){
1233         linphone_core_set_firewall_policy((LinphoneCore*)lc,(LinphoneFirewallPolicy)enum_value);
1234 }
1235
1236 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc){
1237         return linphone_core_get_firewall_policy((LinphoneCore*)lc);
1238 }
1239
1240 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setStunServer(JNIEnv *env, jobject thiz, jlong lc, jstring jserver){
1241         const char* server = NULL;
1242         if (jserver) server=env->GetStringUTFChars(jserver, NULL);
1243         linphone_core_set_stun_server((LinphoneCore*)lc,server);
1244         if (server) env->ReleaseStringUTFChars(jserver,server);
1245 }
1246
1247 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getStunServer(JNIEnv *env, jobject thiz, jlong lc){
1248         const char *ret= linphone_core_get_stun_server((LinphoneCore*)lc);
1249         if (ret==NULL) return NULL;
1250         jstring jvalue =env->NewStringUTF(ret);
1251         return jvalue;
1252 }
1253
1254 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_audioBandwidth(JNIEnv *env, jobject thiz, jlong lcp, jint bw){
1255         linphone_call_params_set_audio_bandwidth_limit((LinphoneCallParams*)lcp, bw);
1256 }
1257
1258 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_enableVideo(JNIEnv *env, jobject thiz, jlong lcp, jboolean b){
1259         linphone_call_params_enable_video((LinphoneCallParams*)lcp, b);
1260 }
1261
1262 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_getVideoEnabled(JNIEnv *env, jobject thiz, jlong lcp){
1263         return linphone_call_params_video_enabled((LinphoneCallParams*)lcp);
1264 }
1265
1266 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_localConferenceMode(JNIEnv *env, jobject thiz, jlong lcp){
1267         return linphone_call_params_local_conference_mode((LinphoneCallParams*)lcp);
1268 }
1269
1270 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_destroy(JNIEnv *env, jobject thiz, jlong lc){
1271         return linphone_call_params_destroy((LinphoneCallParams*)lc);
1272 }
1273 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_createDefaultCallParams(JNIEnv *env, jobject thiz, jlong lc){
1274         return (jlong) linphone_core_create_default_call_parameters((LinphoneCore*)lc);
1275 }
1276
1277 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCurrentParamsCopy(JNIEnv *env, jobject thiz, jlong lc){
1278         return (jlong) linphone_call_params_copy(linphone_call_get_current_params((LinphoneCall*)lc));
1279 }
1280
1281 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_enableCamera(JNIEnv *env, jobject thiz, jlong lc, jboolean b){
1282         linphone_call_enable_camera((LinphoneCall *)lc, (bool_t) b);
1283 }
1284
1285 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_cameraEnabled(JNIEnv *env, jobject thiz, jlong lc){
1286         linphone_call_camera_enabled((LinphoneCall *)lc);
1287 }
1288
1289 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong addr, jlong params){
1290         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
1291         return  lcd->getCall(env,linphone_core_invite_address_with_params((LinphoneCore *)lc, (const LinphoneAddress *)addr, (const LinphoneCallParams *)params));
1292 }
1293
1294 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1295         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (LinphoneCallParams *)params);
1296 }
1297
1298 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateCall(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1299         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (const LinphoneCallParams *)params);
1300 }
1301
1302
1303 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc, jint width, jint height){
1304         MSVideoSize vsize;
1305         vsize.width = (int)width;
1306         vsize.height = (int)height;
1307         linphone_core_set_preferred_video_size((LinphoneCore *)lc, vsize);
1308 }
1309
1310 extern "C" jintArray Java_org_linphone_core_LinphoneCoreImpl_getPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc){
1311         MSVideoSize vsize = linphone_core_get_preferred_video_size((LinphoneCore *)lc);
1312     jintArray arr = env->NewIntArray(2);
1313         int tVsize [2]= {vsize.width,vsize.height};
1314     env->SetIntArrayRegion(arr, 0, 2, tVsize);
1315     return arr;
1316 }
1317
1318 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1319         linphone_core_set_download_bandwidth((LinphoneCore *)lc, (int) bw);
1320 }
1321
1322 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1323         linphone_core_set_upload_bandwidth((LinphoneCore *)lc, (int) bw);
1324 }
1325
1326 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1327         linphone_core_set_download_ptime((LinphoneCore *)lc, (int) ptime);
1328 }
1329
1330 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1331         linphone_core_set_upload_ptime((LinphoneCore *)lc, (int) ptime);
1332 }
1333
1334 extern "C" int Java_org_linphone_core_LinphoneProxyConfigImpl_getState(JNIEnv*  env,jobject thiz,jlong ptr) {
1335         return (int) linphone_proxy_config_get_state((const LinphoneProxyConfig *) ptr);
1336 }
1337 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setExpires(JNIEnv*  env,jobject thiz,jlong ptr,jint delay) {
1338         linphone_proxy_config_expires((LinphoneProxyConfig *) ptr, (int) delay);
1339 }
1340
1341 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getDuration(JNIEnv*  env,jobject thiz,jlong ptr) {
1342         linphone_call_get_duration((LinphoneCall *) ptr);
1343 }
1344
1345 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getSignalingTransportPort(JNIEnv* env,jobject thiz,jlong ptr, jint code) {
1346         LCSipTransports tr;
1347         linphone_core_get_sip_transports((LinphoneCore *) ptr, &tr);
1348                 switch (code) {
1349         case 0:
1350                 return tr.udp_port;
1351         case 1:
1352                 return tr.tcp_port;
1353         case 3:
1354                 return tr.tls_port;
1355         default:
1356                 return -2;
1357         }
1358 }
1359
1360 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setSignalingTransportPorts(JNIEnv*  env,jobject thiz,jlong ptr,jint udp, jint tcp, jint tls) {
1361         LinphoneCore *lc = (LinphoneCore *) ptr;
1362         LCSipTransports tr;
1363         tr.udp_port = udp;
1364         tr.tcp_port = tcp;
1365         tr.tls_port = tls;
1366
1367         linphone_core_set_sip_transports(lc, &tr); // tr will be copied
1368 }
1369
1370 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableIpv6(JNIEnv* env,jobject  thiz
1371               ,jlong lc, jboolean enable) {
1372               linphone_core_enable_ipv6((LinphoneCore*)lc,enable);
1373 }
1374
1375 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_adjustSoftwareVolume(JNIEnv* env,jobject  thiz
1376               ,jlong ptr, jint db) {
1377         linphone_core_set_playback_gain_db((LinphoneCore *) ptr, db);
1378 }
1379
1380 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1381         return linphone_core_pause_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1382 }
1383 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1384         return linphone_core_pause_all_calls((LinphoneCore *) pCore);
1385 }
1386 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_resumeCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1387         return linphone_core_resume_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1388 }
1389 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInConference(JNIEnv *env,jobject thiz,jlong pCore) {
1390         return linphone_core_is_in_conference((LinphoneCore *) pCore);
1391 }
1392 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enterConference(JNIEnv *env,jobject thiz,jlong pCore) {
1393         linphone_core_enter_conference((LinphoneCore *) pCore);
1394 }
1395 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_leaveConference(JNIEnv *env,jobject thiz,jlong pCore) {
1396         linphone_core_leave_conference((LinphoneCore *) pCore);
1397 }
1398 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAllToConference(JNIEnv *env,jobject thiz,jlong pCore) {
1399         linphone_core_add_all_to_conference((LinphoneCore *) pCore);
1400 }
1401 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addToConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1402         linphone_core_add_to_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1403 }
1404 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFromConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1405         linphone_core_remove_from_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1406 }
1407
1408 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateConference(JNIEnv *env,jobject thiz,jlong pCore) {
1409         linphone_core_terminate_conference((LinphoneCore *) pCore);
1410 }
1411 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getConferenceSize(JNIEnv *env,jobject thiz,jlong pCore) {
1412         return linphone_core_get_conference_size((LinphoneCore *) pCore);
1413 }
1414 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1415         linphone_core_terminate_all_calls((LinphoneCore *) pCore);
1416 }
1417 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCall(JNIEnv *env,jobject thiz,jlong pCore,jint position) {
1418         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
1419         LinphoneCall* lCall = (LinphoneCall*) ms_list_nth_data(linphone_core_get_calls((LinphoneCore *) pCore),position);
1420         return lcd->getCall(env,lCall);
1421 }
1422 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getCallsNb(JNIEnv *env,jobject thiz,jlong pCore) {
1423         return ms_list_size(linphone_core_get_calls((LinphoneCore *) pCore));
1424 }
1425
1426 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_transferCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jstring jReferTo) {
1427         const char* cReferTo=env->GetStringUTFChars(jReferTo, NULL);
1428         linphone_core_transfer_call((LinphoneCore *) pCore, (LinphoneCall *) pCall, cReferTo);
1429         env->ReleaseStringUTFChars(jReferTo, cReferTo);
1430 }
1431 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_transferCallToAnother(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jlong pDestCall) {
1432         linphone_core_transfer_call_to_another((LinphoneCore *) pCore, (LinphoneCall *) pCall, (LinphoneCall *) pDestCall);
1433 }
1434
1435 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setZrtpSecretsCache(JNIEnv *env,jobject thiz,jlong pCore, jstring jFile) {
1436         if (jFile) {
1437                 const char* cFile=env->GetStringUTFChars(jFile, NULL);
1438                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,cFile);
1439                 env->ReleaseStringUTFChars(jFile, cFile);
1440         } else {
1441                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,NULL);
1442         }
1443 }
1444
1445 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_findCallFromUri(JNIEnv *env,jobject thiz,jlong pCore, jstring jUri) {
1446         const char* cUri=env->GetStringUTFChars(jUri, NULL);
1447         LinphoneCall *call= (LinphoneCall *) linphone_core_find_call_from_uri((LinphoneCore *) pCore,cUri);
1448         env->ReleaseStringUTFChars(jUri, cUri);
1449         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
1450         return (jobject) lcdata->getCall(env,call);
1451 }
1452
1453
1454 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_setVideoDevice(JNIEnv *env,jobject thiz,jlong pCore,jint id) {
1455         LinphoneCore* lc = (LinphoneCore *) pCore;
1456         const char** devices = linphone_core_get_video_devices(lc);
1457         if (devices == NULL) {
1458                 ms_error("No existing video devices\n");
1459                 return -1;
1460         }
1461         int i;
1462         for(i=0; i<=id; i++) {
1463                 if (devices[i] == NULL)
1464                         break;
1465                 ms_message("Existing device %d : %s\n", i, devices[i]);
1466                 if (i==id) {
1467                         return linphone_core_set_video_device(lc, devices[i]);
1468                 }
1469         }
1470         return -1;
1471 }
1472
1473 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getVideoDevice(JNIEnv *env,jobject thiz,jlong pCore) {
1474         LinphoneCore* lc = (LinphoneCore *) pCore;
1475         const char** devices = linphone_core_get_video_devices(lc);
1476         if (devices == NULL) {
1477                 ms_error("No existing video devices\n");
1478                 return -1;
1479         }
1480         const char* cam = linphone_core_get_video_device(lc);
1481         if (cam == NULL) {
1482                 ms_error("No current video device\n");
1483         } else {
1484                 int i=0;
1485                 while(devices[i] != NULL) {
1486                         if (strcmp(devices[i], cam) == 0)
1487                                 return i;
1488                         i++;
1489                 }
1490         }
1491         ms_warning("Returning default (0) device\n");
1492         return 0;
1493 }
1494
1495 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getAuthenticationToken(JNIEnv*  env,jobject thiz,jlong ptr) {
1496         LinphoneCall *call = (LinphoneCall *) ptr;
1497         const char* token = linphone_call_get_authentication_token(call);
1498         if (token == NULL) return NULL;
1499         return env->NewStringUTF(token);
1500 }
1501 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr) {
1502         LinphoneCall *call = (LinphoneCall *) ptr;
1503         return linphone_call_get_authentication_token_verified(call);
1504 }
1505 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_areStreamsEncrypted(JNIEnv*  env,jobject thiz,jlong ptr) {
1506         return linphone_call_are_all_streams_encrypted((LinphoneCall *) ptr);
1507 }
1508
1509 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_soundResourcesLocked(JNIEnv* env,jobject thiz,jlong ptr){
1510         return linphone_core_sound_resources_locked((LinphoneCore *) ptr);
1511 }
1512
1513 // Needed by Galaxy S (can't switch to/from speaker while playing and still keep mic working)
1514 // Implemented directly in msandroid.cpp (sound filters for Android).
1515 extern "C" void msandroid_hack_speaker_state(bool speakerOn);
1516
1517 extern "C" void Java_org_linphone_LinphoneManager_hackSpeakerState(JNIEnv*  env,jobject thiz,jboolean speakerOn){
1518         msandroid_hack_speaker_state(speakerOn);
1519 }
1520 // End Galaxy S hack functions
1521
1522
1523 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMaxCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1524         return (jint) linphone_core_get_max_calls((LinphoneCore *) pCore);
1525 }