Android 6.0(API 级别 23)及更高版本支持原生跟踪 API trace.h
,用于将跟踪事件写入系统缓冲区,以供您随后使用 Perfetto 或 Systrace 进行分析。此 API 的常见用例包括观察特定代码块的执行时间以及确定引起不良系统行为的代码块。
注意:在搭载 API 级别 27 及更低级别的设备和模拟器上,如果没有足够的可用内存或内存过于碎片化,您将收到以下消息:Atrace could not allocate enough memory to record a trace
。
如果发生这种情况,并且您没有捕获到完整的数据集,则应当关闭后台进程或重新启动设备或模拟器。
如需定义应用或游戏内的原生代码中发生的自定义事件,请完成以下步骤:
定义在应用或游戏内捕获自定义事件所用 ATrace 函数的函数指针,如以下代码段所示:
#include <android/trace.h> #include <dlfcn.h> void *(*ATrace_beginSection) (const char* sectionName); void *(*ATrace_endSection) (void); typedef void *(*fp_ATrace_beginSection) (const char* sectionName); typedef void *(*fp_ATrace_endSection) (void);
在运行时加载 ATrace 符号,如以下代码段所示。通常在对象构造函数中执行此过程。
// Retrieve a handle to libandroid. void *lib = dlopen("libandroid.so", RTLD_NOW | RTLD_LOCAL); // Access the native tracing functions. if (lib != NULL) { // Use dlsym() to prevent crashes on devices running Android 5.1 // (API level 22) or lower. ATrace_beginSection = reinterpret_cast<fp_ATrace_beginSection>( dlsym(lib, "ATrace_beginSection")); ATrace_endSection = reinterpret_cast<fp_ATrace_endSection>( dlsym(lib, "ATrace_endSection")); }
注意:出于安全考虑,请仅在应用或游戏的调试版本中包含对
dlopen()
的调用。注意:为了进一步在 Android 4.3(API 级别 18)中提供跟踪支持,您可以使用 JNI 调用托管代码(在上述代码段中显示的代码附近)中的方法。
在自定义事件的开头和结尾分别调用
ATrace_beginSection()
和ATrace_endSection()
:#include <android/trace.h> char *customEventName = new char[32]; sprintf(customEventName, "User tapped %s button", buttonName); ATrace_beginSection(customEventName); // Your app or game's response to the button being pressed. ATrace_endSection();
注意:如果您多次调用
ATrace_beginSection()
,调用ATrace_endSection()
只会结束最后调用的ATrace_beginSection()
方法。因此,对于嵌套调用,请务必将每次对ATrace_beginSection()
的调用与一次对ATrace_endSection()
的调用正确匹配。此外,您不能在一个线程上调用
ATrace_beginSection()
,而在另一个线程上结束它。您必须在同一线程中调用这两个函数。
温馨提示
以下提示是可选的,但可能会帮助分析人员更轻松地分析原生代码。
跟踪整个函数
在检测调用堆栈或函数计时时,您可能会发现跟踪整个函数非常有用。使用 ATRACE_CALL()
宏可以更轻松地设置此类跟踪。此外,如果跟踪的函数会抛出异常或提前调用 return
,使用这样的宏还可以跳过创建 try
和 catch
代码块。
如需创建用于跟踪整个函数的宏,请完成以下步骤:
定义宏:
#define ATRACE_NAME(name) ScopedTrace ___tracer(name) // ATRACE_CALL is an ATRACE_NAME that uses the current function name. #define ATRACE_CALL() ATRACE_NAME(__FUNCTION__) class ScopedTrace { public: inline ScopedTrace(const char *name) { ATrace_beginSection(name); } inline ~ScopedTrace() { ATrace_endSection(); } };
在要跟踪的函数中调用此宏:
void myExpensiveFunction() { ATRACE_CALL(); // Code that you want to trace. }
为线程命名
您可以为发生事件的每个线程命名,如以下代码段所示。此步骤可让您更轻松地识别属于游戏中特定操作的线程。
#include <pthread.h> static void *render_scene(void *parm) { // Code for preparing your app or game's visual components. } static void *load_main_menu(void *parm) { // Code that executes your app or game's main logic. } void init_threads() { pthread_t render_thread, main_thread; pthread_create(&render_thread, NULL, render_scene, NULL); pthread_create(&main_thread, NULL, load_main_menu, NULL); pthread_setname_np(render_thread, "MyRenderer"); pthread_setname_np(main_thread, "MyMainMenu"); }
为您推荐
- 注意:当 JavaScript 处于关闭状态时,系统会显示链接文字
- 有助提升 SQLite 性能的最佳实践
- 在不使用 Macrobenchmark 的情况下创建和衡量基准配置文件