Reputation: 41
i have two class in c language (picture.c and decoder.c) and a Java class (VirtualACtivity.java). My project has got the next structure:
-android
---vlc
-----src
-------input
---------**picture.c**
-------misc
---------**decoder.c**
---vlc-android
-----src
-------org
--------videolan
---------vlc
----------gui
-----------video
--------------**VirtualActivity.java**
I have declared a native method in picture.c:
JNIEXPORT jintArray JNICALL
Java_org_videolan_vlc_gui_video_VirtualActivity_pasoArrays(JNIEnv * env, jobject jobj, jintArray array_color){
int ancho = 480;
int alto = 270;
int size = ancho * alto;
jintArray result;
result = (*env)->NewIntArray(env, size);
if (result == NULL) {
return NULL; /* out of memory error thrown */
}
// move from the temp structure to the java structure
// SetIntArrayRegion(env, array, start, length, values);
(*env)->SetIntArrayRegion(env, result, 0, size, array_color);
return result;
}
In VirtualActivity.java,
static {
try{
Log.d(LOGTAG, "Cargando la librería native");
System.loadLibrary("native");
Log.d(LOGTAG, "Library loaded - native");
}catch (Exception e){
Log.d(LOGTAG, "Did not load library - native");
}
}
private native int[] pasoArrays(int array[]);
libnative.so is created from picture.c.
I want to call JNIEXPORT jintArray JNICALL
Java_org_videolan_vlc_gui_video_VirtualActivity_pasoArrays(JNIEnv * env, jobject jobj, jintArray array_color)
method from a pure c method of the decoder.c. Then, my problem is that I don't know how initialize JNIEnv * env
and jobject jobj
and if it is possible.
I know that the native code is used to connect c and Java, but I need to call from a c class to a native method of other c class.
Ok,i have followed yours advices and i have written the next code:
In decoder.c:
msg_Warn( p_dec, "Definición del array");
int i;
int size = 129600;
for ( i= 0; i< size ;i++){
aux[i] = 2 ;
}
newFunction(aux) ;
In picture.c:
void newFunction(int color) {
JavaVM* jvm;
JNIEnv* env;
JavaVMInitArgs args;
JavaVMOption options[1];
args.version = JNI_VERSION_1_6;
args.nOptions = 1;
options[0].optionString = "-Djava.class.path=/home/vmg/android/android/vlc-android/src/";
args.options = options;
args.ignoreUnrecognized = JNI_FALSE;
JNI_CreateJavaVM(&jvm, (void **)&env, &args);
jclass cls = (*env)->FindClass(env,"org.videolan.vlc.gui.video.VirtualActivity");
jmethodID mid = (*env)->GetStaticMethodID(env, cls, "arrays", "([I)V");
(*env)->CallStaticVoidMethod(env,cls, mid, color);
}
And in VirtualActivity.java:
public void arrays(int arr[]){
int i;
System.out.println("La longitud del array es" + arr.length );
for (i = 0; i < arr.length; i++) {
System.out.println("Este mensaje se está imprimiendo desde java" + ", array = " + arr[i] + " para " + " i = " + i );
}
}
But when i compile, i get the next error:
/home/vmg/android/android-ndk-r8c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld: ../vlc/android/src/.libs/libvlccore.a(picture.o): in function newFunction:../../src/misc/picture.c:646: error: undefined reference to 'JNI_CreateJavaVM'
In Android.mk:
include $(CLEAR_VARS)
LOCAL_MODULE := native
LOCAL_SRC_FILES := ../../vlc/src/misc/picture.c
ARCH=$(ANDROID_ABI)
LOCAL_C_INCLUDES := $(VLC_SRC_DIR)/include \
$(VLC_SRC_DIR)/include/vlc \
$(ANDROID_NDK)/platforms/android-9/arch-arm/usr/include \
$(ANDROID_NDK)/platforms/android-9/arch-arm/usr/include/android \
/usr/lib/jvm/java-6-openjdk/include \
/usr/lib/jvm/java-6-openjdk/include/linux \
CPP_STATIC=$(ANDROID_NDK)/sources/cxx-stl/gnu-libstdc++$(CXXSTL)/libs/$(ARCH)/libgnustl_static.a
LOCAL_CFLAGS := -std=gnu99
ifeq ($(ARCH), armeabi)
LOCAL_CFLAGS += -DHAVE_ARMEABI
# Needed by ARMv6 Thumb1 (the System Control coprocessor/CP15 is mandatory on ARMv6)
# On newer ARM architectures we can use Thumb2
LOCAL_ARM_MODE := arm
endif
ifeq ($(ARCH), armeabi-v7a)
LOCAL_CFLAGS += -DHAVE_ARMEABI_V7A
endif
LOCAL_LDLIBS := -L$(VLC_CONTRIB)/lib \
$(VLC_MODULES) \
$(VLC_BUILD_DIR)/lib/.libs/libvlc.a \
$(VLC_BUILD_DIR)/src/.libs/libvlccore.a \
$(VLC_BUILD_DIR)/compat/.libs/libcompat.a \
-L/usr/lib/jvm/java-6-openjdk/jre/lib/amd64/server \
-ldl -lz -lm -llog \
-ldvbpsi -lebml -lmatroska -ltag \
-logg -lFLAC -ltheora \
-lmpeg2 -ldca -la52 \
-lavformat -lavcodec -lswscale -lavutil -lpostproc -lgsm -lopenjpeg \
-lliveMedia -lUsageEnvironment -lBasicUsageEnvironment -lgroupsock \
-lspeex -lspeexdsp \
-lxml2 -lpng -lgnutls -lgcrypt -lgpg-error \
-lfreetype -liconv -lass -lfribidi -lopus \
-ljvm \
$(CPP_STATIC)
include $(BUILD_SHARED_LIBRARY)
In the folder /usr/lib/jvm/java-6-openjdk/include is the jni.h file, where is the declaration of :
#ifdef _JNI_IMPLEMENTATION_
#define _JNI_IMPORT_OR_EXPORT_ JNIEXPORT
#else
#define _JNI_IMPORT_OR_EXPORT_ JNIIMPORT
#endif
_JNI_IMPORT_OR_EXPORT_ jint JNICALL
JNI_GetDefaultJavaVMInitArgs(void *args);
_JNI_IMPORT_OR_EXPORT_ jint JNICALL
JNI_CreateJavaVM(JavaVM **pvm, void **penv, void *args);
_JNI_IMPORT_OR_EXPORT_ jint JNICALL
JNI_GetCreatedJavaVMs(JavaVM **, jsize, jsize *);
What am i doing wrong?
Thanks so much!
Upvotes: 0
Views: 1994
Reputation: 57173
Unfortunately, as you discovered yourself, Invocation API and the JNI_CreateJavaVM function aren't supported on Android.
Moreover, this is not an oversight or negligence from the side of Google developers. This is a direct consequence of the Android application model. In Android, the application is driven by the Java VM, not the other way around.
Nevertheless, you can call Java methods from your C code. An example of this technique you can find here: JNI - How to callback from C++ or C to Java?
More details may be found in the JNI documentation.
picture.c
:
#include <jni.h>
JavaVM* g_jvm = 0;
jclass g_cls;
JNIEXPORT jint JNICALL JNI_
void picture_OnLoad(JavaVM *jvm) {
, void *reserved) {
g_jvm = jvm;
jclass cls = (*env)->FindClass(env, "org/videolan/vlc/gui/video/VirtualActivity");
g_cls = (jclass)(*env)->NewGlobalRef(env, cls);
}
void newFunction(int color) {
JNIEnv* env;
int bAttached = JNI_FALSE;
if ((*g_jvm)->GetEnv(g_jvm, (void **)&env, JNI_VERSION_1_4) != JNI_OK) {
*(g_jvm)->AttachCurrentThread(g_jvm, &env, 0);
bAttached = JNI_TRUE;
}
jmethodID mid = (*env)->GetStaticMethodID(env, cls, "arrays", "([I)V");
(*env)->CallStaticVoidMethod(env, cls, mid, color);
if (bAttached) {
*(g_jvm)->DetachCurrentThread(g_jvm);
}
}
Note that you must fix your Android.mk file, so that the compiler looks for jni.h in $(ANDROID_NDK)/platforms/android-9/arch-arm/usr/include
, so remove /usr/lib/jvm/java-6-openjdk/include
and /usr/lib/jvm/java-6-openjdk/include/linux
.
Also note, that you must change the definition of VirtualActivity.arrays() method:
static void arrays(int arr[]) {
int i;
System.out.println("La longitud del array es" + arr.length );
for (i = 0; i < arr.length; i++) {
System.out.println("Este mensaje se está imprimiendo desde java" + ", array = " + arr[i] + " para " + " i = " + i );
}
}
It is only called from native, therefore you don't need it public. But you find it as StaticVoidMethod, threfore it should be declared static.
In libvlcjni.c
extern void picture_OnLoad(JavaVM *vm);
jint JNI_OnLoad(JavaVM *vm, void *reserved)
{
// Keep a reference on the Java VM.
myVm = vm;
picture_OnLoad(vm);
pthread_mutex_init(&vout_android_lock, NULL);
LOGD("JNI interface loaded.");
return JNI_VERSION_1_2;
}
Upvotes: 0
Reputation: 1194
You should not call the native method from anywhere other than Java. Your goal can be achieved by wrapping all the functionality in another c function, and then call that c function from pasoArrays and from decoder.c. Something like this:
int[] newFunction(int[] color) {
// all the functionality goes here
}
JNIEXPORT jintArray JNICALL Java_org_videolan_vlc_gui_video_VirtualActivity_pasoArrays(JNIEnv * env, jobject jobj, jintArray array_color){
return newFunction(color);
}
// from decoder.c
return newFunction(whatever);
Upvotes: 1