OLD | NEW |
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 protected: |
| 43 friend class base::RefCountedThreadSafe<TraceDataSink>; |
| 44 virtual ~TraceDataSink() {} |
| 45 }; |
| 46 |
32 // Get a set of category groups. The category groups can change as | 47 // Get a set of category groups. The category groups can change as |
33 // new code paths are reached. | 48 // new code paths are reached. |
34 // | 49 // |
35 // Once all child processes have acked to the GetCategories request, | 50 // Once all child processes have acked to the GetCategories request, |
36 // GetCategoriesDoneCallback is called back with a set of category | 51 // GetCategoriesDoneCallback is called back with a set of category |
37 // groups. | 52 // groups. |
38 typedef base::Callback<void(const std::set<std::string>&)> | 53 typedef base::Callback<void(const std::set<std::string>&)> |
39 GetCategoriesDoneCallback; | 54 GetCategoriesDoneCallback; |
40 virtual bool GetCategories( | 55 virtual bool GetCategories( |
41 const GetCategoriesDoneCallback& callback) = 0; | 56 const GetCategoriesDoneCallback& callback) = 0; |
(...skipping 27 matching lines...) Expand all Loading... |
69 // Child processes typically are caching trace data and only rarely flush | 84 // 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 | 85 // 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 | 86 // 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 | 87 // 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. | 88 // asynchronously ask all child processes to flush any pending trace data. |
74 // | 89 // |
75 // Once all child processes have acked to the DisableRecording request, | 90 // Once all child processes have acked to the DisableRecording request, |
76 // TracingFileResultCallback will be called back with a file that contains | 91 // TracingFileResultCallback will be called back with a file that contains |
77 // the traced data. | 92 // the traced data. |
78 // | 93 // |
79 // Trace data will be written into |result_file_path| if it is not empty, or | 94 // 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 | 95 // as a comma-separated sequences of JSON-stringified events, followed by |
81 // it's not null. | 96 // a notification that the trace collection is finished. |
82 // | 97 // |
83 // If |result_file_path| is empty and |callback| is null, trace data won't be | 98 virtual bool DisableRecording( |
84 // written to any file. | 99 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 | 100 |
89 // Start monitoring on all processes. | 101 // Start monitoring on all processes. |
90 // | 102 // |
91 // Monitoring begins immediately locally, and asynchronously on child | 103 // Monitoring begins immediately locally, and asynchronously on child |
92 // processes as soon as they receive the EnableMonitoring request. | 104 // processes as soon as they receive the EnableMonitoring request. |
93 // | 105 // |
94 // Once all child processes have acked to the EnableMonitoring request, | 106 // Once all child processes have acked to the EnableMonitoring request, |
95 // EnableMonitoringDoneCallback will be called back. | 107 // EnableMonitoringDoneCallback will be called back. |
96 // | 108 // |
97 // |category_filter| is a filter to control what category groups should be | 109 // |category_filter| is a filter to control what category groups should be |
(...skipping 25 matching lines...) Expand all Loading... |
123 // Child processes typically are caching trace data and only rarely flush | 135 // 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 | 136 // 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 | 137 // 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 | 138 // 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. | 139 // asynchronously ask all child processes to flush any pending trace data. |
128 // | 140 // |
129 // Once all child processes have acked to the CaptureMonitoringSnapshot | 141 // Once all child processes have acked to the CaptureMonitoringSnapshot |
130 // request, TracingFileResultCallback will be called back with a file that | 142 // request, TracingFileResultCallback will be called back with a file that |
131 // contains the traced data. | 143 // contains the traced data. |
132 // | 144 // |
133 // Trace data will be written into |result_file_path| if it is not empty, or | 145 // 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|. | 146 // as a comma-separated sequences of JSON-stringified events, followed by |
135 // | 147 // 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( | 148 virtual bool CaptureMonitoringSnapshot( |
139 const base::FilePath& result_file_path, | 149 const scoped_refptr<TraceDataSink> &trace_data_sink) = 0; |
140 const TracingFileResultCallback& callback) = 0; | |
141 | 150 |
142 // Get the maximum across processes of trace buffer percent full state. | 151 // Get the maximum across processes of trace buffer percent full state. |
143 // When the TraceBufferPercentFull value is determined, the callback is | 152 // When the TraceBufferPercentFull value is determined, the callback is |
144 // called. | 153 // called. |
145 typedef base::Callback<void(float)> GetTraceBufferPercentFullCallback; | 154 typedef base::Callback<void(float)> GetTraceBufferPercentFullCallback; |
146 virtual bool GetTraceBufferPercentFull( | 155 virtual bool GetTraceBufferPercentFull( |
147 const GetTraceBufferPercentFullCallback& callback) = 0; | 156 const GetTraceBufferPercentFullCallback& callback) = 0; |
148 | 157 |
149 // |callback| will will be called every time the given event occurs on any | 158 // |callback| will will be called every time the given event occurs on any |
150 // process. | 159 // process. |
151 typedef base::Callback<void()> WatchEventCallback; | 160 typedef base::Callback<void()> WatchEventCallback; |
152 virtual bool SetWatchEvent(const std::string& category_name, | 161 virtual bool SetWatchEvent(const std::string& category_name, |
153 const std::string& event_name, | 162 const std::string& event_name, |
154 const WatchEventCallback& callback) = 0; | 163 const WatchEventCallback& callback) = 0; |
155 | 164 |
156 // Cancel the watch event. If tracing is enabled, this may race with the | 165 // Cancel the watch event. If tracing is enabled, this may race with the |
157 // watch event callback. | 166 // watch event callback. |
158 virtual bool CancelWatchEvent() = 0; | 167 virtual bool CancelWatchEvent() = 0; |
159 | 168 |
160 protected: | 169 protected: |
161 virtual ~TracingController() {} | 170 virtual ~TracingController() {} |
162 }; | 171 }; |
163 | 172 |
164 } // namespace content | 173 } // namespace content |
165 | 174 |
166 #endif // CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_ | 175 #endif // CONTENT_PUBLIC_BROWSER_TRACING_CONTROLLER_H_ |
OLD | NEW |