]> sjero.net Git - linphone/blob - LinphoneCoreFactoryImpl.java
39fbeee545ae7b94c5b46ed69ae338e0c19328c5
[linphone] / LinphoneCoreFactoryImpl.java
1 /*
2 LinphoneCoreFactoryImpl.java
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 package org.linphone.core;
20
21 import java.io.File;
22 import java.io.IOException;
23
24 import org.linphone.mediastream.Version;
25
26 public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
27
28         private static void loadOptionalLibrary(String s) {
29                 try {
30                         System.loadLibrary(s);
31                 } catch (Throwable e) {
32                         Log.w("Unable to load optional library lib", s);
33                 }
34         }
35
36         static {
37                 // FFMPEG (audio/video)
38                 loadOptionalLibrary("avutil");
39                 loadOptionalLibrary("swscale");
40                 loadOptionalLibrary("avcore");
41                 loadOptionalLibrary("avcodec");
42  
43                 // OPENSSL (cryptography)
44                 // lin prefix avoids collision with libs in /system/lib
45                 loadOptionalLibrary("lincrypto");
46                 loadOptionalLibrary("linssl");
47
48                 // Secure RTP and key negotiation
49                 loadOptionalLibrary("srtp");
50                 loadOptionalLibrary("zrtpcpp"); // GPLv3+
51
52                 // Tunnel
53                 loadOptionalLibrary("tunnelclient");
54
55                 //Main library
56                 System.loadLibrary("linphone");
57
58                 Version.dumpCapabilities();
59         }
60         @Override
61         public LinphoneAuthInfo createAuthInfo(String username, String password,
62                         String realm) {
63                 return new LinphoneAuthInfoImpl(username,password,realm);
64         }
65
66         @Override
67         public LinphoneAddress createLinphoneAddress(String username,
68                         String domain, String displayName) {
69                 return new LinphoneAddressImpl(username,domain,displayName);
70         }
71
72         @Override
73         public LinphoneAddress createLinphoneAddress(String identity) {
74                 return new LinphoneAddressImpl(identity);
75         }
76
77         @Override
78         public LinphoneCore createLinphoneCore(LinphoneCoreListener listener,
79                         String userConfig, String factoryConfig, Object userdata)
80                         throws LinphoneCoreException {
81                 try {
82                         return new LinphoneCoreImpl(listener,new File(userConfig),new File(factoryConfig),userdata);
83                 } catch (IOException e) {
84                         throw new LinphoneCoreException("Cannot create LinphoneCore",e);
85                 }
86         }
87
88         @Override
89         public LinphoneCore createLinphoneCore(LinphoneCoreListener listener) throws LinphoneCoreException {
90                 try {
91                         return new LinphoneCoreImpl(listener);
92                 } catch (IOException e) {
93                         throw new LinphoneCoreException("Cannot create LinphoneCore",e);
94                 }
95         }
96
97         @Override
98         public LinphoneProxyConfig createProxyConfig(String identity, String proxy,
99                         String route, boolean enableRegister) throws LinphoneCoreException {
100                 return new LinphoneProxyConfigImpl(identity,proxy,route,enableRegister);
101         }
102
103         @Override
104         public native void setDebugMode(boolean enable);
105
106         @Override
107         public void setLogHandler(LinphoneLogHandler handler) {
108                 //not implemented on Android
109                 
110         }
111
112         @Override
113         public LinphoneFriend createLinphoneFriend(String friendUri) {
114                 return new LinphoneFriendImpl(friendUri);
115         }
116
117         @Override
118         public LinphoneFriend createLinphoneFriend() {
119                 return createLinphoneFriend(null);
120         }
121 }