1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/test/trace_to_file.h"
7 #include "base/base_switches.h"
9 #include "base/command_line.h"
10 #include "base/files/file_util.h"
11 #include "base/run_loop.h"
12 #include "base/trace_event/trace_buffer.h"
13 #include "base/trace_event/trace_log.h"
18 TraceToFile::TraceToFile() : started_(false) {
21 TraceToFile::~TraceToFile() {
25 void TraceToFile::BeginTracingFromCommandLineOptions() {
26 DCHECK(CommandLine::InitializedForCurrentProcess());
29 if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kTraceToFile
))
32 // Empty filter (i.e. just --trace-to-file) turns into default categories in
34 std::string filter
= CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
35 switches::kTraceToFile
);
38 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kTraceToFileName
)) {
39 path
= FilePath(CommandLine::ForCurrentProcess()
40 ->GetSwitchValuePath(switches::kTraceToFileName
));
42 path
= FilePath(FILE_PATH_LITERAL("trace.json"));
45 BeginTracing(path
, filter
);
48 void TraceToFile::BeginTracing(const FilePath
& path
,
49 const std::string
& categories
) {
55 trace_event::TraceLog::GetInstance()->SetEnabled(
56 trace_event::TraceConfig(categories
, trace_event::RECORD_UNTIL_FULL
),
57 trace_event::TraceLog::RECORDING_MODE
);
60 void TraceToFile::WriteFileHeader() {
61 const char str
[] = "{\"traceEvents\": [";
62 WriteFile(path_
, str
, static_cast<int>(strlen(str
)));
65 void TraceToFile::AppendFileFooter() {
66 const char str
[] = "]}";
67 AppendToFile(path_
, str
, static_cast<int>(strlen(str
)));
70 void TraceToFile::TraceOutputCallback(const std::string
& data
) {
71 bool ret
= AppendToFile(path_
, data
.c_str(), static_cast<int>(data
.size()));
75 static void OnTraceDataCollected(
77 trace_event::TraceResultBuffer
* buffer
,
78 const scoped_refptr
<RefCountedString
>& json_events_str
,
79 bool has_more_events
) {
80 buffer
->AddFragment(json_events_str
->data());
85 void TraceToFile::EndTracingIfNeeded() {
90 trace_event::TraceLog::GetInstance()->SetDisabled();
92 trace_event::TraceResultBuffer buffer
;
93 buffer
.SetOutputCallback(
94 Bind(&TraceToFile::TraceOutputCallback
, Unretained(this)));
97 trace_event::TraceLog::GetInstance()->Flush(
98 Bind(&OnTraceDataCollected
, run_loop
.QuitClosure(), Unretained(&buffer
)));