OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/debug/trace_event_impl.h" | 5 #include "base/debug/trace_event_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/debug/leak_annotations.h" | 10 #include "base/debug/leak_annotations.h" |
11 #include "base/debug/trace_event.h" | 11 #include "base/debug/trace_event.h" |
12 #include "base/format_macros.h" | 12 #include "base/format_macros.h" |
13 #include "base/lazy_instance.h" | |
14 #include "base/memory/singleton.h" | 13 #include "base/memory/singleton.h" |
15 #include "base/process_util.h" | 14 #include "base/process_util.h" |
16 #include "base/stl_util.h" | 15 #include "base/stl_util.h" |
17 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
18 #include "base/string_tokenizer.h" | 17 #include "base/string_tokenizer.h" |
19 #include "base/string_util.h" | 18 #include "base/string_util.h" |
20 #include "base/sys_info.h" | 19 #include "base/sys_info.h" |
21 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" | 20 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" |
22 #include "base/threading/platform_thread.h" | 21 #include "base/threading/platform_thread.h" |
22 #include "base/threading/thread_id_name_manager.h" | |
23 #include "base/threading/thread_local.h" | 23 #include "base/threading/thread_local.h" |
24 #include "base/time.h" | 24 #include "base/time.h" |
25 #include "base/utf_string_conversions.h" | 25 #include "base/utf_string_conversions.h" |
26 | 26 |
27 #if defined(OS_WIN) | 27 #if defined(OS_WIN) |
28 #include "base/debug/trace_event_win.h" | 28 #include "base/debug/trace_event_win.h" |
29 #endif | 29 #endif |
30 | 30 |
31 class DeleteTraceLogForTesting { | 31 class DeleteTraceLogForTesting { |
32 public: | 32 public: |
(...skipping 25 matching lines...) Expand all Loading... | |
58 "tracing categories exhausted; must increase TRACE_EVENT_MAX_CATEGORIES", | 58 "tracing categories exhausted; must increase TRACE_EVENT_MAX_CATEGORIES", |
59 "__metadata", | 59 "__metadata", |
60 }; | 60 }; |
61 // The enabled flag is char instead of bool so that the API can be used from C. | 61 // The enabled flag is char instead of bool so that the API can be used from C. |
62 unsigned char g_category_enabled[TRACE_EVENT_MAX_CATEGORIES] = { 0 }; | 62 unsigned char g_category_enabled[TRACE_EVENT_MAX_CATEGORIES] = { 0 }; |
63 const int g_category_already_shutdown = 0; | 63 const int g_category_already_shutdown = 0; |
64 const int g_category_categories_exhausted = 1; | 64 const int g_category_categories_exhausted = 1; |
65 const int g_category_metadata = 2; | 65 const int g_category_metadata = 2; |
66 int g_category_index = 3; // skip initial 3 categories | 66 int g_category_index = 3; // skip initial 3 categories |
67 | 67 |
68 // The most-recently captured name of the current thread | 68 // The name of the current thread. This is used to decide if the current |
69 LazyInstance<ThreadLocalPointer<const char> >::Leaky | 69 // thread name has changed. We combine all the seen thread names into the |
70 g_current_thread_name = LAZY_INSTANCE_INITIALIZER; | 70 // output name for the thread. |
71 base::InternedString g_current_thread_interned_name = | |
jar (doing other things)
2013/01/14 19:27:57
I was expecting such a thing to be in TLS, and it'
dsinclair
2013/01/14 22:26:09
Thanks for pointing that out, lost the ThreadLocal
| |
72 base::kDefaultInternedString; | |
71 | 73 |
72 } // namespace | 74 } // namespace |
73 | 75 |
74 //////////////////////////////////////////////////////////////////////////////// | 76 //////////////////////////////////////////////////////////////////////////////// |
75 // | 77 // |
76 // TraceEvent | 78 // TraceEvent |
77 // | 79 // |
78 //////////////////////////////////////////////////////////////////////////////// | 80 //////////////////////////////////////////////////////////////////////////////// |
79 | 81 |
80 namespace { | 82 namespace { |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
628 TimeTicks now = TimeTicks::NowFromSystemTraceTime() - time_offset_; | 630 TimeTicks now = TimeTicks::NowFromSystemTraceTime() - time_offset_; |
629 NotificationHelper notifier(this); | 631 NotificationHelper notifier(this); |
630 { | 632 { |
631 AutoLock lock(lock_); | 633 AutoLock lock(lock_); |
632 if (*category_enabled != CATEGORY_ENABLED) | 634 if (*category_enabled != CATEGORY_ENABLED) |
633 return; | 635 return; |
634 if (logged_events_.size() >= kTraceEventBufferSize) | 636 if (logged_events_.size() >= kTraceEventBufferSize) |
635 return; | 637 return; |
636 | 638 |
637 int thread_id = static_cast<int>(PlatformThread::CurrentId()); | 639 int thread_id = static_cast<int>(PlatformThread::CurrentId()); |
640 ThreadIdNameManager* manager = ThreadIdNameManager::GetInstance(); | |
641 InternedString interned_name = manager->GetInternedName(thread_id); | |
638 | 642 |
639 const char* new_name = PlatformThread::GetName(); | |
640 // Check if the thread name has been set or changed since the previous | 643 // Check if the thread name has been set or changed since the previous |
641 // call (if any), but don't bother if the new name is empty. Note this will | 644 // call (if any), but don't bother if the new name is empty. Note this will |
642 // not detect a thread name change within the same char* buffer address: we | 645 // not detect a thread name change within the same char* buffer address: we |
643 // favor common case performance over corner case correctness. | 646 // favor common case performance over corner case correctness. |
644 if (new_name != g_current_thread_name.Get().Get() && | 647 if (interned_name != g_current_thread_interned_name) { |
jar (doing other things)
2013/01/14 19:27:57
How does this work without racing access to the gl
dsinclair
2013/01/14 22:26:09
Moved the storage to a thread local. There is an A
jar (doing other things)
2013/01/17 23:18:39
Shouldn't there be a test that would break if we d
dsinclair
2013/01/21 19:14:18
I'm not exactly sure how to write that test. Any s
| |
645 new_name && *new_name) { | 648 const char* new_name = manager->GetInternedStringValue(interned_name); |
646 g_current_thread_name.Get().Set(new_name); | 649 if (new_name && *new_name) { |
647 base::hash_map<int, std::string>::iterator existing_name = | 650 g_current_thread_interned_name = interned_name; |
648 thread_names_.find(thread_id); | 651 |
649 if (existing_name == thread_names_.end()) { | 652 base::hash_map<int, std::string>::iterator existing_name = |
650 // This is a new thread id, and a new name. | 653 thread_names_.find(thread_id); |
651 thread_names_[thread_id] = new_name; | 654 if (existing_name == thread_names_.end()) { |
652 } else { | 655 // This is a new thread id, and a new name. |
653 // This is a thread id that we've seen before, but potentially with a | 656 thread_names_[thread_id] = new_name; |
654 // new name. | 657 } else { |
655 std::vector<base::StringPiece> existing_names; | 658 // This is a thread id that we've seen before, but potentially with a |
656 Tokenize(existing_name->second, ",", &existing_names); | 659 // new name. |
657 bool found = std::find(existing_names.begin(), | 660 std::vector<base::StringPiece> existing_names; |
658 existing_names.end(), | 661 Tokenize(existing_name->second, ",", &existing_names); |
659 new_name) != existing_names.end(); | 662 bool found = std::find(existing_names.begin(), |
660 if (!found) { | 663 existing_names.end(), |
661 existing_name->second.push_back(','); | 664 new_name) != existing_names.end(); |
662 existing_name->second.append(new_name); | 665 if (!found) { |
666 existing_name->second.push_back(','); | |
667 existing_name->second.append(new_name); | |
668 } | |
663 } | 669 } |
664 } | 670 } |
665 } | 671 } |
666 | 672 |
667 if (flags & TRACE_EVENT_FLAG_MANGLE_ID) | 673 if (flags & TRACE_EVENT_FLAG_MANGLE_ID) |
668 id ^= process_id_hash_; | 674 id ^= process_id_hash_; |
669 | 675 |
670 logged_events_.push_back( | 676 logged_events_.push_back( |
671 TraceEvent(thread_id, | 677 TraceEvent(thread_id, |
672 now, phase, category_enabled, name, id, | 678 now, phase, category_enabled, name, id, |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
780 unsigned long long pid = static_cast<unsigned long long>(process_id_); | 786 unsigned long long pid = static_cast<unsigned long long>(process_id_); |
781 process_id_hash_ = (offset_basis ^ pid) * fnv_prime; | 787 process_id_hash_ = (offset_basis ^ pid) * fnv_prime; |
782 } | 788 } |
783 | 789 |
784 void TraceLog::SetTimeOffset(TimeDelta offset) { | 790 void TraceLog::SetTimeOffset(TimeDelta offset) { |
785 time_offset_ = offset; | 791 time_offset_ = offset; |
786 } | 792 } |
787 | 793 |
788 } // namespace debug | 794 } // namespace debug |
789 } // namespace base | 795 } // namespace base |
OLD | NEW |