blob: 28fb5a7b262e226f446e03317154c3f80bf5dd50 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/mock_log.h"
#include <string>
using std::string;
namespace shill {
ScopedMockLog *ScopedMockLog::instance_ = NULL;
ScopedMockLog::ScopedMockLog() {
previous_handler_ = ::logging::GetLogMessageHandler();
::logging::SetLogMessageHandler(HandleLogMessages);
instance_ = this;
}
ScopedMockLog::~ScopedMockLog() {
::logging::SetLogMessageHandler(previous_handler_);
instance_ = NULL;
}
// static
bool ScopedMockLog::HandleLogMessages(int severity,
const char *file,
int line,
size_t message_start,
const string &full_message) {
CHECK(instance_);
// |full_message| looks like this:
// "[0514/165501:INFO:mock_log_unittest.cc(22)] Some message\n"
// The user wants to match just the substring "Some message". Strip off the
// extra stuff. |message_start| is the position where the user's message
// begins.
const string::size_type message_length =
full_message.length() - message_start - 1;
const string message(full_message, message_start, message_length);
// Call Log. Because Log is a mock method, this sets in motion the mocking
// magic.
instance_->Log(severity, file, message);
// Invoke the previously installed message handler if there was one.
if (instance_->previous_handler_ != NULL) {
return (*instance_->previous_handler_)(severity, file, line,
message_start, full_message);
}
// Return false so that messages show up on stderr.
return false;
}
} // namespace shill