AtraceLogger
@RequiresApi(value = 21)
class AtraceLogger
Class contains helper methods to dump atrace info asynchronously while running the test case.
Supported only for minsdk version 21 and above because of UiAutomation#executeShellCommand availability.
Summary
Public functions |
|
|---|---|
Unit |
Method to start atrace and dump the data at regular interval. |
Unit |
Method to stop the atrace and write the atrace data cached in byte array list to file. |
java-static AtraceLogger! |
To make sure only one instance of atrace logger is created. |
Public functions
atraceStart
funatraceStart(
traceCategoriesSet: (Mutable)Set<String!>!,
atraceBufferSize: Int,
dumpIntervalSecs: Int,
destDirectory: File!,
traceFileName: String!
): Unit
Method to start atrace and dump the data at regular interval. Note : Trace info will not be captured during the dumping if there are multiple dumps between the atraceStart and atraceStop
| Parameters | |
|---|---|
traceCategoriesSet: (Mutable)Set<String!>! |
Set of atrace categories (i.e atrace --list_categories) |
atraceBufferSize: Int |
Size of the circular buffer in kb |
dumpIntervalSecs: Int |
Periodic interval to dump data from circular buffer |
destDirectory: File! |
Directory under which atrace logs are stored |
traceFileName: String! |
is optional parameter.Atrace files are dumped under destDirectory. traceFileName will be indexed based on number of dumps between atraceStart and atraceStop under destDirectory. If traceFileName is null or empty "atrace" name will be used for indexing the files and stored under destDirectory |
| Throws | |
|---|---|
java.io.IOException |
atraceStop
funatraceStop(): Unit
Method to stop the atrace and write the atrace data cached in byte array list to file.
getAtraceLoggerInstance
java-static fungetAtraceLoggerInstance(instrumentation: Instrumentation!): AtraceLogger!
To make sure only one instance of atrace logger is created.
| Parameters | |
|---|---|
instrumentation: Instrumentation! |
Used to execute atrace shell commands |
| Returns | |
|---|---|
AtraceLogger! |
instance of the AtraceLogger |