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 CHROME_BROWSER_FEEDBACK_TRACING_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_FEEDBACK_TRACING_MANAGER_H_ |
6 #define CHROME_BROWSER_FEEDBACK_TRACING_MANAGER_H_ | 6 #define CHROME_BROWSER_FEEDBACK_TRACING_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "content/public/browser/trace_subscriber.h" | |
16 | 15 |
| 16 namespace base { |
| 17 |
| 18 class RefCountedString; |
| 19 class FilePath; |
| 20 |
| 21 } |
17 // Callback used for getting the output of a trace. | 22 // Callback used for getting the output of a trace. |
18 typedef base::Callback<void(scoped_refptr<base::RefCountedString> trace_data)> | 23 typedef base::Callback<void(scoped_refptr<base::RefCountedString> trace_data)> |
19 TraceDataCallback; | 24 TraceDataCallback; |
20 | 25 |
21 // This class is used to manage performance meterics that can be attached to | 26 // This class is used to manage performance metrics that can be attached to |
22 // feedback reports. This class is a Singleton that is owned by the preference | 27 // feedback reports. This class is a Singleton that is owned by the preference |
23 // system. It should only be created when it is enabled, and should only be | 28 // system. It should only be created when it is enabled, and should only be |
24 // accessed elsewhere via Get(). | 29 // accessed elsewhere via Get(). |
25 // | 30 // |
26 // When a performance trace is desired, TracingManager::Get()->RequestTrace() | 31 // When a performance trace is desired, TracingManager::Get()->RequestTrace() |
27 // should be invoked. The TracingManager will then start preparing a zipped | 32 // should be invoked. The TracingManager will then start preparing a zipped |
28 // version of the performance data. That data can then be requested via | 33 // version of the performance data. That data can then be requested via |
29 // GetTraceData(). When the data is no longer needed, it should be discarded | 34 // GetTraceData(). When the data is no longer needed, it should be discarded |
30 // via DiscardTraceData(). | 35 // via DiscardTraceData(). |
31 class TracingManager : public content::TraceSubscriber { | 36 class TracingManager { |
32 public: | 37 public: |
33 virtual ~TracingManager(); | 38 virtual ~TracingManager(); |
34 | 39 |
35 // Create a TracingManager. Can only be called when none exists. | 40 // Create a TracingManager. Can only be called when none exists. |
36 static scoped_ptr<TracingManager> Create(); | 41 static scoped_ptr<TracingManager> Create(); |
37 | 42 |
38 // Get the current TracingManager. Returns NULL if one doesn't exist. | 43 // Get the current TracingManager. Returns NULL if one doesn't exist. |
39 static TracingManager* Get(); | 44 static TracingManager* Get(); |
40 | 45 |
41 // Request a trace ending at the current time. If a trace is already being | 46 // Request a trace ending at the current time. If a trace is already being |
42 // collected, the id for that trace is returned. | 47 // collected, the id for that trace is returned. |
43 int RequestTrace(); | 48 int RequestTrace(); |
44 | 49 |
45 // Get the trace data for |id|. On success, true is returned, and the data is | 50 // Get the trace data for |id|. On success, true is returned, and the data is |
46 // returned via |callback|. Returns false on failure. | 51 // returned via |callback|. Returns false on failure. |
47 bool GetTraceData(int id, const TraceDataCallback& callback); | 52 bool GetTraceData(int id, const TraceDataCallback& callback); |
48 | 53 |
49 // Discard the data for trace |id|. | 54 // Discard the data for trace |id|. |
50 void DiscardTraceData(int id); | 55 void DiscardTraceData(int id); |
51 | 56 |
52 private: | 57 private: |
53 void StartTracing(); | |
54 | |
55 // content::TraceSubscriber overrides | |
56 virtual void OnEndTracingComplete() OVERRIDE; | |
57 virtual void OnTraceDataCollected( | |
58 const scoped_refptr<base::RefCountedString>& trace_fragment) OVERRIDE; | |
59 | |
60 TracingManager(); | 58 TracingManager(); |
61 | 59 |
62 // Data being collected from the current trace. | 60 void StartTracing(); |
63 std::string data_; | 61 void OnTraceDataCollected(const base::FilePath& path); |
64 | 62 |
65 // ID of the trace that is being collected. | 63 // ID of the trace that is being collected. |
66 int current_trace_id_; | 64 int current_trace_id_; |
67 | 65 |
68 // Mapping of trace ID to trace data. | 66 // Mapping of trace ID to trace data. |
69 std::map<int, scoped_refptr<base::RefCountedString> > trace_data_; | 67 std::map<int, scoped_refptr<base::RefCountedString> > trace_data_; |
70 | 68 |
71 // Callback for the current trace request. | 69 // Callback for the current trace request. |
72 TraceDataCallback trace_callback_; | 70 TraceDataCallback trace_callback_; |
73 | 71 |
74 base::WeakPtrFactory<TracingManager> weak_ptr_factory_; | 72 base::WeakPtrFactory<TracingManager> weak_ptr_factory_; |
75 | 73 |
76 DISALLOW_COPY_AND_ASSIGN(TracingManager); | 74 DISALLOW_COPY_AND_ASSIGN(TracingManager); |
77 }; | 75 }; |
78 | 76 |
79 #endif // CHROME_BROWSER_FEEDBACK_TRACING_MANAGER_H_ | 77 #endif // CHROME_BROWSER_FEEDBACK_TRACING_MANAGER_H_ |
80 | 78 |
OLD | NEW |