diff options
author | Robert Varga <robert.varga@pantheon.sk> | 2016-01-30 18:30:36 +0100 |
---|---|---|
committer | Robert Varga <nite@hq.sk> | 2016-01-30 22:20:30 +0100 |
commit | 81d99acf457ddc199ffbb3355278906cf0585fbc (patch) | |
tree | 7da470cc82ba34b1f838dd2c19fe138b8c91601b /vpp-japi/Makefile.am | |
parent | 3142430cea57f810d136bb3249ededb2a4f2f18b (diff) |
Cache jclass/jmethodID/jfieldID references
This patch introduces an initialization framework, which tracks required
references to Java classes and methods.
It works by declaring classes and their constructor signatures, which
are linked into a singly-linked list when the .so initializers are run.
Once JNI_OnLoad() is invoked, this list is walked and all classes and
their initializers are resolved. These are then used while the library
remains loaded. Once JNI_OnUnload() is called, global references are
released, so we can cleanly unload.
The class declaration results in static utility objects being emitted in
the scope of the declaration, hence to allocate an object or an array of
objects is done via simple calls.
Change-Id: I41984c13756339364dbcbf0144b947627e8e4fe1
Signed-off-by: Robert Varga <nite@hq.sk>
Diffstat (limited to 'vpp-japi/Makefile.am')
-rw-r--r-- | vpp-japi/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vpp-japi/Makefile.am b/vpp-japi/Makefile.am index 5640dd1aeff..f1eb37da701 100644 --- a/vpp-japi/Makefile.am +++ b/vpp-japi/Makefile.am @@ -27,7 +27,7 @@ nobase_include_HEADERS = \ lib_LTLIBRARIES += libvppjni.la -libvppjni_la_SOURCES = japi/vppjni.c japi/vppapi.c +libvppjni_la_SOURCES = japi/vppjni.c japi/vppapi.c japi/vppjni_env.h japi/vppjni_env.c libvppjni_la_LIBADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra \ -lpthread -lm -lrt libvppjni_la_LDFLAGS = -module |