Fix a segment fault of logger.

This commit is contained in:
Chunting Gu
2018-08-23 09:46:09 +08:00
parent 8faa45defe
commit 2e2b45dd43
2 changed files with 40 additions and 25 deletions
+2 -2
View File
@@ -107,7 +107,7 @@ Error HttpClient::Connect(const HttpRequest& request) {
io_context_.run_one(); io_context_.run_one();
} while (ec == boost::asio::error::would_block); } while (ec == boost::asio::error::would_block);
// Determine whether a connection was successfully established. // Determine whether a connection was successfully established.
if (ec) { if (ec) {
LOG_ERRO("Socket connect error: %s", ec.message().c_str()); LOG_ERRO("Socket connect error: %s", ec.message().c_str());
Stop(); Stop();
@@ -115,7 +115,7 @@ Error HttpClient::Connect(const HttpRequest& request) {
} }
LOG_VERB("Socket connected."); LOG_VERB("Socket connected.");
// The deadline actor may have had a chance to run and close our socket, even // The deadline actor may have had a chance to run and close our socket, even
// though the connect operation notionally succeeded. // though the connect operation notionally succeeded.
if (stopped_) { if (stopped_) {
+38 -23
View File
@@ -121,38 +121,53 @@ static std::string GetThreadID() {
return ss.str(); return ss.str();
} }
static void WriteToFile(FILE* fd, int level, const char* file, int line,
const char* format, va_list args) {
std::lock_guard<std::mutex> lock(g_logger.mutex);
fprintf(fd, "%s, %s, %7s, %24s, %4d, ",
GetTimestamp().c_str(), kLevelNames[level], GetThreadID().c_str(),
file, line);
vfprintf(fd, format, args);
fprintf(fd, "\n");
if ((g_logger.modes & LOG_FLUSH) != 0) {
fflush(fd);
}
}
void LogWrite(int level, const char* file, int line, const char* format, ...) { void LogWrite(int level, const char* file, int line, const char* format, ...) {
assert(format != nullptr); assert(format != nullptr);
va_list args; std::string timestamp = GetTimestamp();
va_start(args, format); std::string thread_id = GetThreadID();
if ((g_logger.modes & LOG_FILE) != 0 && g_logger.file != nullptr) { if ((g_logger.modes & LOG_FILE) != 0 && g_logger.file != nullptr) {
WriteToFile(g_logger.file, level, file, line, format, args); std::lock_guard<std::mutex> lock(g_logger.mutex);
va_list args;
va_start(args, format);
fprintf(g_logger.file, "%s, %s, %7s, %24s, %4d, ",
timestamp.c_str(), kLevelNames[level], thread_id.c_str(),
file, line);
vfprintf(g_logger.file, format, args);
fprintf(g_logger.file, "\n");
if ((g_logger.modes & LOG_FLUSH) != 0) {
fflush(g_logger.file);
}
va_end(args);
} }
if ((g_logger.modes & LOG_CONSOLE) != 0) { if ((g_logger.modes & LOG_CONSOLE) != 0) {
WriteToFile(stderr, level, file, line, format, args); std::lock_guard<std::mutex> lock(g_logger.mutex);
}
va_end(args); va_list args;
va_start(args, format);
fprintf(stderr, "%s, %s, %7s, %24s, %4d, ",
timestamp.c_str(), kLevelNames[level], thread_id.c_str(),
file, line);
vfprintf(stderr, format, args);
fprintf(stderr, "\n");
if ((g_logger.modes & LOG_FLUSH) != 0) {
fflush(stderr);
}
va_end(args);
}
} }
} // namespace webcc } // namespace webcc