2015-03-14 07:06:01 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-08-05 01:09:39 +02:00
|
|
|
#if defined(_WIN32)
|
2015-05-20 07:12:06 +02:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2015-12-05 07:00:26 +01:00
|
|
|
#include "android-base/logging.h"
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-08-05 01:09:39 +02:00
|
|
|
#include <fcntl.h>
|
2018-03-16 22:25:42 +01:00
|
|
|
#include <inttypes.h>
|
2015-04-03 20:28:46 +02:00
|
|
|
#include <libgen.h>
|
2016-06-21 23:25:44 +02:00
|
|
|
#include <time.h>
|
2015-04-03 20:28:46 +02:00
|
|
|
|
|
|
|
// For getprogname(3) or program_invocation_short_name.
|
|
|
|
#if defined(__ANDROID__) || defined(__APPLE__)
|
|
|
|
#include <stdlib.h>
|
|
|
|
#elif defined(__GLIBC__)
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
|
|
|
|
2016-08-05 01:09:39 +02:00
|
|
|
#if defined(__linux__)
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#endif
|
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <limits>
|
2016-09-13 23:57:12 +02:00
|
|
|
#include <mutex>
|
2015-03-14 07:06:01 +01:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
2015-03-27 19:20:14 +01:00
|
|
|
#include <utility>
|
2015-03-14 07:06:01 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
// Headers for LogMessage::LogLine.
|
|
|
|
#ifdef __ANDROID__
|
2018-02-15 20:40:30 +01:00
|
|
|
#include <android/log.h>
|
2015-03-14 07:06:01 +01:00
|
|
|
#include <android/set_abort_message.h>
|
|
|
|
#else
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2018-10-19 22:59:44 +02:00
|
|
|
#include <android-base/file.h>
|
2016-09-29 00:54:45 +02:00
|
|
|
#include <android-base/macros.h>
|
2018-04-06 18:40:26 +02:00
|
|
|
#include <android-base/parseint.h>
|
2016-09-29 00:54:45 +02:00
|
|
|
#include <android-base/strings.h>
|
2018-03-16 22:25:42 +01:00
|
|
|
#include <android-base/threads.h>
|
2015-11-11 19:02:29 +01:00
|
|
|
|
2018-06-06 21:54:41 +02:00
|
|
|
namespace android {
|
|
|
|
namespace base {
|
|
|
|
|
|
|
|
// BSD-based systems like Android/macOS have getprogname(). Others need us to provide one.
|
|
|
|
#if defined(__GLIBC__) || defined(_WIN32)
|
|
|
|
static const char* getprogname() {
|
2015-04-29 20:32:23 +02:00
|
|
|
#if defined(__GLIBC__)
|
|
|
|
return program_invocation_short_name;
|
2016-09-13 23:57:12 +02:00
|
|
|
#elif defined(_WIN32)
|
2015-04-29 20:32:23 +02:00
|
|
|
static bool first = true;
|
|
|
|
static char progname[MAX_PATH] = {};
|
|
|
|
|
|
|
|
if (first) {
|
2018-10-19 22:59:44 +02:00
|
|
|
snprintf(progname, sizeof(progname), "%s",
|
|
|
|
android::base::Basename(android::base::GetExecutablePath()).c_str());
|
2015-04-29 20:32:23 +02:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return progname;
|
2018-06-06 21:54:41 +02:00
|
|
|
#endif
|
2015-04-29 20:32:23 +02:00
|
|
|
}
|
|
|
|
#endif
|
2018-04-06 18:40:26 +02:00
|
|
|
|
2018-06-06 21:54:41 +02:00
|
|
|
static const char* GetFileBasename(const char* file) {
|
|
|
|
// We can't use basename(3) even on Unix because the Mac doesn't
|
|
|
|
// have a non-modifying basename.
|
|
|
|
const char* last_slash = strrchr(file, '/');
|
|
|
|
if (last_slash != nullptr) {
|
|
|
|
return last_slash + 1;
|
|
|
|
}
|
|
|
|
#if defined(_WIN32)
|
|
|
|
const char* last_backslash = strrchr(file, '\\');
|
|
|
|
if (last_backslash != nullptr) {
|
|
|
|
return last_backslash + 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2018-04-06 18:40:26 +02:00
|
|
|
#if defined(__linux__)
|
2018-06-06 21:54:41 +02:00
|
|
|
static int OpenKmsg() {
|
2018-04-06 18:40:26 +02:00
|
|
|
#if defined(__ANDROID__)
|
|
|
|
// pick up 'file w /dev/kmsg' environment from daemon's init rc file
|
|
|
|
const auto val = getenv("ANDROID_FILE__dev_kmsg");
|
|
|
|
if (val != nullptr) {
|
|
|
|
int fd;
|
|
|
|
if (android::base::ParseInt(val, &fd, 0)) {
|
|
|
|
auto flags = fcntl(fd, F_GETFL);
|
|
|
|
if ((flags != -1) && ((flags & O_ACCMODE) == O_WRONLY)) return fd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return TEMP_FAILURE_RETRY(open("/dev/kmsg", O_WRONLY | O_CLOEXEC));
|
|
|
|
}
|
|
|
|
#endif
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2017-01-23 19:29:23 +01:00
|
|
|
static std::mutex& LoggingLock() {
|
|
|
|
static auto& logging_lock = *new std::mutex();
|
|
|
|
return logging_lock;
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2017-01-23 19:29:23 +01:00
|
|
|
static LogFunction& Logger() {
|
2015-03-27 19:20:14 +01:00
|
|
|
#ifdef __ANDROID__
|
2017-01-23 19:29:23 +01:00
|
|
|
static auto& logger = *new LogFunction(LogdLogger());
|
2015-03-27 19:20:14 +01:00
|
|
|
#else
|
2017-01-23 19:29:23 +01:00
|
|
|
static auto& logger = *new LogFunction(StderrLogger);
|
2015-03-27 19:20:14 +01:00
|
|
|
#endif
|
2017-01-23 19:29:23 +01:00
|
|
|
return logger;
|
|
|
|
}
|
2015-03-27 19:20:14 +01:00
|
|
|
|
2017-01-23 19:29:23 +01:00
|
|
|
static AbortFunction& Aborter() {
|
|
|
|
static auto& aborter = *new AbortFunction(DefaultAborter);
|
|
|
|
return aborter;
|
|
|
|
}
|
|
|
|
|
2018-03-05 19:00:19 +01:00
|
|
|
static std::recursive_mutex& TagLock() {
|
|
|
|
static auto& tag_lock = *new std::recursive_mutex();
|
|
|
|
return tag_lock;
|
|
|
|
}
|
|
|
|
static std::string* gDefaultTag;
|
|
|
|
std::string GetDefaultTag() {
|
|
|
|
std::lock_guard<std::recursive_mutex> lock(TagLock());
|
|
|
|
if (gDefaultTag == nullptr) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return *gDefaultTag;
|
|
|
|
}
|
|
|
|
void SetDefaultTag(const std::string& tag) {
|
|
|
|
std::lock_guard<std::recursive_mutex> lock(TagLock());
|
|
|
|
if (gDefaultTag != nullptr) {
|
|
|
|
delete gDefaultTag;
|
|
|
|
gDefaultTag = nullptr;
|
|
|
|
}
|
|
|
|
if (!tag.empty()) {
|
|
|
|
gDefaultTag = new std::string(tag);
|
|
|
|
}
|
2017-01-23 19:29:23 +01:00
|
|
|
}
|
2016-09-08 20:03:58 +02:00
|
|
|
|
2015-04-03 20:28:46 +02:00
|
|
|
static bool gInitialized = false;
|
2015-03-14 07:06:01 +01:00
|
|
|
static LogSeverity gMinimumLogSeverity = INFO;
|
|
|
|
|
2016-08-05 01:09:39 +02:00
|
|
|
#if defined(__linux__)
|
|
|
|
void KernelLogger(android::base::LogId, android::base::LogSeverity severity,
|
|
|
|
const char* tag, const char*, unsigned int, const char* msg) {
|
2016-09-07 19:10:50 +02:00
|
|
|
// clang-format off
|
2016-08-05 01:09:39 +02:00
|
|
|
static constexpr int kLogSeverityToKernelLogLevel[] = {
|
2016-09-07 19:10:50 +02:00
|
|
|
[android::base::VERBOSE] = 7, // KERN_DEBUG (there is no verbose kernel log
|
|
|
|
// level)
|
|
|
|
[android::base::DEBUG] = 7, // KERN_DEBUG
|
|
|
|
[android::base::INFO] = 6, // KERN_INFO
|
|
|
|
[android::base::WARNING] = 4, // KERN_WARNING
|
|
|
|
[android::base::ERROR] = 3, // KERN_ERROR
|
|
|
|
[android::base::FATAL_WITHOUT_ABORT] = 2, // KERN_CRIT
|
|
|
|
[android::base::FATAL] = 2, // KERN_CRIT
|
2016-08-05 01:09:39 +02:00
|
|
|
};
|
2016-09-07 19:10:50 +02:00
|
|
|
// clang-format on
|
2016-08-05 01:09:39 +02:00
|
|
|
static_assert(arraysize(kLogSeverityToKernelLogLevel) == android::base::FATAL + 1,
|
|
|
|
"Mismatch in size of kLogSeverityToKernelLogLevel and values in LogSeverity");
|
|
|
|
|
2018-04-06 18:40:26 +02:00
|
|
|
static int klog_fd = OpenKmsg();
|
2016-08-05 01:09:39 +02:00
|
|
|
if (klog_fd == -1) return;
|
|
|
|
|
|
|
|
int level = kLogSeverityToKernelLogLevel[severity];
|
|
|
|
|
|
|
|
// The kernel's printk buffer is only 1024 bytes.
|
|
|
|
// TODO: should we automatically break up long lines into multiple lines?
|
|
|
|
// Or we could log but with something like "..." at the end?
|
|
|
|
char buf[1024];
|
|
|
|
size_t size = snprintf(buf, sizeof(buf), "<%d>%s: %s\n", level, tag, msg);
|
|
|
|
if (size > sizeof(buf)) {
|
|
|
|
size = snprintf(buf, sizeof(buf), "<%d>%s: %zu-byte message too long for printk\n",
|
|
|
|
level, tag, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
iovec iov[1];
|
|
|
|
iov[0].iov_base = buf;
|
|
|
|
iov[0].iov_len = size;
|
|
|
|
TEMP_FAILURE_RETRY(writev(klog_fd, iov, 1));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-12-18 15:30:17 +01:00
|
|
|
void StderrLogger(LogId, LogSeverity severity, const char* tag, const char* file, unsigned int line,
|
|
|
|
const char* message) {
|
2016-06-21 23:25:44 +02:00
|
|
|
struct tm now;
|
|
|
|
time_t t = time(nullptr);
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
localtime_s(&now, &t);
|
|
|
|
#else
|
|
|
|
localtime_r(&t, &now);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
char timestamp[32];
|
|
|
|
strftime(timestamp, sizeof(timestamp), "%m-%d %H:%M:%S", &now);
|
|
|
|
|
2016-09-07 19:10:50 +02:00
|
|
|
static const char log_characters[] = "VDIWEFF";
|
2015-08-12 01:00:13 +02:00
|
|
|
static_assert(arraysize(log_characters) - 1 == FATAL + 1,
|
|
|
|
"Mismatch in size of log_characters and values in LogSeverity");
|
2015-03-27 19:20:14 +01:00
|
|
|
char severity_char = log_characters[severity];
|
2018-03-16 22:25:42 +01:00
|
|
|
fprintf(stderr, "%s %c %s %5d %5" PRIu64 " %s:%u] %s\n", tag ? tag : "nullptr", severity_char,
|
|
|
|
timestamp, getpid(), GetThreadId(), file, line, message);
|
2015-03-27 19:20:14 +01:00
|
|
|
}
|
|
|
|
|
2018-05-23 18:16:46 +02:00
|
|
|
void StdioLogger(LogId, LogSeverity severity, const char* /*tag*/, const char* /*file*/,
|
|
|
|
unsigned int /*line*/, const char* message) {
|
|
|
|
if (severity >= WARNING) {
|
|
|
|
fflush(stdout);
|
2018-06-06 21:54:41 +02:00
|
|
|
fprintf(stderr, "%s: %s\n", GetFileBasename(getprogname()), message);
|
2018-05-23 18:16:46 +02:00
|
|
|
} else {
|
|
|
|
fprintf(stdout, "%s\n", message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-08 20:03:58 +02:00
|
|
|
void DefaultAborter(const char* abort_message) {
|
|
|
|
#ifdef __ANDROID__
|
|
|
|
android_set_abort_message(abort_message);
|
|
|
|
#else
|
|
|
|
UNUSED(abort_message);
|
|
|
|
#endif
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2015-03-27 19:20:14 +01:00
|
|
|
|
|
|
|
#ifdef __ANDROID__
|
|
|
|
LogdLogger::LogdLogger(LogId default_log_id) : default_log_id_(default_log_id) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void LogdLogger::operator()(LogId id, LogSeverity severity, const char* tag,
|
|
|
|
const char* file, unsigned int line,
|
|
|
|
const char* message) {
|
2016-08-05 01:09:39 +02:00
|
|
|
static constexpr android_LogPriority kLogSeverityToAndroidLogPriority[] = {
|
2016-09-07 19:10:50 +02:00
|
|
|
ANDROID_LOG_VERBOSE, ANDROID_LOG_DEBUG, ANDROID_LOG_INFO,
|
|
|
|
ANDROID_LOG_WARN, ANDROID_LOG_ERROR, ANDROID_LOG_FATAL,
|
|
|
|
ANDROID_LOG_FATAL,
|
2016-08-05 01:09:39 +02:00
|
|
|
};
|
|
|
|
static_assert(arraysize(kLogSeverityToAndroidLogPriority) == FATAL + 1,
|
|
|
|
"Mismatch in size of kLogSeverityToAndroidLogPriority and values in LogSeverity");
|
|
|
|
|
2015-03-27 19:20:14 +01:00
|
|
|
int priority = kLogSeverityToAndroidLogPriority[severity];
|
|
|
|
if (id == DEFAULT) {
|
|
|
|
id = default_log_id_;
|
|
|
|
}
|
|
|
|
|
2016-08-05 01:09:39 +02:00
|
|
|
static constexpr log_id kLogIdToAndroidLogId[] = {
|
|
|
|
LOG_ID_MAX, LOG_ID_MAIN, LOG_ID_SYSTEM,
|
|
|
|
};
|
|
|
|
static_assert(arraysize(kLogIdToAndroidLogId) == SYSTEM + 1,
|
|
|
|
"Mismatch in size of kLogIdToAndroidLogId and values in LogId");
|
2015-03-27 19:20:14 +01:00
|
|
|
log_id lg_id = kLogIdToAndroidLogId[id];
|
|
|
|
|
|
|
|
if (priority == ANDROID_LOG_FATAL) {
|
|
|
|
__android_log_buf_print(lg_id, priority, tag, "%s:%u] %s", file, line,
|
|
|
|
message);
|
|
|
|
} else {
|
|
|
|
__android_log_buf_print(lg_id, priority, tag, "%s", message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-08 20:03:58 +02:00
|
|
|
void InitLogging(char* argv[], LogFunction&& logger, AbortFunction&& aborter) {
|
2015-03-27 19:20:14 +01:00
|
|
|
SetLogger(std::forward<LogFunction>(logger));
|
2016-09-08 20:03:58 +02:00
|
|
|
SetAborter(std::forward<AbortFunction>(aborter));
|
2015-03-27 19:20:14 +01:00
|
|
|
|
2015-04-03 20:28:46 +02:00
|
|
|
if (gInitialized) {
|
2015-03-14 07:06:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-03 20:28:46 +02:00
|
|
|
gInitialized = true;
|
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
// Stash the command line for later use. We can use /proc/self/cmdline on
|
2015-11-08 03:51:54 +01:00
|
|
|
// Linux to recover this, but we don't have that luxury on the Mac/Windows,
|
|
|
|
// and there are a couple of argv[0] variants that are commonly used.
|
2015-03-14 07:06:01 +01:00
|
|
|
if (argv != nullptr) {
|
2018-03-05 19:00:19 +01:00
|
|
|
SetDefaultTag(basename(argv[0]));
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
2015-04-03 20:28:46 +02:00
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
const char* tags = getenv("ANDROID_LOG_TAGS");
|
|
|
|
if (tags == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-19 21:24:26 +01:00
|
|
|
std::vector<std::string> specs = Split(tags, " ");
|
2015-03-14 07:06:01 +01:00
|
|
|
for (size_t i = 0; i < specs.size(); ++i) {
|
|
|
|
// "tag-pattern:[vdiwefs]"
|
|
|
|
std::string spec(specs[i]);
|
|
|
|
if (spec.size() == 3 && StartsWith(spec, "*:")) {
|
|
|
|
switch (spec[2]) {
|
|
|
|
case 'v':
|
|
|
|
gMinimumLogSeverity = VERBOSE;
|
|
|
|
continue;
|
|
|
|
case 'd':
|
|
|
|
gMinimumLogSeverity = DEBUG;
|
|
|
|
continue;
|
|
|
|
case 'i':
|
|
|
|
gMinimumLogSeverity = INFO;
|
|
|
|
continue;
|
|
|
|
case 'w':
|
|
|
|
gMinimumLogSeverity = WARNING;
|
|
|
|
continue;
|
|
|
|
case 'e':
|
|
|
|
gMinimumLogSeverity = ERROR;
|
|
|
|
continue;
|
|
|
|
case 'f':
|
2016-09-07 19:10:50 +02:00
|
|
|
gMinimumLogSeverity = FATAL_WITHOUT_ABORT;
|
2015-03-14 07:06:01 +01:00
|
|
|
continue;
|
|
|
|
// liblog will even suppress FATAL if you say 's' for silent, but that's
|
|
|
|
// crazy!
|
|
|
|
case 's':
|
2016-09-07 19:10:50 +02:00
|
|
|
gMinimumLogSeverity = FATAL_WITHOUT_ABORT;
|
2015-03-14 07:06:01 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags
|
|
|
|
<< ")";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 19:20:14 +01:00
|
|
|
void SetLogger(LogFunction&& logger) {
|
2017-01-23 19:29:23 +01:00
|
|
|
std::lock_guard<std::mutex> lock(LoggingLock());
|
|
|
|
Logger() = std::move(logger);
|
2015-03-27 19:20:14 +01:00
|
|
|
}
|
|
|
|
|
2016-09-08 20:03:58 +02:00
|
|
|
void SetAborter(AbortFunction&& aborter) {
|
2017-01-23 19:29:23 +01:00
|
|
|
std::lock_guard<std::mutex> lock(LoggingLock());
|
|
|
|
Aborter() = std::move(aborter);
|
2016-09-08 20:03:58 +02:00
|
|
|
}
|
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
// This indirection greatly reduces the stack impact of having lots of
|
|
|
|
// checks/logging in a function.
|
|
|
|
class LogMessageData {
|
|
|
|
public:
|
2017-12-18 15:30:17 +01:00
|
|
|
LogMessageData(const char* file, unsigned int line, LogId id, LogSeverity severity,
|
|
|
|
const char* tag, int error)
|
2015-08-12 01:00:13 +02:00
|
|
|
: file_(GetFileBasename(file)),
|
2015-03-27 19:20:14 +01:00
|
|
|
line_number_(line),
|
|
|
|
id_(id),
|
|
|
|
severity_(severity),
|
2017-12-18 15:30:17 +01:00
|
|
|
tag_(tag),
|
|
|
|
error_(error) {}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
|
|
|
const char* GetFile() const {
|
|
|
|
return file_;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int GetLineNumber() const {
|
|
|
|
return line_number_;
|
|
|
|
}
|
|
|
|
|
|
|
|
LogSeverity GetSeverity() const {
|
|
|
|
return severity_;
|
|
|
|
}
|
|
|
|
|
2017-12-18 15:30:17 +01:00
|
|
|
const char* GetTag() const { return tag_; }
|
|
|
|
|
2015-03-27 19:20:14 +01:00
|
|
|
LogId GetId() const {
|
|
|
|
return id_;
|
|
|
|
}
|
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
int GetError() const {
|
|
|
|
return error_;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream& GetBuffer() {
|
|
|
|
return buffer_;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ToString() const {
|
|
|
|
return buffer_.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::ostringstream buffer_;
|
|
|
|
const char* const file_;
|
|
|
|
const unsigned int line_number_;
|
2015-03-27 19:20:14 +01:00
|
|
|
const LogId id_;
|
2015-03-14 07:06:01 +01:00
|
|
|
const LogSeverity severity_;
|
2017-12-18 15:30:17 +01:00
|
|
|
const char* const tag_;
|
2015-03-14 07:06:01 +01:00
|
|
|
const int error_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(LogMessageData);
|
|
|
|
};
|
|
|
|
|
2017-12-18 15:30:17 +01:00
|
|
|
LogMessage::LogMessage(const char* file, unsigned int line, LogId id, LogSeverity severity,
|
|
|
|
const char* tag, int error)
|
|
|
|
: data_(new LogMessageData(file, line, id, severity, tag, error)) {}
|
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
LogMessage::~LogMessage() {
|
2016-09-23 22:31:52 +02:00
|
|
|
// Check severity again. This is duplicate work wrt/ LOG macros, but not LOG_STREAM.
|
2016-09-24 01:37:12 +02:00
|
|
|
if (!WOULD_LOG(data_->GetSeverity())) {
|
2016-09-23 22:31:52 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
// Finish constructing the message.
|
|
|
|
if (data_->GetError() != -1) {
|
|
|
|
data_->GetBuffer() << ": " << strerror(data_->GetError());
|
|
|
|
}
|
|
|
|
std::string msg(data_->ToString());
|
|
|
|
|
2015-09-18 04:36:10 +02:00
|
|
|
{
|
|
|
|
// Do the actual logging with the lock held.
|
2017-01-23 19:29:23 +01:00
|
|
|
std::lock_guard<std::mutex> lock(LoggingLock());
|
2015-09-18 04:36:10 +02:00
|
|
|
if (msg.find('\n') == std::string::npos) {
|
2017-12-18 15:30:17 +01:00
|
|
|
LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(), data_->GetSeverity(),
|
|
|
|
data_->GetTag(), msg.c_str());
|
2015-09-18 04:36:10 +02:00
|
|
|
} else {
|
|
|
|
msg += '\n';
|
|
|
|
size_t i = 0;
|
|
|
|
while (i < msg.size()) {
|
|
|
|
size_t nl = msg.find('\n', i);
|
|
|
|
msg[nl] = '\0';
|
2017-12-18 15:30:17 +01:00
|
|
|
LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(), data_->GetSeverity(),
|
|
|
|
data_->GetTag(), &msg[i]);
|
2016-10-05 04:17:07 +02:00
|
|
|
// Undo the zero-termination so we can give the complete message to the aborter.
|
|
|
|
msg[nl] = '\n';
|
2015-09-18 04:36:10 +02:00
|
|
|
i = nl + 1;
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Abort if necessary.
|
|
|
|
if (data_->GetSeverity() == FATAL) {
|
2017-01-23 19:29:23 +01:00
|
|
|
Aborter()(msg.c_str());
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream& LogMessage::stream() {
|
|
|
|
return data_->GetBuffer();
|
|
|
|
}
|
|
|
|
|
2017-12-18 15:30:17 +01:00
|
|
|
void LogMessage::LogLine(const char* file, unsigned int line, LogId id, LogSeverity severity,
|
|
|
|
const char* tag, const char* message) {
|
2018-03-05 19:00:19 +01:00
|
|
|
if (tag == nullptr) {
|
|
|
|
std::lock_guard<std::recursive_mutex> lock(TagLock());
|
|
|
|
if (gDefaultTag == nullptr) {
|
|
|
|
gDefaultTag = new std::string(getprogname());
|
|
|
|
}
|
|
|
|
Logger()(id, severity, gDefaultTag->c_str(), file, line, message);
|
|
|
|
} else {
|
|
|
|
Logger()(id, severity, tag, file, line, message);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
|
|
|
|
2016-08-05 01:09:39 +02:00
|
|
|
LogSeverity GetMinimumLogSeverity() {
|
|
|
|
return gMinimumLogSeverity;
|
|
|
|
}
|
|
|
|
|
|
|
|
LogSeverity SetMinimumLogSeverity(LogSeverity new_severity) {
|
|
|
|
LogSeverity old_severity = gMinimumLogSeverity;
|
|
|
|
gMinimumLogSeverity = new_severity;
|
|
|
|
return old_severity;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedLogSeverity::ScopedLogSeverity(LogSeverity new_severity) {
|
|
|
|
old_ = SetMinimumLogSeverity(new_severity);
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ScopedLogSeverity::~ScopedLogSeverity() {
|
2016-08-05 01:09:39 +02:00
|
|
|
SetMinimumLogSeverity(old_);
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace base
|
|
|
|
} // namespace android
|