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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
| commit cd0214ccd7e58224723eb3d581ef67afc3d43161 Author: BDZNH Date: Mon Aug 19 22:34:37 2024 +0800
anr catch sample
@@ -114,6 +114,36 @@ void SignalCatcher::Output(const std::string& s) { } } +void testCallActivityThread(std::ostringstream& os) { + LOG(INFO) << "start testCallActivityThread"; + Thread* self = Thread::Current(); + JNIEnv* env = self->GetJniEnv(); + jclass clazz = env->FindClass("android/app/ActivityThread"); + if(clazz == nullptr) { + LOG(ERROR) << "can't find class android/app/ActivityThread"; + return; + } + jmethodID onSignalQuitMethod = env->GetStaticMethodID(clazz,"onSignalQuit","()Ljava/lang/String;"); + if(onSignalQuitMethod == nullptr) { + LOG(ERROR) << "can't find method onSignalQuitMethod"; + return; + } + LOG(INFO) << "call android.app.ActivityThread.onSignalQuit"; + LOG(INFO) << "clazz: " << (void*)clazz << " method: " << (void*)onSignalQuitMethod; + jstring retstring = (jstring)(env->CallStaticObjectMethod(clazz,onSignalQuitMethod)); + if(retstring != nullptr) { + const char* str = env->GetStringUTFChars(retstring,NULL); + if(str != nullptr) { + // LOG(INFO) << str ; + os << str << "\n"; + } else { + LOG(ERROR) << "Java api return null ptr"; + } + } else { + LOG(ERROR) << "Java api return null ptr"; + } +} + void SignalCatcher::HandleSigQuit() { Runtime* runtime = Runtime::Current(); std::ostringstream os; @@ -130,6 +160,9 @@ void SignalCatcher::HandleSigQuit() { os << "Build type: " << (kIsDebugBuild ? "debug" : "optimized") << "\n"; + os << ">>>>>>>>>> Begin dump main thread handler history" << "\n"; + testCallActivityThread(os); + os << ">>>>>>>>>> finish dump main thread handler history" << "\n"; runtime->DumpForSigQuit(os); if ((false)) {
@@ -7818,6 +7818,20 @@ public final class ActivityThread extends ClientTransactionHandler } } + /** + * @hide + */ + public static String onSignalQuit() { + Log.i("HSP","onSignalQuit call begin"); + StringBuilder sb = new StringBuilder(); + Looper.getMainLooper().dump((str)->{ + sb.append(str); + sb.append("\n"); + }," "); + Log.i("HSP","onSignalQuit call end"); + return sb.toString(); + } + public static void main(String[] args) { Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "ActivityThreadMain"); @@ -7860,11 +7874,17 @@ public final class ActivityThread extends ClientTransactionHandler sMainThreadHandler = thread.getHandler(); } - if (false) { + if(SystemProperties.getBoolean("persist.sys.debug.looper.history",false)) { + Looper.myLooper().enableDispatchHistory(); + } + + if (SystemProperties.getBoolean("persist.sys.debug.handler",false)) { Looper.myLooper().setMessageLogging(new LogPrinter(Log.DEBUG, "ActivityThread")); + Looper.myLooper().setTraceTag(Trace.TRACE_TAG_ALWAYS); } + // End of event ActivityThreadMain. Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER); Looper.loop();
@@ -152,6 +152,15 @@ public final class Looper { sObserver = observer; } + MessageDispatchRecorder mMessageRecorder; + + /** + * @hide + */ + public void enableDispatchHistory(){ + mMessageRecorder = new MessageDispatchRecorder(); + } + /** * Poll and deliver single message, return true if the outer loop should continue. */ @@ -186,8 +195,14 @@ public final class Looper { final boolean needStartTime = logSlowDelivery || logSlowDispatch; final boolean needEndTime = logSlowDispatch; + + if(me.mMessageRecorder != null) { + me.mMessageRecorder.beginRecord(msg); + } + String traceHandleMsg = msg.target.getTraceName(msg); if (traceTag != 0 && Trace.isTagEnabled(traceTag)) { Trace.traceBegin(traceTag, msg.target.getTraceName(msg)); + Slog.v("TraceHandler","Dispatching to" + traceHandleMsg); } final long dispatchStart = needStartTime ? SystemClock.uptimeMillis() : 0; @@ -232,10 +247,16 @@ public final class Looper { showSlowLog(slowDispatchThresholdMs, dispatchStart, dispatchEnd, "dispatch", msg); } + if(me.mMessageRecorder != null) { + me.mMessageRecorder.endRecord(); + } + if (logging != null) { logging.println("<<<<< Finished to " + msg.target + " " + msg.callback); + Slog.v("TraceHandler","Finished Dispatching to" + traceHandleMsg); } + // Make sure that during the course of dispatching the // identity of the thread wasn't corrupted. final long newIdent = Binder.clearCallingIdentity(); @@ -422,6 +443,9 @@ public final class Looper { * @param prefix A prefix to prepend to each line which is printed. */ public void dump(@NonNull Printer pw, @NonNull String prefix) { + if(mMessageRecorder != null) { + pw.println(mMessageRecorder.toString()); + } pw.println(prefix + toString()); mQueue.dump(pw, prefix + " ", null); }
new file mode 100644
@@ -0,0 +1,68 @@ +package android.os; + +import android.os.Message; +import android.os.SystemClock; + +import java.util.ArrayList; +import java.util.Locale; + +class MessageDispatchRecorder { + private final ArrayList<Recorder> mRecorders; + public MessageDispatchRecorder(){ + mRecorders = new ArrayList<>(); + } + + public void beginRecord(Message msg){ + Recorder recorder = new Recorder(); + recorder.expectStartWhen = msg.getWhen(); + recorder.realStatWhen = SystemClock.uptimeMillis(); + recorder.descrip = "\""+msg.toString()+"\""; + synchronized(this){ + mRecorders.add(recorder); + if(mRecorders.size() > 1000){ + mRecorders.remove(0); + } + } + mRecorders.add(recorder); + if(mRecorders.size() > 1000){ + mRecorders.remove(0); + } + } + + public void endRecord(){ + mRecorders.get(mRecorders.size()-1).realEndWhen = SystemClock.uptimeMillis(); + } + + @Override + public String toString() { + + long now = SystemClock.uptimeMillis(); + StringBuilder builder = new StringBuilder(); + builder.append("now time is "); + builder.append(now); + builder.append("\n"); + synchronized(this){ + for (Recorder recorder:mRecorders){ + if(recorder.realEndWhen > recorder.expectStartWhen) { + builder.append(String.format(Locale.CHINA,"when=%d realWhen=%d realEnd=%d duration=%d desc:%s", + recorder.expectStartWhen,recorder.realStatWhen,recorder.realEndWhen, + recorder.realEndWhen- recorder.realStatWhen,recorder.descrip)); + } else { + builder.append(String.format(Locale.CHINA,"when=%d realWhen=%d realEnd=%d duration=%d desc:%s", + recorder.expectStartWhen,recorder.realStatWhen,recorder.realEndWhen, + 0,recorder.descrip)); + } + builder.append("\n"); + } + } + + builder.append(String.format(Locale.CHINA,"there are %d history message\n",mRecorders.size())); + return builder.toString(); + } + private static class Recorder{ + long expectStartWhen; + long realStatWhen; + long realEndWhen; + String descrip; + } +} \ No newline at end of file
|