OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "base/lazy_instance.h" | 5 #include "base/lazy_instance.h" |
6 #include "base/memory/singleton.h" | 6 #include "base/memory/singleton.h" |
7 #include "base/trace_event/trace_event_impl.h" | 7 #include "base/trace_event/trace_event_impl.h" |
8 #include "content/browser/tracing/battor_power_trace_provider.h" | 8 #include "content/browser/tracing/battor_power_trace_provider.h" |
9 #include "content/browser/tracing/power_tracing_agent.h" | 9 #include "content/browser/tracing/power_tracing_agent.h" |
10 #include "content/public/browser/browser_thread.h" | 10 #include "content/public/browser/browser_thread.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 | 13 |
| 14 // static |
| 15 PowerTracingAgent* PowerTracingAgent::GetInstance() { |
| 16 return base::Singleton<PowerTracingAgent>::get(); |
| 17 } |
| 18 |
14 PowerTracingAgent::PowerTracingAgent() : is_tracing_(false) { | 19 PowerTracingAgent::PowerTracingAgent() : is_tracing_(false) { |
15 battor_trace_provider_.reset(new BattorPowerTraceProvider()); | 20 battor_trace_provider_.reset(new BattorPowerTraceProvider()); |
16 } | 21 } |
17 | 22 |
18 PowerTracingAgent::~PowerTracingAgent() {} | 23 PowerTracingAgent::~PowerTracingAgent() {} |
19 | 24 |
20 bool PowerTracingAgent::StartTracing() { | 25 std::string PowerTracingAgent::GetTracingAgentName() { |
| 26 return kPowerTracingAgentName; |
| 27 } |
| 28 |
| 29 std::string PowerTracingAgent::GetTraceEventLabel() { |
| 30 return kPowerTraceLabel; |
| 31 } |
| 32 |
| 33 bool PowerTracingAgent::StartAgentTracing( |
| 34 const base::trace_event::TraceConfig& trace_config) { |
21 // Tracing session already in progress. | 35 // Tracing session already in progress. |
22 if (is_tracing_) | 36 if (is_tracing_) |
23 return false; | 37 return false; |
24 | 38 |
25 // TODO(prabhur) Start tracing probably needs to be done in a | 39 // TODO(prabhur) Start tracing probably needs to be done in a |
26 // separate thread since it involves talking to the h/w. | 40 // separate thread since it involves talking to the h/w. |
27 // Revisit once battor h/w communication is enabled. | 41 // Revisit once battor h/w communication is enabled. |
28 is_tracing_ = battor_trace_provider_->StartTracing(); | 42 is_tracing_ = battor_trace_provider_->StartTracing(); |
29 return is_tracing_; | 43 return is_tracing_; |
30 } | 44 } |
31 | 45 |
32 void PowerTracingAgent::StopTracing(const OutputCallback& callback) { | 46 void PowerTracingAgent::StopAgentTracing( |
| 47 const StopAgentTracingCallback& callback) { |
33 // No tracing session in progress. | 48 // No tracing session in progress. |
34 if (!is_tracing_) | 49 if (!is_tracing_) |
35 return; | 50 return; |
36 | 51 |
37 // Stop tracing & collect logs. | 52 // Stop tracing & collect logs. |
38 OutputCallback on_stop_power_tracing_done_callback = base::Bind( | |
39 &PowerTracingAgent::OnStopTracingDone, base::Unretained(this), callback); | |
40 BrowserThread::PostTask( | 53 BrowserThread::PostTask( |
41 BrowserThread::UI, FROM_HERE, | 54 BrowserThread::UI, FROM_HERE, |
42 base::Bind(&PowerTracingAgent::FlushOnThread, base::Unretained(this), | 55 base::Bind(&PowerTracingAgent::FlushOnThread, |
43 on_stop_power_tracing_done_callback)); | 56 base::Unretained(this), |
| 57 callback)); |
44 } | 58 } |
45 | 59 |
46 void PowerTracingAgent::OnStopTracingDone( | 60 void PowerTracingAgent::OnStopTracingDone( |
47 const OutputCallback& callback, | 61 const StopAgentTracingCallback& callback, |
48 const scoped_refptr<base::RefCountedString>& result) { | 62 const scoped_refptr<base::RefCountedString>& result) { |
49 is_tracing_ = false; | 63 is_tracing_ = false; |
50 // Pass the serialized events. | 64 // Pass the serialized events. |
51 callback.Run(result); | 65 callback.Run(GetTracingAgentName(), GetTraceEventLabel(), result); |
52 } | 66 } |
53 | 67 |
54 // static | 68 void PowerTracingAgent::FlushOnThread( |
55 PowerTracingAgent* PowerTracingAgent::GetInstance() { | 69 const StopAgentTracingCallback& callback) { |
56 return base::Singleton<PowerTracingAgent>::get(); | |
57 } | |
58 | |
59 void PowerTracingAgent::FlushOnThread(const OutputCallback& callback) { | |
60 // Pass the result to the UI Thread. | 70 // Pass the result to the UI Thread. |
61 | 71 |
62 // TODO(prabhur) StopTracing & GetLog need to be called on a | 72 // TODO(prabhur) StopTracing & GetLog need to be called on a |
63 // separate thread depending on how BattorPowerTraceProvider is implemented. | 73 // separate thread depending on how BattorPowerTraceProvider is implemented. |
64 battor_trace_provider_->StopTracing(); | 74 battor_trace_provider_->StopTracing(); |
65 std::string battor_logs; | 75 std::string battor_logs; |
66 battor_trace_provider_->GetLog(&battor_logs); | 76 battor_trace_provider_->GetLog(&battor_logs); |
67 scoped_refptr<base::RefCountedString> result = | 77 scoped_refptr<base::RefCountedString> result = |
68 base::RefCountedString::TakeString(&battor_logs); | 78 base::RefCountedString::TakeString(&battor_logs); |
69 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, | 79 BrowserThread::PostTask( |
70 base::Bind(callback, result)); | 80 BrowserThread::UI, FROM_HERE, |
| 81 base::Bind(&PowerTracingAgent::OnStopTracingDone, |
| 82 base::Unretained(this), |
| 83 callback, |
| 84 result)); |
| 85 } |
| 86 |
| 87 bool PowerTracingAgent::SupportsExplicitClockSync() { |
| 88 // TODO(zhenw): return true after implementing explicit clock sync. |
| 89 return false; |
| 90 } |
| 91 |
| 92 void PowerTracingAgent::RecordClockSyncMarker( |
| 93 scoped_ptr<base::DictionaryValue> marker) { |
| 94 DCHECK(SupportsExplicitClockSync()); |
| 95 // TODO(zhenw): implement explicit clock sync. |
| 96 } |
| 97 |
| 98 void PowerTracingAgent::IssueClockSyncMarker() { |
| 99 DCHECK(SupportsExplicitClockSync()); |
| 100 // TODO(zhenw): implement explicit clock sync. |
71 } | 101 } |
72 | 102 |
73 } // namespace content | 103 } // namespace content |
OLD | NEW |