blob: 57ed97977312c5d101fbc2b01822d463a2e26200 [file] [log] [blame]
Jeff Brown481c1572012-03-09 14:41:15 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
19/**
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070020 * Writes trace events to the system trace buffer. These trace events can be
21 * collected and visualized using the Systrace tool.
Jeff Brown481c1572012-03-09 14:41:15 -080022 *
Scott Mainc4682402013-06-13 12:38:55 -070023 * <p>This tracing mechanism is independent of the method tracing mechanism
Jeff Brown481c1572012-03-09 14:41:15 -080024 * offered by {@link Debug#startMethodTracing}. In particular, it enables
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070025 * tracing of events that occur across multiple processes.
Scott Mainc4682402013-06-13 12:38:55 -070026 * <p>For information about using the Systrace tool, read <a
27 * href="{@docRoot}tools/debugging/systrace.html">Analyzing Display and Performance
28 * with Systrace</a>.
Jeff Brown481c1572012-03-09 14:41:15 -080029 */
30public final class Trace {
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070031 /*
32 * Writes trace events to the kernel trace buffer. These trace events can be
33 * collected using the "atrace" program for offline analysis.
34 */
35
Andy McFaddend11ca4d2012-10-22 16:16:06 -070036 private static final String TAG = "Trace";
37
Alex Ray8a6787b2012-11-14 18:08:49 -080038 // These tags must be kept in sync with system/core/include/cutils/trace.h.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070039 /** @hide */
Jeff Brown481c1572012-03-09 14:41:15 -080040 public static final long TRACE_TAG_NEVER = 0;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070041 /** @hide */
Jeff Brown481c1572012-03-09 14:41:15 -080042 public static final long TRACE_TAG_ALWAYS = 1L << 0;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070043 /** @hide */
Jeff Brown481c1572012-03-09 14:41:15 -080044 public static final long TRACE_TAG_GRAPHICS = 1L << 1;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070045 /** @hide */
Jeff Brown481c1572012-03-09 14:41:15 -080046 public static final long TRACE_TAG_INPUT = 1L << 2;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070047 /** @hide */
Jeff Brown481c1572012-03-09 14:41:15 -080048 public static final long TRACE_TAG_VIEW = 1L << 3;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070049 /** @hide */
Chris Craik192a65e2012-04-16 16:08:40 -070050 public static final long TRACE_TAG_WEBVIEW = 1L << 4;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070051 /** @hide */
Dianne Hackborn1ded0b12012-04-26 14:14:50 -070052 public static final long TRACE_TAG_WINDOW_MANAGER = 1L << 5;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070053 /** @hide */
Dianne Hackborn1ded0b12012-04-26 14:14:50 -070054 public static final long TRACE_TAG_ACTIVITY_MANAGER = 1L << 6;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070055 /** @hide */
Andy Stadler09b45a32012-05-03 15:00:49 -070056 public static final long TRACE_TAG_SYNC_MANAGER = 1L << 7;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070057 /** @hide */
Glenn Kastened853fc2012-05-07 11:05:55 -070058 public static final long TRACE_TAG_AUDIO = 1L << 8;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070059 /** @hide */
Jamie Gennis24dae6c2012-05-11 04:43:35 -070060 public static final long TRACE_TAG_VIDEO = 1L << 9;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070061 /** @hide */
Eino-Ville Talvala9c0d9cf2012-05-31 15:49:31 -070062 public static final long TRACE_TAG_CAMERA = 1L << 10;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070063 /** @hide */
Alex Ray8a6787b2012-11-14 18:08:49 -080064 public static final long TRACE_TAG_HAL = 1L << 11;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070065 /** @hide */
66 public static final long TRACE_TAG_APP = 1L << 12;
Dianne Hackbornf7be4802013-04-12 14:52:58 -070067 /** @hide */
68 public static final long TRACE_TAG_RESOURCES = 1L << 13;
Jamie Gennis0cc84ce2013-05-07 15:22:31 -070069 /** @hide */
70 public static final long TRACE_TAG_DALVIK = 1L << 14;
Tim Murray6d7a53c2013-05-23 16:59:23 -070071 /** @hide */
72 public static final long TRACE_TAG_RS = 1L << 15;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070073
Andy McFadden325be8a2012-10-29 16:42:41 -070074 private static final long TRACE_TAG_NOT_READY = 1L << 63;
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070075 private static final int MAX_SECTION_NAME_LEN = 127;
Dianne Hackborn83e6eb12012-05-08 14:53:24 -070076
Andy McFaddend11ca4d2012-10-22 16:16:06 -070077 // Must be volatile to avoid word tearing.
Andy McFadden325be8a2012-10-29 16:42:41 -070078 private static volatile long sEnabledTags = TRACE_TAG_NOT_READY;
Jeff Brown481c1572012-03-09 14:41:15 -080079
80 private static native long nativeGetEnabledTags();
81 private static native void nativeTraceCounter(long tag, String name, int value);
82 private static native void nativeTraceBegin(long tag, String name);
83 private static native void nativeTraceEnd(long tag);
Romain Guy9425f922013-04-10 16:35:48 -070084 private static native void nativeAsyncTraceBegin(long tag, String name, int cookie);
85 private static native void nativeAsyncTraceEnd(long tag, String name, int cookie);
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -070086 private static native void nativeSetAppTracingAllowed(boolean allowed);
Jamie Gennis6ad04522013-04-15 18:53:24 -070087 private static native void nativeSetTracingEnabled(boolean allowed);
Jeff Brown481c1572012-03-09 14:41:15 -080088
Dianne Hackborna53de062012-05-08 18:53:51 -070089 static {
Andy McFaddend11ca4d2012-10-22 16:16:06 -070090 // We configure two separate change callbacks, one in Trace.cpp and one here. The
91 // native callback reads the tags from the system property, and this callback
92 // reads the value that the native code retrieved. It's essential that the native
93 // callback executes first.
94 //
95 // The system provides ordering through a priority level. Callbacks made through
96 // SystemProperties.addChangeCallback currently have a negative priority, while
97 // our native code is using a priority of zero.
Dianne Hackborna53de062012-05-08 18:53:51 -070098 SystemProperties.addChangeCallback(new Runnable() {
99 @Override public void run() {
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700100 cacheEnabledTags();
Dianne Hackborna53de062012-05-08 18:53:51 -0700101 }
102 });
103 }
104
Jeff Brown481c1572012-03-09 14:41:15 -0800105 private Trace() {
106 }
107
108 /**
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700109 * Caches a copy of the enabled-tag bits. The "master" copy is held by the native code,
110 * and comes from the PROPERTY_TRACE_TAG_ENABLEFLAGS property.
111 * <p>
112 * If the native code hasn't yet read the property, we will cause it to do one-time
113 * initialization. We don't want to do this during class init, because this class is
114 * preloaded, so all apps would be stuck with whatever the zygote saw. (The zygote
115 * doesn't see the system-property update broadcasts.)
116 * <p>
117 * We want to defer initialization until the first use by an app, post-zygote.
118 * <p>
119 * We're okay if multiple threads call here simultaneously -- the native state is
120 * synchronized, and sEnabledTags is volatile (prevents word tearing).
121 */
122 private static long cacheEnabledTags() {
123 long tags = nativeGetEnabledTags();
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700124 sEnabledTags = tags;
125 return tags;
126 }
127
128 /**
Jeff Brown481c1572012-03-09 14:41:15 -0800129 * Returns true if a trace tag is enabled.
130 *
131 * @param traceTag The trace tag to check.
132 * @return True if the trace tag is valid.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700133 *
134 * @hide
Jeff Brown481c1572012-03-09 14:41:15 -0800135 */
136 public static boolean isTagEnabled(long traceTag) {
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700137 long tags = sEnabledTags;
Andy McFadden325be8a2012-10-29 16:42:41 -0700138 if (tags == TRACE_TAG_NOT_READY) {
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700139 tags = cacheEnabledTags();
140 }
141 return (tags & traceTag) != 0;
Jeff Brown481c1572012-03-09 14:41:15 -0800142 }
143
144 /**
145 * Writes trace message to indicate the value of a given counter.
146 *
147 * @param traceTag The trace tag.
148 * @param counterName The counter name to appear in the trace.
149 * @param counterValue The counter value.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700150 *
151 * @hide
Jeff Brown481c1572012-03-09 14:41:15 -0800152 */
153 public static void traceCounter(long traceTag, String counterName, int counterValue) {
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700154 if (isTagEnabled(traceTag)) {
Jeff Brown481c1572012-03-09 14:41:15 -0800155 nativeTraceCounter(traceTag, counterName, counterValue);
156 }
157 }
158
159 /**
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700160 * Set whether application tracing is allowed for this process. This is intended to be set
161 * once at application start-up time based on whether the application is debuggable.
162 *
163 * @hide
164 */
165 public static void setAppTracingAllowed(boolean allowed) {
166 nativeSetAppTracingAllowed(allowed);
167
168 // Setting whether app tracing is allowed may change the tags, so we update the cached
169 // tags here.
170 cacheEnabledTags();
171 }
172
173 /**
Jamie Gennis6ad04522013-04-15 18:53:24 -0700174 * Set whether tracing is enabled in this process. Tracing is disabled shortly after Zygote
175 * initializes and re-enabled after processes fork from Zygote. This is done because Zygote
176 * has no way to be notified about changes to the tracing tags, and if Zygote ever reads and
177 * caches the tracing tags, forked processes will inherit those stale tags.
178 *
179 * @hide
180 */
181 public static void setTracingEnabled(boolean enabled) {
182 nativeSetTracingEnabled(enabled);
183
184 // Setting whether tracing is enabled may change the tags, so we update the cached tags
185 // here.
186 cacheEnabledTags();
187 }
188
189 /**
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700190 * Writes a trace message to indicate that a given section of code has
191 * begun. Must be followed by a call to {@link #traceEnd} using the same
192 * tag.
Jeff Brown481c1572012-03-09 14:41:15 -0800193 *
194 * @param traceTag The trace tag.
195 * @param methodName The method name to appear in the trace.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700196 *
197 * @hide
Jeff Brown481c1572012-03-09 14:41:15 -0800198 */
199 public static void traceBegin(long traceTag, String methodName) {
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700200 if (isTagEnabled(traceTag)) {
Jeff Brown481c1572012-03-09 14:41:15 -0800201 nativeTraceBegin(traceTag, methodName);
202 }
203 }
204
205 /**
206 * Writes a trace message to indicate that the current method has ended.
207 * Must be called exactly once for each call to {@link #traceBegin} using the same tag.
208 *
209 * @param traceTag The trace tag.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700210 *
211 * @hide
Jeff Brown481c1572012-03-09 14:41:15 -0800212 */
213 public static void traceEnd(long traceTag) {
Andy McFaddend11ca4d2012-10-22 16:16:06 -0700214 if (isTagEnabled(traceTag)) {
Jeff Brown481c1572012-03-09 14:41:15 -0800215 nativeTraceEnd(traceTag);
216 }
217 }
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700218
219 /**
Romain Guy9425f922013-04-10 16:35:48 -0700220 * Writes a trace message to indicate that a given section of code has
221 * begun. Must be followed by a call to {@link #asyncTraceEnd} using the same
222 * tag. Unlike {@link #traceBegin(long, String)} and {@link #traceEnd(long)},
223 * asynchronous events do not need to be nested. The name and cookie used to
224 * begin an event must be used to end it.
225 *
226 * @param traceTag The trace tag.
227 * @param methodName The method name to appear in the trace.
228 * @param cookie Unique identifier for distinguishing simultaneous events
229 *
230 * @hide
231 */
232 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) {
233 if (isTagEnabled(traceTag)) {
234 nativeAsyncTraceBegin(traceTag, methodName, cookie);
235 }
236 }
237
238 /**
239 * Writes a trace message to indicate that the current method has ended.
240 * Must be called exactly once for each call to {@link #asyncTraceBegin(long, String, int)}
241 * using the same tag, name and cookie.
242 *
243 * @param traceTag The trace tag.
244 * @param methodName The method name to appear in the trace.
245 * @param cookie Unique identifier for distinguishing simultaneous events
246 *
247 * @hide
248 */
249 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) {
250 if (isTagEnabled(traceTag)) {
251 nativeAsyncTraceEnd(traceTag, methodName, cookie);
252 }
253 }
254
255 /**
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700256 * Writes a trace message to indicate that a given section of code has begun. This call must
Jamie Gennis5800fc82013-04-09 18:37:22 -0700257 * be followed by a corresponding call to {@link #endSection()} on the same thread.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700258 *
259 * <p class="note"> At this time the vertical bar character '|', newline character '\n', and
260 * null character '\0' are used internally by the tracing mechanism. If sectionName contains
261 * these characters they will be replaced with a space character in the trace.
262 *
263 * @param sectionName The name of the code section to appear in the trace. This may be at
264 * most 127 Unicode code units long.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700265 */
Jamie Gennis5800fc82013-04-09 18:37:22 -0700266 public static void beginSection(String sectionName) {
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700267 if (isTagEnabled(TRACE_TAG_APP)) {
268 if (sectionName.length() > MAX_SECTION_NAME_LEN) {
269 throw new IllegalArgumentException("sectionName is too long");
270 }
271 nativeTraceBegin(TRACE_TAG_APP, sectionName);
272 }
273 }
274
275 /**
276 * Writes a trace message to indicate that a given section of code has ended. This call must
Jamie Gennis5800fc82013-04-09 18:37:22 -0700277 * be preceeded by a corresponding call to {@link #beginSection(String)}. Calling this method
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700278 * will mark the end of the most recently begun section of code, so care must be taken to
Jamie Gennis5800fc82013-04-09 18:37:22 -0700279 * ensure that beginSection / endSection pairs are properly nested and called from the same
280 * thread.
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700281 */
Jamie Gennis5800fc82013-04-09 18:37:22 -0700282 public static void endSection() {
Jamie Gennisf9c7d6b2013-03-25 14:18:25 -0700283 if (isTagEnabled(TRACE_TAG_APP)) {
284 nativeTraceEnd(TRACE_TAG_APP);
285 }
286 }
Jeff Brown481c1572012-03-09 14:41:15 -0800287}