Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Side by Side Diff: content/public/browser/tracing_controller.h

Issue 541763002: tracing: get rid of files in TracingController interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed system trace collection Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/tracing/tracing_ui.cc ('k') | content/public/test/browser_test_base.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_
6 #define CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_ 6 #define CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/debug/trace_event.h" 12 #include "base/debug/trace_event.h"
13 #include "base/memory/ref_counted.h"
13 #include "content/common/content_export.h" 14 #include "content/common/content_export.h"
14 15
15 namespace base {
16 class FilePath;
17 };
18
19 namespace content { 16 namespace content {
20 17
21 class TracingController; 18 class TracingController;
22 19
23 // TracingController is used on the browser processes to enable/disable 20 // TracingController is used on the browser processes to enable/disable
24 // trace status and collect trace data. Only the browser UI thread is allowed 21 // trace status and collect trace data. Only the browser UI thread is allowed
25 // to interact with the TracingController object. All callbacks are called on 22 // to interact with the TracingController object. All callbacks are called on
26 // the UI thread. 23 // the UI thread.
27 class TracingController { 24 class TracingController {
28 public: 25 public:
29 26
30 CONTENT_EXPORT static TracingController* GetInstance(); 27 CONTENT_EXPORT static TracingController* GetInstance();
31 28
29 // An interface for trace data consumer. An implemnentation of this interface
30 // is passed to either DisableTracing() or CaptureMonitoringSnapshot() and
31 // receives the trace data followed by a notification that all child processes
32 // have completed tracing and the data collection is over.
33 // All methods are called on the UI thread.
34 // Close method will be called exactly once and no methods will be
35 // called after that.
36 class CONTENT_EXPORT TraceDataSink
37 : public base::RefCountedThreadSafe<TraceDataSink> {
38 public:
39 virtual void AddTraceChunk(const std::string& chunk) {}
40 virtual void SetSystemTrace(const std::string& data) {}
41 virtual void Close() {}
42
43 protected:
44 friend class base::RefCountedThreadSafe<TraceDataSink>;
45 virtual ~TraceDataSink() {}
46 };
47
48 // Create a trace sink that may be supplied to DisableRecording or
49 // CaptureMonitoringSnapshot to capture the trace data as a string.
50 CONTENT_EXPORT static scoped_refptr<TraceDataSink> CreateStringSink(
51 const base::Callback<void(base::RefCountedString*)>& callback);
52
53 // Create a trace sink that may be supplied to DisableRecording or
54 // CaptureMonitoringSnapshot to dump the trace data to a file.
55 CONTENT_EXPORT static scoped_refptr<TraceDataSink> CreateFileSink(
56 const base::FilePath& file_path,
57 const base::Closure& callback);
58
32 // Get a set of category groups. The category groups can change as 59 // Get a set of category groups. The category groups can change as
33 // new code paths are reached. 60 // new code paths are reached.
34 // 61 //
35 // Once all child processes have acked to the GetCategories request, 62 // Once all child processes have acked to the GetCategories request,
36 // GetCategoriesDoneCallback is called back with a set of category 63 // GetCategoriesDoneCallback is called back with a set of category
37 // groups. 64 // groups.
38 typedef base::Callback<void(const std::set<std::string>&)> 65 typedef base::Callback<void(const std::set<std::string>&)>
39 GetCategoriesDoneCallback; 66 GetCategoriesDoneCallback;
40 virtual bool GetCategories( 67 virtual bool GetCategories(
41 const GetCategoriesDoneCallback& callback) = 0; 68 const GetCategoriesDoneCallback& callback) = 0;
(...skipping 27 matching lines...) Expand all
69 // Child processes typically are caching trace data and only rarely flush 96 // Child processes typically are caching trace data and only rarely flush
70 // and send trace data back to the browser process. That is because it may be 97 // and send trace data back to the browser process. That is because it may be
71 // an expensive operation to send the trace data over IPC, and we would like 98 // an expensive operation to send the trace data over IPC, and we would like
72 // to avoid much runtime overhead of tracing. So, to end tracing, we must 99 // to avoid much runtime overhead of tracing. So, to end tracing, we must
73 // asynchronously ask all child processes to flush any pending trace data. 100 // asynchronously ask all child processes to flush any pending trace data.
74 // 101 //
75 // Once all child processes have acked to the DisableRecording request, 102 // Once all child processes have acked to the DisableRecording request,
76 // TracingFileResultCallback will be called back with a file that contains 103 // TracingFileResultCallback will be called back with a file that contains
77 // the traced data. 104 // the traced data.
78 // 105 //
79 // Trace data will be written into |result_file_path| if it is not empty, or 106 // If |trace_data_sink| is not null, it will receive chunks of trace data
80 // into a temporary file. The actual file path will be passed to |callback| if 107 // as a comma-separated sequences of JSON-stringified events, followed by
81 // it's not null. 108 // a notification that the trace collection is finished.
82 // 109 //
83 // If |result_file_path| is empty and |callback| is null, trace data won't be 110 virtual bool DisableRecording(
84 // written to any file. 111 const scoped_refptr<TraceDataSink>& trace_data_sink) = 0;
85 typedef base::Callback<void(const base::FilePath&)> TracingFileResultCallback;
86 virtual bool DisableRecording(const base::FilePath& result_file_path,
87 const TracingFileResultCallback& callback) = 0;
88 112
89 // Start monitoring on all processes. 113 // Start monitoring on all processes.
90 // 114 //
91 // Monitoring begins immediately locally, and asynchronously on child 115 // Monitoring begins immediately locally, and asynchronously on child
92 // processes as soon as they receive the EnableMonitoring request. 116 // processes as soon as they receive the EnableMonitoring request.
93 // 117 //
94 // Once all child processes have acked to the EnableMonitoring request, 118 // Once all child processes have acked to the EnableMonitoring request,
95 // EnableMonitoringDoneCallback will be called back. 119 // EnableMonitoringDoneCallback will be called back.
96 // 120 //
97 // |category_filter| is a filter to control what category groups should be 121 // |category_filter| is a filter to control what category groups should be
(...skipping 25 matching lines...) Expand all
123 // Child processes typically are caching trace data and only rarely flush 147 // Child processes typically are caching trace data and only rarely flush
124 // and send trace data back to the browser process. That is because it may be 148 // and send trace data back to the browser process. That is because it may be
125 // an expensive operation to send the trace data over IPC, and we would like 149 // an expensive operation to send the trace data over IPC, and we would like
126 // to avoid much runtime overhead of tracing. So, to end tracing, we must 150 // to avoid much runtime overhead of tracing. So, to end tracing, we must
127 // asynchronously ask all child processes to flush any pending trace data. 151 // asynchronously ask all child processes to flush any pending trace data.
128 // 152 //
129 // Once all child processes have acked to the CaptureMonitoringSnapshot 153 // Once all child processes have acked to the CaptureMonitoringSnapshot
130 // request, TracingFileResultCallback will be called back with a file that 154 // request, TracingFileResultCallback will be called back with a file that
131 // contains the traced data. 155 // contains the traced data.
132 // 156 //
133 // Trace data will be written into |result_file_path| if it is not empty, or 157 // If |trace_data_sink| is not null, it will receive chunks of trace data
134 // into a temporary file. The actual file path will be passed to |callback|. 158 // as a comma-separated sequences of JSON-stringified events, followed by
135 // 159 // a notification that the trace collection is finished.
136 // If |result_file_path| is empty and |callback| is null, trace data won't be
137 // written to any file.
138 virtual bool CaptureMonitoringSnapshot( 160 virtual bool CaptureMonitoringSnapshot(
139 const base::FilePath& result_file_path, 161 const scoped_refptr<TraceDataSink>& trace_data_sink) = 0;
140 const TracingFileResultCallback& callback) = 0;
141 162
142 // Get the maximum across processes of trace buffer percent full state. 163 // Get the maximum across processes of trace buffer percent full state.
143 // When the TraceBufferPercentFull value is determined, the callback is 164 // When the TraceBufferPercentFull value is determined, the callback is
144 // called. 165 // called.
145 typedef base::Callback<void(float)> GetTraceBufferPercentFullCallback; 166 typedef base::Callback<void(float)> GetTraceBufferPercentFullCallback;
146 virtual bool GetTraceBufferPercentFull( 167 virtual bool GetTraceBufferPercentFull(
147 const GetTraceBufferPercentFullCallback& callback) = 0; 168 const GetTraceBufferPercentFullCallback& callback) = 0;
148 169
149 // |callback| will will be called every time the given event occurs on any 170 // |callback| will will be called every time the given event occurs on any
150 // process. 171 // process.
151 typedef base::Callback<void()> WatchEventCallback; 172 typedef base::Callback<void()> WatchEventCallback;
152 virtual bool SetWatchEvent(const std::string& category_name, 173 virtual bool SetWatchEvent(const std::string& category_name,
153 const std::string& event_name, 174 const std::string& event_name,
154 const WatchEventCallback& callback) = 0; 175 const WatchEventCallback& callback) = 0;
155 176
156 // Cancel the watch event. If tracing is enabled, this may race with the 177 // Cancel the watch event. If tracing is enabled, this may race with the
157 // watch event callback. 178 // watch event callback.
158 virtual bool CancelWatchEvent() = 0; 179 virtual bool CancelWatchEvent() = 0;
159 180
160 protected: 181 protected:
161 virtual ~TracingController() {} 182 virtual ~TracingController() {}
162 }; 183 };
163 184
164 } // namespace content 185 } // namespace content
165 186
166 #endif // CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_ 187 #endif // CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_
OLDNEW
« no previous file with comments | « content/browser/tracing/tracing_ui.cc ('k') | content/public/test/browser_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698