blob: f7d8abef5c8ce31cd65e817c4a82d20624d07211 [file] [log] [blame]
Jamie Gennisf64b1ca2012-02-23 11:28:28 -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
Glenn Kasten84ed8002012-04-05 13:41:56 -070017#define LOG_TAG "Trace"
18
Jamie Gennisf64b1ca2012-02-23 11:28:28 -080019#include <cutils/properties.h>
20#include <utils/Log.h>
21#include <utils/Trace.h>
22
23namespace android {
24
25volatile int32_t Tracer::sIsReady = 0;
26int Tracer::sTraceFD = -1;
27uint64_t Tracer::sEnabledTags = 0;
28Mutex Tracer::sMutex;
29
30void Tracer::init() {
31 Mutex::Autolock lock(sMutex);
32
33 if (!sIsReady) {
34 const char* const traceFileName =
35 "/sys/kernel/debug/tracing/trace_marker";
36 sTraceFD = open(traceFileName, O_WRONLY);
37 if (sTraceFD == -1) {
38 ALOGE("error opening trace file: %s (%d)", strerror(errno), errno);
Jeff Brown45b80c62012-03-09 14:46:01 -080039 // sEnabledTags remains zero indicating that no tracing can occur
Jamie Gennisf64b1ca2012-02-23 11:28:28 -080040 } else {
41 char value[PROPERTY_VALUE_MAX];
42 property_get("atrace.tags.enableflags", value, "0");
Jeff Brown45b80c62012-03-09 14:46:01 -080043 sEnabledTags = (strtoll(value, NULL, 0) & ATRACE_TAG_VALID_MASK)
44 | ATRACE_TAG_ALWAYS;
Jamie Gennisf64b1ca2012-02-23 11:28:28 -080045 }
46
47 android_atomic_release_store(1, &sIsReady);
48 }
49}
50
51} // namespace andoid