-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathReactNativeExceptionHandlerModule.java
86 lines (66 loc) · 2.89 KB
/
ReactNativeExceptionHandlerModule.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.masteratul.exceptionhandler;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import com.facebook.react.bridge.Callback;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
public class ReactNativeExceptionHandlerModule extends ReactContextBaseJavaModule {
private ReactApplicationContext reactContext;
private Activity activity;
private static Class errorIntentTargetClass = DefaultErrorScreen.class;
private static NativeExceptionHandlerIfc nativeExceptionHandler;
private Callback callbackHolder;
private Thread.UncaughtExceptionHandler originalHandler;
public ReactNativeExceptionHandlerModule(ReactApplicationContext reactContext) {
super(reactContext);
this.reactContext = reactContext;
}
@Override
public String getName() {
return "ReactNativeExceptionHandler";
}
@ReactMethod
public void setHandlerforNativeException(
final boolean executeOriginalUncaughtExceptionHandler,
final boolean forceToQuit,
final boolean disableNativeErrorScreen,
Callback customHandler
) {
callbackHolder = customHandler;
originalHandler = Thread.getDefaultUncaughtExceptionHandler();
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
@Override
public void uncaughtException(Thread thread, Throwable throwable) {
String stackTraceString = Log.getStackTraceString(throwable);
callbackHolder.invoke(stackTraceString);
if (nativeExceptionHandler != null) {
nativeExceptionHandler.handleNativeException(thread, throwable, originalHandler);
} else {
if (!disableNativeErrorScreen) {
activity = getCurrentActivity();
Intent i = new Intent();
i.setClass(activity, errorIntentTargetClass);
i.putExtra("stack_trace_string", stackTraceString);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
activity.startActivity(i);
activity.finish();
}
if (executeOriginalUncaughtExceptionHandler && originalHandler != null) {
originalHandler.uncaughtException(thread, throwable);
}
if (forceToQuit) {
System.exit(0);
}
}
}
});
}
public static void replaceErrorScreenActivityClass(Class errorScreenActivityClass){
errorIntentTargetClass = errorScreenActivityClass;
}
public static void setNativeExceptionHandler(NativeExceptionHandlerIfc nativeExceptionHandler) {
ReactNativeExceptionHandlerModule.nativeExceptionHandler = nativeExceptionHandler;
}
}