[tracing] Warmup the ThreadLocalEventBuffer when MemoryInfra is enabled
[chromium-blink-merge.git] / base / trace_event / trace_event_impl.h
blob2922840bca2c7fb837ed4bfb6fe9e97efa86f3c1
1 // Copyright (c) 2012 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.
6 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_
7 #define BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_
9 #include <stack>
10 #include <string>
11 #include <vector>
13 #include "base/atomicops.h"
14 #include "base/base_export.h"
15 #include "base/callback.h"
16 #include "base/containers/hash_tables.h"
17 #include "base/gtest_prod_util.h"
18 #include "base/memory/ref_counted_memory.h"
19 #include "base/memory/scoped_vector.h"
20 #include "base/observer_list.h"
21 #include "base/single_thread_task_runner.h"
22 #include "base/strings/string_util.h"
23 #include "base/synchronization/condition_variable.h"
24 #include "base/synchronization/lock.h"
25 #include "base/threading/thread.h"
26 #include "base/threading/thread_local.h"
27 #include "base/trace_event/memory_dump_provider.h"
28 #include "base/trace_event/trace_config.h"
29 #include "base/trace_event/trace_event_memory_overhead.h"
31 // Older style trace macros with explicit id and extra data
32 // Only these macros result in publishing data to ETW as currently implemented.
33 // TODO(georgesak): Update/replace these with new ETW macros.
34 #define TRACE_EVENT_BEGIN_ETW(name, id, extra) \
35 base::trace_event::TraceLog::AddTraceEventEtw( \
36 TRACE_EVENT_PHASE_BEGIN, \
37 name, reinterpret_cast<const void*>(id), extra)
39 #define TRACE_EVENT_END_ETW(name, id, extra) \
40 base::trace_event::TraceLog::AddTraceEventEtw( \
41 TRACE_EVENT_PHASE_END, \
42 name, reinterpret_cast<const void*>(id), extra)
44 #define TRACE_EVENT_INSTANT_ETW(name, id, extra) \
45 base::trace_event::TraceLog::AddTraceEventEtw( \
46 TRACE_EVENT_PHASE_INSTANT, \
47 name, reinterpret_cast<const void*>(id), extra)
49 template <typename Type>
50 struct DefaultSingletonTraits;
52 namespace base {
54 class WaitableEvent;
55 class MessageLoop;
57 namespace trace_event {
59 // For any argument of type TRACE_VALUE_TYPE_CONVERTABLE the provided
60 // class must implement this interface.
61 class BASE_EXPORT ConvertableToTraceFormat
62 : public RefCounted<ConvertableToTraceFormat> {
63 public:
64 // Append the class info to the provided |out| string. The appended
65 // data must be a valid JSON object. Strings must be properly quoted, and
66 // escaped. There is no processing applied to the content after it is
67 // appended.
68 virtual void AppendAsTraceFormat(std::string* out) const = 0;
70 virtual void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead);
72 std::string ToString() const {
73 std::string result;
74 AppendAsTraceFormat(&result);
75 return result;
78 protected:
79 virtual ~ConvertableToTraceFormat() {}
81 private:
82 friend class RefCounted<ConvertableToTraceFormat>;
85 struct TraceEventHandle {
86 uint32 chunk_seq;
87 uint16 chunk_index;
88 uint16 event_index;
91 const int kTraceMaxNumArgs = 2;
93 class BASE_EXPORT TraceEvent {
94 public:
95 union TraceValue {
96 bool as_bool;
97 unsigned long long as_uint;
98 long long as_int;
99 double as_double;
100 const void* as_pointer;
101 const char* as_string;
104 TraceEvent();
105 ~TraceEvent();
107 // We don't need to copy TraceEvent except when TraceEventBuffer is cloned.
108 // Use explicit copy method to avoid accidentally misuse of copy.
109 void CopyFrom(const TraceEvent& other);
111 void Initialize(
112 int thread_id,
113 TraceTicks timestamp,
114 ThreadTicks thread_timestamp,
115 char phase,
116 const unsigned char* category_group_enabled,
117 const char* name,
118 unsigned long long id,
119 int num_args,
120 const char** arg_names,
121 const unsigned char* arg_types,
122 const unsigned long long* arg_values,
123 const scoped_refptr<ConvertableToTraceFormat>* convertable_values,
124 unsigned char flags);
126 void Reset();
128 void UpdateDuration(const TraceTicks& now, const ThreadTicks& thread_now);
130 void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead*);
132 // Serialize event data to JSON
133 typedef base::Callback<bool(const char* category_group_name,
134 const char* event_name)> ArgumentFilterPredicate;
135 void AppendAsJSON(
136 std::string* out,
137 const ArgumentFilterPredicate& argument_filter_predicate) const;
138 void AppendPrettyPrinted(std::ostringstream* out) const;
140 static void AppendValueAsJSON(unsigned char type,
141 TraceValue value,
142 std::string* out);
144 TraceTicks timestamp() const { return timestamp_; }
145 ThreadTicks thread_timestamp() const { return thread_timestamp_; }
146 char phase() const { return phase_; }
147 int thread_id() const { return thread_id_; }
148 TimeDelta duration() const { return duration_; }
149 TimeDelta thread_duration() const { return thread_duration_; }
150 unsigned long long id() const { return id_; }
151 unsigned char flags() const { return flags_; }
153 // Exposed for unittesting:
155 const base::RefCountedString* parameter_copy_storage() const {
156 return parameter_copy_storage_.get();
159 const unsigned char* category_group_enabled() const {
160 return category_group_enabled_;
163 const char* name() const { return name_; }
165 #if defined(OS_ANDROID)
166 void SendToATrace();
167 #endif
169 private:
170 // Note: these are ordered by size (largest first) for optimal packing.
171 TraceTicks timestamp_;
172 ThreadTicks thread_timestamp_;
173 TimeDelta duration_;
174 TimeDelta thread_duration_;
175 // id_ can be used to store phase-specific data.
176 unsigned long long id_;
177 scoped_ptr<TraceEventMemoryOverhead> cached_memory_overhead_estimate_;
178 TraceValue arg_values_[kTraceMaxNumArgs];
179 const char* arg_names_[kTraceMaxNumArgs];
180 scoped_refptr<ConvertableToTraceFormat> convertable_values_[kTraceMaxNumArgs];
181 const unsigned char* category_group_enabled_;
182 const char* name_;
183 scoped_refptr<base::RefCountedString> parameter_copy_storage_;
184 int thread_id_;
185 char phase_;
186 unsigned char flags_;
187 unsigned char arg_types_[kTraceMaxNumArgs];
189 DISALLOW_COPY_AND_ASSIGN(TraceEvent);
192 // TraceBufferChunk is the basic unit of TraceBuffer.
193 class BASE_EXPORT TraceBufferChunk {
194 public:
195 explicit TraceBufferChunk(uint32 seq);
196 ~TraceBufferChunk();
198 void Reset(uint32 new_seq);
199 TraceEvent* AddTraceEvent(size_t* event_index);
200 bool IsFull() const { return next_free_ == kTraceBufferChunkSize; }
202 uint32 seq() const { return seq_; }
203 size_t capacity() const { return kTraceBufferChunkSize; }
204 size_t size() const { return next_free_; }
206 TraceEvent* GetEventAt(size_t index) {
207 DCHECK(index < size());
208 return &chunk_[index];
210 const TraceEvent* GetEventAt(size_t index) const {
211 DCHECK(index < size());
212 return &chunk_[index];
215 scoped_ptr<TraceBufferChunk> Clone() const;
217 void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead);
219 static const size_t kTraceBufferChunkSize = 64;
221 private:
222 size_t next_free_;
223 scoped_ptr<TraceEventMemoryOverhead> cached_overhead_estimate_when_full_;
224 TraceEvent chunk_[kTraceBufferChunkSize];
225 uint32 seq_;
228 // TraceBuffer holds the events as they are collected.
229 class BASE_EXPORT TraceBuffer {
230 public:
231 virtual ~TraceBuffer() {}
233 virtual scoped_ptr<TraceBufferChunk> GetChunk(size_t *index) = 0;
234 virtual void ReturnChunk(size_t index,
235 scoped_ptr<TraceBufferChunk> chunk) = 0;
237 virtual bool IsFull() const = 0;
238 virtual size_t Size() const = 0;
239 virtual size_t Capacity() const = 0;
240 virtual TraceEvent* GetEventByHandle(TraceEventHandle handle) = 0;
242 // For iteration. Each TraceBuffer can only be iterated once.
243 virtual const TraceBufferChunk* NextChunk() = 0;
245 virtual scoped_ptr<TraceBuffer> CloneForIteration() const = 0;
247 // Computes an estimate of the size of the buffer, including all the retained
248 // objects.
249 virtual void EstimateTraceMemoryOverhead(
250 TraceEventMemoryOverhead* overhead) = 0;
253 // TraceResultBuffer collects and converts trace fragments returned by TraceLog
254 // to JSON output.
255 class BASE_EXPORT TraceResultBuffer {
256 public:
257 typedef base::Callback<void(const std::string&)> OutputCallback;
259 // If you don't need to stream JSON chunks out efficiently, and just want to
260 // get a complete JSON string after calling Finish, use this struct to collect
261 // JSON trace output.
262 struct BASE_EXPORT SimpleOutput {
263 OutputCallback GetCallback();
264 void Append(const std::string& json_string);
266 // Do what you want with the json_output_ string after calling
267 // TraceResultBuffer::Finish.
268 std::string json_output;
271 TraceResultBuffer();
272 ~TraceResultBuffer();
274 // Set callback. The callback will be called during Start with the initial
275 // JSON output and during AddFragment and Finish with following JSON output
276 // chunks. The callback target must live past the last calls to
277 // TraceResultBuffer::Start/AddFragment/Finish.
278 void SetOutputCallback(const OutputCallback& json_chunk_callback);
280 // Start JSON output. This resets all internal state, so you can reuse
281 // the TraceResultBuffer by calling Start.
282 void Start();
284 // Call AddFragment 0 or more times to add trace fragments from TraceLog.
285 void AddFragment(const std::string& trace_fragment);
287 // When all fragments have been added, call Finish to complete the JSON
288 // formatted output.
289 void Finish();
291 private:
292 OutputCallback output_callback_;
293 bool append_comma_;
296 class TraceSamplingThread;
298 struct BASE_EXPORT TraceLogStatus {
299 TraceLogStatus();
300 ~TraceLogStatus();
301 size_t event_capacity;
302 size_t event_count;
305 class BASE_EXPORT TraceLog : public MemoryDumpProvider {
306 public:
307 enum Mode {
308 DISABLED = 0,
309 RECORDING_MODE,
310 MONITORING_MODE,
313 // The pointer returned from GetCategoryGroupEnabledInternal() points to a
314 // value with zero or more of the following bits. Used in this class only.
315 // The TRACE_EVENT macros should only use the value as a bool.
316 // These values must be in sync with macro values in TraceEvent.h in Blink.
317 enum CategoryGroupEnabledFlags {
318 // Category group enabled for the recording mode.
319 ENABLED_FOR_RECORDING = 1 << 0,
320 // Category group enabled for the monitoring mode.
321 ENABLED_FOR_MONITORING = 1 << 1,
322 // Category group enabled by SetEventCallbackEnabled().
323 ENABLED_FOR_EVENT_CALLBACK = 1 << 2,
324 // Category group enabled to export events to ETW.
325 ENABLED_FOR_ETW_EXPORT = 1 << 3
328 static TraceLog* GetInstance();
330 // Get set of known category groups. This can change as new code paths are
331 // reached. The known category groups are inserted into |category_groups|.
332 void GetKnownCategoryGroups(std::vector<std::string>* category_groups);
334 // Retrieves a copy (for thread-safety) of the current TraceConfig.
335 TraceConfig GetCurrentTraceConfig() const;
337 // Initializes the thread-local event buffer, if not already initialized and
338 // if the current thread supports that (has a message loop).
339 void InitializeThreadLocalEventBufferIfSupported();
341 // Enables normal tracing (recording trace events in the trace buffer).
342 // See TraceConfig comments for details on how to control what categories
343 // will be traced. If tracing has already been enabled, |category_filter| will
344 // be merged into the current category filter.
345 void SetEnabled(const TraceConfig& trace_config, Mode mode);
347 // Disables normal tracing for all categories.
348 void SetDisabled();
350 bool IsEnabled() { return mode_ != DISABLED; }
352 // The number of times we have begun recording traces. If tracing is off,
353 // returns -1. If tracing is on, then it returns the number of times we have
354 // recorded a trace. By watching for this number to increment, you can
355 // passively discover when a new trace has begun. This is then used to
356 // implement the TRACE_EVENT_IS_NEW_TRACE() primitive.
357 int GetNumTracesRecorded();
359 #if defined(OS_ANDROID)
360 void StartATrace();
361 void StopATrace();
362 void AddClockSyncMetadataEvent();
363 #endif
365 // Enabled state listeners give a callback when tracing is enabled or
366 // disabled. This can be used to tie into other library's tracing systems
367 // on-demand.
368 class BASE_EXPORT EnabledStateObserver {
369 public:
370 // Called just after the tracing system becomes enabled, outside of the
371 // |lock_|. TraceLog::IsEnabled() is true at this point.
372 virtual void OnTraceLogEnabled() = 0;
374 // Called just after the tracing system disables, outside of the |lock_|.
375 // TraceLog::IsEnabled() is false at this point.
376 virtual void OnTraceLogDisabled() = 0;
378 void AddEnabledStateObserver(EnabledStateObserver* listener);
379 void RemoveEnabledStateObserver(EnabledStateObserver* listener);
380 bool HasEnabledStateObserver(EnabledStateObserver* listener) const;
382 TraceLogStatus GetStatus() const;
383 bool BufferIsFull() const;
385 // Computes an estimate of the size of the TraceLog including all the retained
386 // objects.
387 void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead);
389 // Not using base::Callback because of its limited by 7 parameters.
390 // Also, using primitive type allows directly passing callback from WebCore.
391 // WARNING: It is possible for the previously set callback to be called
392 // after a call to SetEventCallbackEnabled() that replaces or a call to
393 // SetEventCallbackDisabled() that disables the callback.
394 // This callback may be invoked on any thread.
395 // For TRACE_EVENT_PHASE_COMPLETE events, the client will still receive pairs
396 // of TRACE_EVENT_PHASE_BEGIN and TRACE_EVENT_PHASE_END events to keep the
397 // interface simple.
398 typedef void (*EventCallback)(TraceTicks timestamp,
399 char phase,
400 const unsigned char* category_group_enabled,
401 const char* name,
402 unsigned long long id,
403 int num_args,
404 const char* const arg_names[],
405 const unsigned char arg_types[],
406 const unsigned long long arg_values[],
407 unsigned char flags);
409 // Enable tracing for EventCallback.
410 void SetEventCallbackEnabled(const TraceConfig& trace_config,
411 EventCallback cb);
412 void SetEventCallbackDisabled();
413 void SetArgumentFilterPredicate(
414 const TraceEvent::ArgumentFilterPredicate& argument_filter_predicate);
416 // Flush all collected events to the given output callback. The callback will
417 // be called one or more times either synchronously or asynchronously from
418 // the current thread with IPC-bite-size chunks. The string format is
419 // undefined. Use TraceResultBuffer to convert one or more trace strings to
420 // JSON. The callback can be null if the caller doesn't want any data.
421 // Due to the implementation of thread-local buffers, flush can't be
422 // done when tracing is enabled. If called when tracing is enabled, the
423 // callback will be called directly with (empty_string, false) to indicate
424 // the end of this unsuccessful flush. Flush does the serialization
425 // on the same thread if the caller doesn't set use_worker_thread explicitly.
426 typedef base::Callback<void(const scoped_refptr<base::RefCountedString>&,
427 bool has_more_events)> OutputCallback;
428 void Flush(const OutputCallback& cb, bool use_worker_thread = false);
429 void FlushButLeaveBufferIntact(const OutputCallback& flush_output_callback);
431 // Called by TRACE_EVENT* macros, don't call this directly.
432 // The name parameter is a category group for example:
433 // TRACE_EVENT0("renderer,webkit", "WebViewImpl::HandleInputEvent")
434 static const unsigned char* GetCategoryGroupEnabled(const char* name);
435 static const char* GetCategoryGroupName(
436 const unsigned char* category_group_enabled);
438 // Called by TRACE_EVENT* macros, don't call this directly.
439 // If |copy| is set, |name|, |arg_name1| and |arg_name2| will be deep copied
440 // into the event; see "Memory scoping note" and TRACE_EVENT_COPY_XXX above.
441 TraceEventHandle AddTraceEvent(
442 char phase,
443 const unsigned char* category_group_enabled,
444 const char* name,
445 unsigned long long id,
446 int num_args,
447 const char** arg_names,
448 const unsigned char* arg_types,
449 const unsigned long long* arg_values,
450 const scoped_refptr<ConvertableToTraceFormat>* convertable_values,
451 unsigned char flags);
452 TraceEventHandle AddTraceEventWithThreadIdAndTimestamp(
453 char phase,
454 const unsigned char* category_group_enabled,
455 const char* name,
456 unsigned long long id,
457 int thread_id,
458 const TraceTicks& timestamp,
459 int num_args,
460 const char** arg_names,
461 const unsigned char* arg_types,
462 const unsigned long long* arg_values,
463 const scoped_refptr<ConvertableToTraceFormat>* convertable_values,
464 unsigned char flags);
465 static void AddTraceEventEtw(char phase,
466 const char* category_group,
467 const void* id,
468 const char* extra);
469 static void AddTraceEventEtw(char phase,
470 const char* category_group,
471 const void* id,
472 const std::string& extra);
474 void UpdateTraceEventDuration(const unsigned char* category_group_enabled,
475 const char* name,
476 TraceEventHandle handle);
478 // For every matching event, the callback will be called.
479 typedef base::Callback<void()> WatchEventCallback;
480 void SetWatchEvent(const std::string& category_name,
481 const std::string& event_name,
482 const WatchEventCallback& callback);
483 // Cancel the watch event. If tracing is enabled, this may race with the
484 // watch event notification firing.
485 void CancelWatchEvent();
487 int process_id() const { return process_id_; }
489 uint64 MangleEventId(uint64 id);
491 // Exposed for unittesting:
493 void WaitSamplingEventForTesting();
495 // Allows deleting our singleton instance.
496 static void DeleteForTesting();
498 // Allow tests to inspect TraceEvents.
499 TraceEvent* GetEventByHandle(TraceEventHandle handle);
501 void SetProcessID(int process_id);
503 // Process sort indices, if set, override the order of a process will appear
504 // relative to other processes in the trace viewer. Processes are sorted first
505 // on their sort index, ascending, then by their name, and then tid.
506 void SetProcessSortIndex(int sort_index);
508 // Sets the name of the process.
509 void SetProcessName(const std::string& process_name);
511 // Processes can have labels in addition to their names. Use labels, for
512 // instance, to list out the web page titles that a process is handling.
513 void UpdateProcessLabel(int label_id, const std::string& current_label);
514 void RemoveProcessLabel(int label_id);
516 // Thread sort indices, if set, override the order of a thread will appear
517 // within its process in the trace viewer. Threads are sorted first on their
518 // sort index, ascending, then by their name, and then tid.
519 void SetThreadSortIndex(PlatformThreadId , int sort_index);
521 // Allow setting an offset between the current TraceTicks time and the time
522 // that should be reported.
523 void SetTimeOffset(TimeDelta offset);
525 size_t GetObserverCountForTest() const;
527 // Call this method if the current thread may block the message loop to
528 // prevent the thread from using the thread-local buffer because the thread
529 // may not handle the flush request in time causing lost of unflushed events.
530 void SetCurrentThreadBlocksMessageLoop();
532 private:
533 typedef unsigned int InternalTraceOptions;
535 FRIEND_TEST_ALL_PREFIXES(TraceEventTestFixture,
536 TraceBufferRingBufferGetReturnChunk);
537 FRIEND_TEST_ALL_PREFIXES(TraceEventTestFixture,
538 TraceBufferRingBufferHalfIteration);
539 FRIEND_TEST_ALL_PREFIXES(TraceEventTestFixture,
540 TraceBufferRingBufferFullIteration);
541 FRIEND_TEST_ALL_PREFIXES(TraceEventTestFixture,
542 TraceBufferVectorReportFull);
543 FRIEND_TEST_ALL_PREFIXES(TraceEventTestFixture,
544 ConvertTraceConfigToInternalOptions);
545 FRIEND_TEST_ALL_PREFIXES(TraceEventTestFixture,
546 TraceRecordAsMuchAsPossibleMode);
548 // This allows constructor and destructor to be private and usable only
549 // by the Singleton class.
550 friend struct DefaultSingletonTraits<TraceLog>;
552 // MemoryDumpProvider implementation.
553 bool OnMemoryDump(ProcessMemoryDump* pmd) override;
555 // Enable/disable each category group based on the current mode_,
556 // category_filter_, event_callback_ and event_callback_category_filter_.
557 // Enable the category group in the enabled mode if category_filter_ matches
558 // the category group, or event_callback_ is not null and
559 // event_callback_category_filter_ matches the category group.
560 void UpdateCategoryGroupEnabledFlags();
561 void UpdateCategoryGroupEnabledFlag(size_t category_index);
563 // Configure synthetic delays based on the values set in the current
564 // trace config.
565 void UpdateSyntheticDelaysFromTraceConfig();
567 InternalTraceOptions GetInternalOptionsFromTraceConfig(
568 const TraceConfig& config);
570 class ThreadLocalEventBuffer;
571 class OptionalAutoLock;
573 TraceLog();
574 ~TraceLog() override;
575 const unsigned char* GetCategoryGroupEnabledInternal(const char* name);
576 void AddMetadataEventsWhileLocked();
578 InternalTraceOptions trace_options() const {
579 return static_cast<InternalTraceOptions>(
580 subtle::NoBarrier_Load(&trace_options_));
583 TraceBuffer* trace_buffer() const { return logged_events_.get(); }
584 TraceBuffer* CreateTraceBuffer();
585 TraceBuffer* CreateTraceBufferVectorOfSize(size_t max_chunks);
587 std::string EventToConsoleMessage(unsigned char phase,
588 const TraceTicks& timestamp,
589 TraceEvent* trace_event);
591 TraceEvent* AddEventToThreadSharedChunkWhileLocked(TraceEventHandle* handle,
592 bool check_buffer_is_full);
593 void CheckIfBufferIsFullWhileLocked();
594 void SetDisabledWhileLocked();
596 TraceEvent* GetEventByHandleInternal(TraceEventHandle handle,
597 OptionalAutoLock* lock);
599 // |generation| is used in the following callbacks to check if the callback
600 // is called for the flush of the current |logged_events_|.
601 void FlushCurrentThread(int generation);
602 // Usually it runs on a different thread.
603 static void ConvertTraceEventsToTraceFormat(
604 scoped_ptr<TraceBuffer> logged_events,
605 const TraceLog::OutputCallback& flush_output_callback,
606 const TraceEvent::ArgumentFilterPredicate& argument_filter_predicate);
607 void FinishFlush(int generation);
608 void OnFlushTimeout(int generation);
610 int generation() const {
611 return static_cast<int>(subtle::NoBarrier_Load(&generation_));
613 bool CheckGeneration(int generation) const {
614 return generation == this->generation();
616 void UseNextTraceBuffer();
618 TraceTicks OffsetNow() const {
619 return OffsetTimestamp(TraceTicks::Now());
621 TraceTicks OffsetTimestamp(const TraceTicks& timestamp) const {
622 return timestamp - time_offset_;
625 // Internal representation of trace options since we store the currently used
626 // trace option as an AtomicWord.
627 static const InternalTraceOptions kInternalNone;
628 static const InternalTraceOptions kInternalRecordUntilFull;
629 static const InternalTraceOptions kInternalRecordContinuously;
630 static const InternalTraceOptions kInternalEchoToConsole;
631 static const InternalTraceOptions kInternalEnableSampling;
632 static const InternalTraceOptions kInternalRecordAsMuchAsPossible;
633 static const InternalTraceOptions kInternalEnableArgumentFilter;
635 // This lock protects TraceLog member accesses (except for members protected
636 // by thread_info_lock_) from arbitrary threads.
637 mutable Lock lock_;
638 // This lock protects accesses to thread_names_, thread_event_start_times_
639 // and thread_colors_.
640 Lock thread_info_lock_;
641 Mode mode_;
642 int num_traces_recorded_;
643 scoped_ptr<TraceBuffer> logged_events_;
644 subtle::AtomicWord /* EventCallback */ event_callback_;
645 bool dispatching_to_observer_list_;
646 std::vector<EnabledStateObserver*> enabled_state_observer_list_;
648 std::string process_name_;
649 base::hash_map<int, std::string> process_labels_;
650 int process_sort_index_;
651 base::hash_map<int, int> thread_sort_indices_;
652 base::hash_map<int, std::string> thread_names_;
654 // The following two maps are used only when ECHO_TO_CONSOLE.
655 base::hash_map<int, std::stack<TraceTicks> > thread_event_start_times_;
656 base::hash_map<std::string, int> thread_colors_;
658 TraceTicks buffer_limit_reached_timestamp_;
660 // XORed with TraceID to make it unlikely to collide with other processes.
661 unsigned long long process_id_hash_;
663 int process_id_;
665 TimeDelta time_offset_;
667 // Allow tests to wake up when certain events occur.
668 WatchEventCallback watch_event_callback_;
669 subtle::AtomicWord /* const unsigned char* */ watch_category_;
670 std::string watch_event_name_;
672 subtle::AtomicWord /* Options */ trace_options_;
674 // Sampling thread handles.
675 scoped_ptr<TraceSamplingThread> sampling_thread_;
676 PlatformThreadHandle sampling_thread_handle_;
678 TraceConfig trace_config_;
679 TraceConfig event_callback_trace_config_;
681 ThreadLocalPointer<ThreadLocalEventBuffer> thread_local_event_buffer_;
682 ThreadLocalBoolean thread_blocks_message_loop_;
683 ThreadLocalBoolean thread_is_in_trace_event_;
685 // Contains the message loops of threads that have had at least one event
686 // added into the local event buffer. Not using SingleThreadTaskRunner
687 // because we need to know the life time of the message loops.
688 hash_set<MessageLoop*> thread_message_loops_;
690 // For events which can't be added into the thread local buffer, e.g. events
691 // from threads without a message loop.
692 scoped_ptr<TraceBufferChunk> thread_shared_chunk_;
693 size_t thread_shared_chunk_index_;
695 // Set when asynchronous Flush is in progress.
696 OutputCallback flush_output_callback_;
697 scoped_refptr<SingleThreadTaskRunner> flush_task_runner_;
698 TraceEvent::ArgumentFilterPredicate argument_filter_predicate_;
699 subtle::AtomicWord generation_;
700 bool use_worker_thread_;
702 DISALLOW_COPY_AND_ASSIGN(TraceLog);
705 } // namespace trace_event
706 } // namespace base
708 #endif // BASE_TRACE_EVENT_TRACE_EVENT_IMPL_H_