| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "services/tracing/trace_data_sink.h" | 5 #include "services/tracing/trace_data_sink.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "mojo/common/data_pipe_utils.h" | 8 #include "mojo/common/data_pipe_utils.h" |
| 9 | 9 |
| 10 using mojo::common::BlockingCopyFromString; | 10 using mojo::common::BlockingCopyFromString; |
| 11 | 11 |
| 12 namespace tracing { | 12 namespace tracing { |
| 13 namespace { | |
| 14 | |
| 15 const char kStart[] = "{\"traceEvents\":["; | |
| 16 const char kEnd[] = "]}"; | |
| 17 | |
| 18 } // namespace | |
| 19 | 13 |
| 20 TraceDataSink::TraceDataSink(mojo::ScopedDataPipeProducerHandle pipe) | 14 TraceDataSink::TraceDataSink(mojo::ScopedDataPipeProducerHandle pipe) |
| 21 : pipe_(pipe.Pass()), empty_(true) { | 15 : pipe_(pipe.Pass()), empty_(true) { |
| 22 BlockingCopyFromString(kStart, pipe_); | |
| 23 } | 16 } |
| 24 | 17 |
| 25 TraceDataSink::~TraceDataSink() { | 18 TraceDataSink::~TraceDataSink() { |
| 26 if (pipe_.is_valid()) | 19 if (pipe_.is_valid()) |
| 27 Flush(); | 20 pipe_.reset(); |
| 28 DCHECK(!pipe_.is_valid()); | 21 DCHECK(!pipe_.is_valid()); |
| 29 } | 22 } |
| 30 | 23 |
| 31 void TraceDataSink::AddChunk(const std::string& json) { | 24 void TraceDataSink::AddChunk(const std::string& json) { |
| 32 if (!empty_) | 25 if (!empty_) |
| 33 BlockingCopyFromString(",", pipe_); | 26 BlockingCopyFromString(",", pipe_); |
| 34 empty_ = false; | 27 empty_ = false; |
| 35 BlockingCopyFromString(json, pipe_); | 28 BlockingCopyFromString(json, pipe_); |
| 36 } | 29 } |
| 37 | 30 |
| 38 void TraceDataSink::Flush() { | |
| 39 BlockingCopyFromString(kEnd, pipe_); | |
| 40 pipe_.reset(); | |
| 41 } | |
| 42 | |
| 43 } // namespace tracing | 31 } // namespace tracing |
| OLD | NEW |