Package org.robolectric.shadows
Class ShadowTrace
java.lang.Object
org.robolectric.shadows.ShadowTrace
Shadow implementation for
Trace
, which stores the traces locally in arrays (unlike the
real implementation) and allows reading them.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
AutoValue representation of a trace triggered by one of the async apisstatic class
Counters emitted with the setCounter API -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected static void
beginAsyncSection
(String sectionName, int cookie) Starts a new async trace section with given name.protected static void
beginSection
(String sectionName) Starts a new trace section with given name.static void
doNotUseSetCrashOnIncorrectUsage
(boolean crashOnIncorrectUsage) Do not use this method unless absolutely necessary.protected static void
endAsyncSection
(String sectionName, int cookie) Ends async trace trace section.protected static void
Ends the most recent active trace section.static com.google.common.collect.ImmutableList<ShadowTrace.Counter>
Returns an ordered list of previous counters.static com.google.common.collect.ImmutableSet<ShadowTrace.AsyncTraceSection>
Returns a set of all the current active async trace sections.Returns a stack of the currently active trace sections for the current thread.static com.google.common.collect.ImmutableSet<ShadowTrace.AsyncTraceSection>
Returns a set of all the previously active async trace sections.Returns a queue of all the previously active trace sections for the current thread.protected static boolean
Returns whether systrace is enabled.protected static long
static void
reset()
Resets internal lists of active trace sections.protected static void
setAppTracingAllowed
(boolean appTracingAllowed) protected static void
setCounter
(String counterName, long counterValue) static void
setEnabled
(boolean enabled) Sets the systrace to enabled or disabled.
-
Constructor Details
-
ShadowTrace
public ShadowTrace()
-
-
Method Details
-
beginSection
Starts a new trace section with given name. -
endSection
Ends the most recent active trace section. -
beginAsyncSection
Starts a new async trace section with given name. -
endAsyncSection
Ends async trace trace section. -
nativeGetEnabledTags
-
setAppTracingAllowed
-
isEnabled
Returns whether systrace is enabled. -
setCounter
-
setEnabled
public static void setEnabled(boolean enabled) Sets the systrace to enabled or disabled. -
getCurrentSections
Returns a stack of the currently active trace sections for the current thread. -
getPreviousSections
Returns a queue of all the previously active trace sections for the current thread. -
getCurrentAsyncSections
public static com.google.common.collect.ImmutableSet<ShadowTrace.AsyncTraceSection> getCurrentAsyncSections()Returns a set of all the current active async trace sections. -
getPreviousAsyncSections
public static com.google.common.collect.ImmutableSet<ShadowTrace.AsyncTraceSection> getPreviousAsyncSections()Returns a set of all the previously active async trace sections. -
getCounters
Returns an ordered list of previous counters. -
doNotUseSetCrashOnIncorrectUsage
public static void doNotUseSetCrashOnIncorrectUsage(boolean crashOnIncorrectUsage) Do not use this method unless absolutely necessary. Prefer fixing the tests instead.Sets whether to crash on incorrect usage (e.g., calling
endSection()
beforebeginSection(java.lang.String)
. Default value -true
. -
reset
Resets internal lists of active trace sections.
-