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

Side by Side Diff: base/test/mock_log.cc

Issue 2034393004: Allow multiple logging::LogMessage{Handler,Listener}s Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use ReadWriteLock, add comments Created 4 years, 4 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/memory/ptr_util.h"
5 #include "base/test/mock_log.h" 6 #include "base/test/mock_log.h"
6 7
7 namespace base { 8 namespace base {
8 namespace test { 9 namespace test {
9 10
10 // static 11 class MockLogMessageListener : logging::LogMessageListener {
11 MockLog* MockLog::g_instance_ = nullptr; 12 public:
12 Lock MockLog::g_lock; 13 MockLogMessageListener(MockLog* mock_log) : mock_log_(mock_log) {}
14 void OnMessage(int severity,
15 const char* file,
16 int line,
17 size_t message_start,
18 const std::string& str) override {
19 return mock_log_->Log(severity, file, line, message_start, str);
20 }
21
22 private:
23 MockLog* mock_log_;
24 };
13 25
14 MockLog::MockLog() : is_capturing_logs_(false) { 26 MockLog::MockLog() : is_capturing_logs_(false) {
15 } 27 }
16 28
17 MockLog::~MockLog() { 29 MockLog::~MockLog() {
18 if (is_capturing_logs_) { 30 if (is_capturing_logs_) {
19 StopCapturingLogs(); 31 StopCapturingLogs();
20 } 32 }
21 } 33 }
22 34
23 void MockLog::StartCapturingLogs() { 35 void MockLog::StartCapturingLogs() {
24 AutoLock scoped_lock(g_lock);
25
26 // We don't use CHECK(), which can generate a new LOG message, and 36 // We don't use CHECK(), which can generate a new LOG message, and
27 // thus can confuse MockLog objects or other registered 37 // thus can confuse MockLog objects or other registered
28 // LogSinks. 38 // LogSinks.
29 RAW_CHECK(!is_capturing_logs_); 39 RAW_CHECK(!is_capturing_logs_);
30 RAW_CHECK(!g_instance_);
31 40
32 is_capturing_logs_ = true; 41 is_capturing_logs_ = true;
33 g_instance_ = this; 42 listener_ = base::MakeUnique<MockLogMessageListener>(this);
34 previous_handler_ = logging::GetLogMessageHandler();
35 logging::SetLogMessageHandler(LogMessageHandler);
36 } 43 }
37 44
38 void MockLog::StopCapturingLogs() { 45 void MockLog::StopCapturingLogs() {
39 AutoLock scoped_lock(g_lock);
40
41 // We don't use CHECK(), which can generate a new LOG message, and 46 // We don't use CHECK(), which can generate a new LOG message, and
42 // thus can confuse MockLog objects or other registered 47 // thus can confuse MockLog objects or other registered
43 // LogSinks. 48 // LogSinks.
44 RAW_CHECK(is_capturing_logs_); 49 RAW_CHECK(is_capturing_logs_);
45 RAW_CHECK(g_instance_ == this);
46 50
47 is_capturing_logs_ = false; 51 is_capturing_logs_ = false;
48 logging::SetLogMessageHandler(previous_handler_); 52 listener_.reset();
49 g_instance_ = nullptr;
50 }
51
52 // static
53 bool MockLog::LogMessageHandler(int severity,
54 const char* file,
55 int line,
56 size_t message_start,
57 const std::string& str) {
58 // gMock guarantees thread-safety for calling a mocked method
59 // (https://github.com/google/googlemock/blob/master/googlemock/docs/CookBook. md#using-google-mock-and-threads)
60 // but we also need to make sure that Start/StopCapturingLogs are synchronized
61 // with LogMessageHandler.
62 AutoLock scoped_lock(g_lock);
63
64 return g_instance_->Log(severity, file, line, message_start, str);
65 } 53 }
66 54
67 } // namespace test 55 } // namespace test
68 } // namespace base 56 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698