Chromium Code Reviews| 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 version number for the name of the current thread. This is used to |
| 69 LazyInstance<ThreadLocalPointer<const char> >::Leaky | 69 // decide if the current thread name has changed. We combine all the seen |
| 70 g_current_thread_name = LAZY_INSTANCE_INITIALIZER; | 70 // thread names into the output name for the thread. We can't use the pointer |
| 71 // as ThreadIdNameManager has a higher chance of giving us the same memory | |
|
jar (doing other things)
2012/12/26 22:41:11
I still don't get the use case.
I think you're say
| |
| 72 // address. | |
| 73 uint32 g_current_thread_name_version = 0; | |
| 71 | 74 |
| 72 } // namespace | 75 } // namespace |
| 73 | 76 |
| 74 //////////////////////////////////////////////////////////////////////////////// | 77 //////////////////////////////////////////////////////////////////////////////// |
| 75 // | 78 // |
| 76 // TraceEvent | 79 // TraceEvent |
| 77 // | 80 // |
| 78 //////////////////////////////////////////////////////////////////////////////// | 81 //////////////////////////////////////////////////////////////////////////////// |
| 79 | 82 |
| 80 namespace { | 83 namespace { |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 628 TimeTicks now = TimeTicks::NowFromSystemTraceTime() - time_offset_; | 631 TimeTicks now = TimeTicks::NowFromSystemTraceTime() - time_offset_; |
| 629 NotificationHelper notifier(this); | 632 NotificationHelper notifier(this); |
| 630 { | 633 { |
| 631 AutoLock lock(lock_); | 634 AutoLock lock(lock_); |
| 632 if (*category_enabled != CATEGORY_ENABLED) | 635 if (*category_enabled != CATEGORY_ENABLED) |
| 633 return; | 636 return; |
| 634 if (logged_events_.size() >= kTraceEventBufferSize) | 637 if (logged_events_.size() >= kTraceEventBufferSize) |
| 635 return; | 638 return; |
| 636 | 639 |
| 637 int thread_id = static_cast<int>(PlatformThread::CurrentId()); | 640 int thread_id = static_cast<int>(PlatformThread::CurrentId()); |
| 641 ThreadIdNameManager* manager = ThreadIdNameManager::GetInstance(); | |
| 642 const char* new_name = manager->GetNameForId(thread_id); | |
| 643 uint32 new_version = manager->GetVersionForId(thread_id); | |
| 638 | 644 |
| 639 const char* new_name = PlatformThread::GetName(); | |
| 640 // Check if the thread name has been set or changed since the previous | 645 // 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 | 646 // 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 | 647 // not detect a thread name change within the same char* buffer address: we |
| 643 // favor common case performance over corner case correctness. | 648 // favor common case performance over corner case correctness. |
| 644 if (new_name != g_current_thread_name.Get().Get() && | 649 if (new_version != g_current_thread_name_version && |
| 645 new_name && *new_name) { | 650 new_name && *new_name) { |
| 646 g_current_thread_name.Get().Set(new_name); | 651 g_current_thread_name_version = new_version; |
| 652 | |
| 647 base::hash_map<int, std::string>::iterator existing_name = | 653 base::hash_map<int, std::string>::iterator existing_name = |
| 648 thread_names_.find(thread_id); | 654 thread_names_.find(thread_id); |
| 649 if (existing_name == thread_names_.end()) { | 655 if (existing_name == thread_names_.end()) { |
| 650 // This is a new thread id, and a new name. | 656 // This is a new thread id, and a new name. |
| 651 thread_names_[thread_id] = new_name; | 657 thread_names_[thread_id] = new_name; |
| 652 } else { | 658 } else { |
| 653 // This is a thread id that we've seen before, but potentially with a | 659 // This is a thread id that we've seen before, but potentially with a |
| 654 // new name. | 660 // new name. |
| 655 std::vector<base::StringPiece> existing_names; | 661 std::vector<base::StringPiece> existing_names; |
| 656 Tokenize(existing_name->second, ",", &existing_names); | 662 Tokenize(existing_name->second, ",", &existing_names); |
| (...skipping 123 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 |