| 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 "mojo/common/trace_controller_impl.h" | 5 #include "mojo/common/trace_controller_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" |
| 7 #include "base/trace_event/trace_event.h" | 8 #include "base/trace_event/trace_event.h" |
| 8 #include "mojo/public/cpp/application/application_connection.h" | 9 #include "mojo/public/cpp/application/application_connection.h" |
| 9 #include "mojo/public/cpp/application/application_impl.h" | 10 #include "mojo/public/cpp/application/application_impl.h" |
| 10 | 11 |
| 11 namespace mojo { | 12 namespace mojo { |
| 12 | 13 |
| 13 TraceControllerImpl::TraceControllerImpl( | 14 TraceControllerImpl::TraceControllerImpl( |
| 14 InterfaceRequest<tracing::TraceController> request) | 15 InterfaceRequest<tracing::TraceController> request) |
| 15 : binding_(this, request.Pass()) { | 16 : binding_(this, request.Pass()) { |
| 16 } | 17 } |
| 17 | 18 |
| 18 TraceControllerImpl::~TraceControllerImpl() { | 19 TraceControllerImpl::~TraceControllerImpl() { |
| 19 } | 20 } |
| 20 | 21 |
| 21 void TraceControllerImpl::StartTracing( | 22 void TraceControllerImpl::StartTracing( |
| 22 const String& categories, | 23 const String& categories, |
| 23 tracing::TraceDataCollectorPtr collector) { | 24 tracing::TraceDataCollectorPtr collector) { |
| 24 DCHECK(!collector_.get()); | 25 DCHECK(!collector_.get()); |
| 25 collector_ = collector.Pass(); | 26 collector_ = collector.Pass(); |
| 26 std::string categories_str = categories.To<std::string>(); | 27 std::string categories_str = categories.To<std::string>(); |
| 27 base::trace_event::TraceLog::GetInstance()->SetEnabled( | 28 base::trace_event::TraceLog::GetInstance()->SetEnabled( |
| 28 base::trace_event::CategoryFilter(categories_str), | 29 base::trace_event::CategoryFilter(categories_str), |
| 29 base::trace_event::TraceLog::RECORDING_MODE, | 30 base::trace_event::TraceLog::RECORDING_MODE, |
| 30 base::trace_event::TraceOptions(base::trace_event::RECORD_UNTIL_FULL)); | 31 base::trace_event::TraceOptions(base::trace_event::RECORD_UNTIL_FULL)); |
| 31 } | 32 } |
| 32 | 33 |
| 33 void TraceControllerImpl::StopTracing() { | 34 void TraceControllerImpl::StopTracing() { |
| 35 DCHECK(collector_); |
| 34 base::trace_event::TraceLog::GetInstance()->SetDisabled(); | 36 base::trace_event::TraceLog::GetInstance()->SetDisabled(); |
| 35 | 37 |
| 36 base::trace_event::TraceLog::GetInstance()->Flush( | 38 base::trace_event::TraceLog::GetInstance()->Flush( |
| 37 base::Bind(&TraceControllerImpl::SendChunk, base::Unretained(this))); | 39 base::Bind(&TraceControllerImpl::SendChunk, base::Unretained(this))); |
| 38 } | 40 } |
| 39 | 41 |
| 40 void TraceControllerImpl::SendChunk( | 42 void TraceControllerImpl::SendChunk( |
| 41 const scoped_refptr<base::RefCountedString>& events_str, | 43 const scoped_refptr<base::RefCountedString>& events_str, |
| 42 bool has_more_events) { | 44 bool has_more_events) { |
| 45 DCHECK(collector_); |
| 43 collector_->DataCollected(mojo::String(events_str->data())); | 46 collector_->DataCollected(mojo::String(events_str->data())); |
| 44 if (!has_more_events) { | 47 if (!has_more_events) { |
| 45 collector_.reset(); | 48 collector_.reset(); |
| 46 } | 49 } |
| 47 } | 50 } |
| 48 | 51 |
| 49 } // namespace mojo | 52 } // namespace mojo |
| OLD | NEW |