Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: services/resource_coordinator/public/interfaces/tracing/tracing.mojom

Issue 2723773002: tracing: Introduce mojo Interfaces (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « services/resource_coordinator/public/interfaces/tracing/OWNERS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module resource_coordinator.tracing.mojom;
6
7 import "mojo/common/time.mojom";
8 import "mojo/common/values.mojom";
9
10 // The JSON type of data coming from a tracing agents.
11 //
12 // - All agents with the same label should have the same type.
13 // - There can be multiple agents with the same label, if their data type is
14 // ARRAY. Their data will be concatenated together and separated by commas.
15 // - There can be only one agent with data type STRING.
16 enum TraceDataType {
17 ARRAY,
18 STRING
19 };
20
21 // Tracing agents, like |chrome|, |etw|, |battor|, and |cros|, use this
22 // interface to register themselves to the tracing service.
23 interface Factory {
24 RegisterAgent(Agent agent, string name, string label, TraceDataType type,
25 bool supports_explicit_clock_sync_);
26 };
27
28 // There should be at most one implementation of this interface per process.
29 // When the tracing service calls |StopAndFlush| on an agent, the agent begins
30 // serializing data into the recorder that was given in the |StartTracing| call.
31 // When finished, the agent should close the recorder connection to signal the
32 // tracing service that no more data will be sent.
33 interface Agent {
34 StartTracing(string categories, Recorder recorder);
35 StopAndFlush();
36 RequestClockSyncMarker() => (mojo.common.mojom.TimeTicks issue_ts,
37 mojo.common.mojom.TimeTicks issue_end_ts);
38 RequestBufferStatus() => (uint32 capacity, uint32 count);
39 };
40
41 // An agent can make several calls to |AddChunk|. Chunks will be concatenated
42 // with no separator (type STRING) or using comma as the separator (type ARRAY).
43 // There should be only one agent of type STRING per agent label; otherwise
44 // their trace data would be mixed up.
45 interface Recorder {
46 AddChunk(string chunk);
47 AddMetadata(mojo.common.mojom.DictionaryValue metadata);
48 };
49
50 // A tracing controller uses this interface to coordinate trace data collection
51 // from all registered agents. At any given time, there should be at most one
52 // connected controller.
53 interface Coordinator {
54 StartTracing(handle<data_pipe_producer> stream, string categories);
55 StopAndFlush();
56 IsTracing() => (bool is_tracing);
57 RequestBufferUsage() => (float percent_full, uint32 approximate_count);
58 };
OLDNEW
« no previous file with comments | « services/resource_coordinator/public/interfaces/tracing/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698