The project I'm currently working on requires me to code up the android portion of a cross platform program implementation.

A core set of functionality is built and included in my app through android-ndk. I've found that any exception/crash which happens in the native code is only reported now and again at best. When an error occurs I get one of the following behaviours:

  • A stacktrace / memory dump occurs and is written to the log file. The program disappears (no indication is given on the device as to why suddenly the app is no longer there).
  • No stacktrace / dump or other indication is given that the native code has crashed. The program disappears.
  • The java code crashes with a NullPointerException (usually in the same place per native code exception which is a massive pain). Usually causing me to spend quite a while trying to debug why the Java code has thrown an error only to discover the Java code is fine & the native code error has been entirely masked.

I can't seem to find any way to "insulate" my code against errors which occur in native code. Try/catch statements are resoundingly ignored. Apart from when my code is fingered as the culprit I don't even get a chance to warn the user than an error has occurred.

Can someone please help me out as to how to respond to the situation of crashing native code?

link|improve this question

Unit tests, logs... The only alternatives I know off (but I know faaar from everything, so please look further :) ) – Warpzit Dec 12 '11 at 9:40
feedback

4 Answers

up vote 7 down vote accepted
+100

I used to have the same problem, it is true that in android (inside any VM in general when executing native code) if you throw a C++ exception an this one is not cached the VM dies (If I clearly understood I think it is your problem). The solution I adopted was to catch any exception in C++ and throw a java exception instead using JNI. The next code it is a simplified example of my solution. First of all you have a JNI method that catches a C++ exception and then in the try clause the Java exception is annotated.

JNIEXPORT void JNICALL Java_com_MyClass_foo (JNIEnv *env, jobject o,jstring param)
{
    try
    {
        // Your Stuff
        ...
    }
    // You can catch std::exception for more generic error handling
    catch (MyCxxException e)
    {
        throwJavaException (env, e.what());
    }
}


void throwJavaException(JNIEnv *env, const char *msg)
{
    // You can put your own exception here
    jclass c = env->FindClass("java/lang/RuntimeException");

    if (NULL == c)
    {
        //B plan: null pointer ...
        c = env->FindClass("java/lang/NullPointerException");
    }

    env->ThrowNew(c, msg);
}

Note that after a ThrowNew, the native method does not abruptly terminate automatically. That is, control flow returns to your native method, and the new exception is pending at this point. The exception will be thrown after your JNI method is finished.

I hope it was the solution you are looking for.

link|improve this answer
great tip! Thnx – Entreco Dec 19 '11 at 0:09
I was hoping for something a little more... encompassing. But after bounty this does seem to be as good as it gets for insulating Java code from Native code crashes. – Graeme Dec 19 '11 at 11:36
feedback

Have you considered catching this exception and then wrapping it in a runtime exception, just to get it up higher in the stack?

I used a similar 'hack' in SCJD. Generally NPE indicates an error on your part, but if you're convinced you're not doing anything wrong, then simply make a well documented RuntimeException that explains that the exception is used to bubble the Exception. Then unwrap it and test if for instance of NPE and deal with it as your own Exception.

If it's going to result in erroneous data, then you have no other option, but to get to the root of it.

link|improve this answer
You mean, you think I should propagate the exception up by throwing a RuntimeException? When debugging the application a NPE will be thrown when a .set() (for instance) is called on a variable which you can see through the debugger and is reportable from a Log.v() directly before the .set() is called. – Graeme Dec 12 '11 at 10:00
I mean that if you can't get to the root of it because it's not your own API throwing it. Then wrap it for yourself in an Exception that you are fully aware of like 'BubbleException' you can then test higher up in your stack for this Exception and deal with it as your own. Generally though NPE indicates there is a null somewhere, but if you think it's root is lower in the stack (perhaps code you are using) then either ditch the code, or throw it in an RuntimeException of your own as to not inconvenience your API clients with an Exception that you can't explain yourself. – thejartender Dec 12 '11 at 10:24
What I'm saying is the native code doesn't "throw" and Exception, it dies in a totally different way which can't be caught with try / catch. The NPE's reported I think are a side effect of the native code dying and are not directly related to the crash in any way. – Graeme Dec 12 '11 at 10:26
Ok.. Sorry I tried :( – thejartender Dec 12 '11 at 10:30
Not a problem - thanks for trying. Think the problem is a tricky one to pin down – Graeme Dec 12 '11 at 10:32
show 1 more comment
feedback

There is possibility to catch exceptions by UncaughtExceptionHandler, but i'm not sure if it will catch exceptions from native code

link|improve this answer
feedback

I have found an useful link, which illustrates how to call Java methods from Native Code (C). Here the code of a call back to the Java Method "callback":

JNIEXPORT void JNICALL Java_Callbacks_nativeMethod(JNIEnv *env, jobject obj, jint depth)
{
    jclass cls = (*env)->GetObjectClass(env, obj);
    jmethodID mid = (*env)->GetMethodID(env, cls, "callback", "(I)V");

    if (mid == 0)
        return;

    printf("In C, depth = %d, about to enter Java\n", depth);

    (*env)->CallVoidMethod(env, obj, mid, depth);
    printf("In C, depth = %d, back from Java\n", depth);
}

I hope that helps, I have taken the code from the Java Native Interface Programming Website. So check this link for more information!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.