Scala language binding lightly-tested and works

This commit is contained in:
Joseph Henry
2017-10-16 14:27:25 -07:00
parent 7c04472b68
commit e8f1a4db73
5 changed files with 14 additions and 76 deletions

View File

@@ -1,7 +0,0 @@
package zerotier;
public class ZeroTier
{
public native int ztjni_socket(int family, int type, int protocol);
public int socket(int family, int type, int protocol) { return ztjni_socket(family, type, protocol); }
}

View File

@@ -1,59 +0,0 @@
/*
* ZeroTier SDK - Network Virtualization Everywhere
* Copyright (C) 2011-2017 ZeroTier, Inc. https://www.zerotier.com/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/
// Simple Java example for libzt using JNI
import zerotier.ZeroTier;
public class example {
public native int loadsymbols();
public native void startOneService();
static {
System.load("/Users/joseph/op/zt/libzt/build/darwin/libzt.so");
}
public static void main(String[] args) {
final ZeroTier z = new ZeroTier();
new Thread(new Runnable() {
public void run() {
System.out.println("starting libzt");
z.ztjni_socket(2, 1, 0);
// start(path) will not block
// startjoin(path, nwid) will block
}
}).start();
while(true)
{
try { Thread.sleep(3000); }
catch (InterruptedException e) { e.printStackTrace(); }
}
}
}

View File

@@ -0,0 +1,11 @@
import zerotier.ZeroTier
object ExampleApp extends App {
System.loadLibrary("zt")
val libzt = new ZeroTier
libzt.ztjni_startjoin("/Users/joseph/op/zt/libzt/ztjni", "1212121212121212")
val fd = libzt.ztjni_socket(2, 1, 0)
println(s"zts_socket(): $fd")
}

View File

@@ -6,7 +6,7 @@ To get this example project to work, do the following:
- From libzt main directory, build shared library: `make shared_jni_lib`
- Copy the resultant dynamic library (`*.so` or `*.dylib`) from `build/` to this current directory
- Change to this directory and `make example_scala_app`
- Run: `scala -cp "." ExampleApp`
- Run: `scala -Djava.library.path=$(pwd) -cp "." ExampleApp`
Notes:

View File

@@ -1,13 +1,6 @@
package zerotier;
class ZeroTier {
@native def ztjni_socket(socket_family: Int, socket_type: Int, protocol: Int): Int
@native def ztjni_startjoin(path: String, nwid: String): Int
}
object ZeroTier extends App {
System.loadLibrary("zt")
val libzt = new ZeroTier
val fd = libzt.ztjni_socket(2, 1, 0)
println(s"zts_socket(): $fd")
}