2016-04-14 19:12:43 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
2017-12-20 07:06:26 -06:00
|
|
|
#include <config.h>
|
2017-03-08 10:38:22 -06:00
|
|
|
|
2018-08-29 10:47:05 -05:00
|
|
|
#ifdef __linux
|
2016-04-14 19:12:43 -05:00
|
|
|
#include <sys/prctl.h>
|
2017-01-19 18:26:57 -06:00
|
|
|
#include <sys/syscall.h>
|
2018-08-29 10:47:05 -05:00
|
|
|
#endif
|
2017-01-19 18:26:57 -06:00
|
|
|
#include <unistd.h>
|
2016-04-14 19:12:43 -05:00
|
|
|
|
2016-08-07 22:32:39 -05:00
|
|
|
#include <atomic>
|
2016-04-14 19:12:43 -05:00
|
|
|
#include <cassert>
|
2018-06-04 15:47:39 -05:00
|
|
|
#include <cstring>
|
2017-01-08 11:21:14 -06:00
|
|
|
#include <ctime>
|
2016-04-14 19:12:43 -05:00
|
|
|
#include <iomanip>
|
2018-07-16 20:42:17 -05:00
|
|
|
#include <iostream>
|
2016-04-14 19:12:43 -05:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <Poco/ConsoleChannel.h>
|
2017-01-13 09:09:47 -06:00
|
|
|
#include <Poco/DateTimeFormatter.h>
|
2016-08-07 22:32:39 -05:00
|
|
|
#include <Poco/FileChannel.h>
|
|
|
|
#include <Poco/FormattingChannel.h>
|
|
|
|
#include <Poco/PatternFormatter.h>
|
2016-04-14 19:12:43 -05:00
|
|
|
#include <Poco/Process.h>
|
2016-08-07 22:32:39 -05:00
|
|
|
#include <Poco/SplitterChannel.h>
|
2016-04-14 19:12:43 -05:00
|
|
|
#include <Poco/Thread.h>
|
2016-07-30 22:06:12 -05:00
|
|
|
#include <Poco/Timestamp.h>
|
2016-04-14 19:12:43 -05:00
|
|
|
|
|
|
|
#include "Log.hpp"
|
2017-03-30 12:14:40 -05:00
|
|
|
#include "Util.hpp"
|
2016-04-14 19:12:43 -05:00
|
|
|
|
|
|
|
namespace Log
|
|
|
|
{
|
2016-08-07 22:32:39 -05:00
|
|
|
using namespace Poco;
|
|
|
|
|
2016-08-13 23:01:13 -05:00
|
|
|
/// Helper to avoid destruction ordering issues.
|
2018-09-13 03:52:08 -05:00
|
|
|
struct StaticNameHelper
|
2016-10-30 18:07:41 -05:00
|
|
|
{
|
2018-12-04 02:05:43 -06:00
|
|
|
private:
|
|
|
|
std::atomic<bool> _inited;
|
|
|
|
std::string _name;
|
|
|
|
std::string _id;
|
|
|
|
public:
|
2018-09-13 03:52:08 -05:00
|
|
|
StaticNameHelper() :
|
2018-12-04 02:05:43 -06:00
|
|
|
_inited(true)
|
2016-04-14 19:12:43 -05:00
|
|
|
{
|
|
|
|
}
|
2018-09-13 03:52:08 -05:00
|
|
|
~StaticNameHelper()
|
2016-04-14 19:12:43 -05:00
|
|
|
{
|
2018-12-04 02:05:43 -06:00
|
|
|
_inited = false;
|
2016-04-14 19:12:43 -05:00
|
|
|
}
|
2018-12-04 02:05:43 -06:00
|
|
|
|
|
|
|
bool getInited() const { return _inited; }
|
|
|
|
|
|
|
|
void setId(const std::string& id) { _id = id; }
|
|
|
|
|
|
|
|
const std::string& getId() const { return _id; }
|
|
|
|
|
|
|
|
void setName(const std::string& name) { _name = name; }
|
|
|
|
|
|
|
|
const std::string& getName() const { return _name; }
|
2016-04-14 19:12:43 -05:00
|
|
|
};
|
2018-09-13 03:52:08 -05:00
|
|
|
static StaticNameHelper Source;
|
2016-04-14 19:12:43 -05:00
|
|
|
|
2016-04-15 14:46:44 -05:00
|
|
|
// We need a signal safe means of writing messages
|
|
|
|
// $ man 7 signal
|
|
|
|
void signalLog(const char *message)
|
|
|
|
{
|
2016-10-30 18:07:41 -05:00
|
|
|
while (true)
|
|
|
|
{
|
2018-06-04 15:47:39 -05:00
|
|
|
const int length = std::strlen(message);
|
2016-10-30 18:07:41 -05:00
|
|
|
const int written = write (STDERR_FILENO, message, length);
|
2016-04-15 14:46:44 -05:00
|
|
|
if (written < 0)
|
|
|
|
{
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue; // ignore.
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2016-10-30 18:07:41 -05:00
|
|
|
|
2016-04-15 14:46:44 -05:00
|
|
|
message += written;
|
|
|
|
if (message[0] == '\0')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-28 13:05:45 -05:00
|
|
|
// We need a signal safe means of writing messages
|
|
|
|
// $ man 7 signal
|
2018-06-04 15:47:39 -05:00
|
|
|
void signalLogNumber(std::size_t num)
|
2017-04-28 13:05:45 -05:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char buf[22];
|
|
|
|
buf[21] = '\0';
|
|
|
|
for (i = 20; i > 0 && num > 0; --i)
|
|
|
|
{
|
|
|
|
buf[i] = '0' + num % 10;
|
|
|
|
num /= 10;
|
|
|
|
}
|
|
|
|
signalLog(buf + i + 1);
|
|
|
|
}
|
|
|
|
|
2018-06-04 15:47:39 -05:00
|
|
|
char* prefix(char* buffer, const std::size_t len, const char* level)
|
2016-04-14 19:12:43 -05:00
|
|
|
{
|
2018-06-04 15:47:39 -05:00
|
|
|
const char *threadName = Util::getThreadName();
|
2018-08-29 10:47:05 -05:00
|
|
|
#ifdef __linux
|
2018-06-04 15:47:39 -05:00
|
|
|
const long osTid = Util::getThreadId();
|
2018-09-13 11:16:00 -05:00
|
|
|
#elif defined IOS
|
2018-06-04 15:47:39 -05:00
|
|
|
const auto osTid = pthread_mach_thread_np(pthread_self());
|
2018-09-13 11:16:00 -05:00
|
|
|
#endif
|
2017-01-17 17:30:58 -06:00
|
|
|
Poco::DateTime time;
|
2018-06-04 15:47:39 -05:00
|
|
|
snprintf(buffer, len, "%s-%.05lu %.4u-%.2u-%.2u %.2u:%.2u:%.2u.%.6u [ %s ] %s ",
|
2018-12-04 02:05:43 -06:00
|
|
|
(Source.getInited() ? Source.getId().c_str() : "<shutdown>"),
|
2017-01-19 18:26:57 -06:00
|
|
|
osTid,
|
2018-04-19 07:35:23 -05:00
|
|
|
time.year(), time.month(), time.day(),
|
2017-01-19 18:26:57 -06:00
|
|
|
time.hour(), time.minute(), time.second(),
|
|
|
|
time.millisecond() * 1000 + time.microsecond(),
|
2017-03-30 12:14:40 -05:00
|
|
|
threadName, level);
|
2017-01-19 18:26:57 -06:00
|
|
|
return buffer;
|
2016-04-15 14:46:44 -05:00
|
|
|
}
|
2016-04-14 19:12:43 -05:00
|
|
|
|
2016-04-15 14:46:44 -05:00
|
|
|
void signalLogPrefix()
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
2018-06-04 15:47:39 -05:00
|
|
|
prefix(buffer, sizeof(buffer) - 1, "SIG");
|
2016-04-15 14:46:44 -05:00
|
|
|
signalLog(buffer);
|
2016-04-14 19:12:43 -05:00
|
|
|
}
|
|
|
|
|
2016-08-07 22:32:39 -05:00
|
|
|
void initialize(const std::string& name,
|
|
|
|
const std::string& logLevel,
|
|
|
|
const bool withColor,
|
|
|
|
const bool logToFile,
|
2018-08-13 02:26:09 -05:00
|
|
|
const std::map<std::string, std::string>& config)
|
2016-04-14 19:12:43 -05:00
|
|
|
{
|
2018-12-04 02:05:43 -06:00
|
|
|
Source.setName(name);
|
2016-04-14 19:12:43 -05:00
|
|
|
std::ostringstream oss;
|
2018-12-04 02:05:43 -06:00
|
|
|
oss << Source.getName();
|
2019-02-12 05:16:40 -06:00
|
|
|
#if !MOBILEAPP // Just one process in a mobile app, the pid is uninteresting.
|
2018-09-13 11:16:00 -05:00
|
|
|
oss << '-'
|
2016-04-14 19:12:43 -05:00
|
|
|
<< std::setw(5) << std::setfill('0') << Poco::Process::id();
|
2018-09-13 11:16:00 -05:00
|
|
|
#endif
|
2018-12-04 02:05:43 -06:00
|
|
|
Source.setId(oss.str());
|
2016-04-14 19:12:43 -05:00
|
|
|
|
2016-07-30 10:52:10 -05:00
|
|
|
// Configure the logger.
|
2016-09-27 07:30:45 -05:00
|
|
|
AutoPtr<Channel> channel;
|
2016-08-07 22:32:39 -05:00
|
|
|
|
|
|
|
if (logToFile)
|
|
|
|
{
|
2016-09-27 07:30:45 -05:00
|
|
|
channel = static_cast<Poco::Channel*>(new FileChannel("loolwsd.log"));
|
2016-08-07 22:32:39 -05:00
|
|
|
for (const auto& pair : config)
|
|
|
|
{
|
2016-09-27 07:30:45 -05:00
|
|
|
channel->setProperty(pair.first, pair.second);
|
2016-08-07 22:32:39 -05:00
|
|
|
}
|
|
|
|
}
|
2016-09-27 07:30:45 -05:00
|
|
|
else if (withColor)
|
|
|
|
channel = static_cast<Poco::Channel*>(new Poco::ColorConsoleChannel());
|
|
|
|
else
|
|
|
|
channel = static_cast<Poco::Channel*>(new Poco::ConsoleChannel());
|
2016-08-07 22:32:39 -05:00
|
|
|
|
2017-07-12 04:38:59 -05:00
|
|
|
/**
|
|
|
|
* Open the channel explicitly, instead of waiting for first log message
|
|
|
|
* This is important especially for the kit process where opening the channel
|
|
|
|
* after chroot can cause file creation inside the jail instead of outside
|
|
|
|
* */
|
|
|
|
channel->open();
|
2018-12-04 02:05:43 -06:00
|
|
|
auto& logger = Poco::Logger::create(Source.getName(), channel, Poco::Message::PRIO_TRACE);
|
2016-04-14 19:12:43 -05:00
|
|
|
|
2016-07-30 10:52:10 -05:00
|
|
|
logger.setLevel(logLevel.empty() ? std::string("trace") : logLevel);
|
2016-04-14 19:12:43 -05:00
|
|
|
|
2017-01-08 11:21:14 -06:00
|
|
|
const std::time_t t = std::time(nullptr);
|
|
|
|
oss.str("");
|
|
|
|
oss.clear();
|
2017-01-09 11:33:01 -06:00
|
|
|
|
|
|
|
oss << "Initializing " << name << ".";
|
|
|
|
|
|
|
|
// TODO: replace with std::put_time when we move to gcc 5+.
|
|
|
|
char buf[32];
|
|
|
|
if (strftime(buf, sizeof(buf), "%a %F %T%z", std::localtime(&t)) > 0)
|
|
|
|
{
|
|
|
|
oss << " Local time: " << buf << ".";
|
|
|
|
}
|
|
|
|
|
|
|
|
oss << " Log level is [" << logger.getLevel() << "].";
|
2018-01-14 19:39:06 -06:00
|
|
|
LOG_INF(oss.str());
|
2016-04-14 19:12:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Poco::Logger& logger()
|
|
|
|
{
|
2018-12-04 02:05:43 -06:00
|
|
|
return Poco::Logger::get(Source.getInited() ? Source.getName() : std::string());
|
2016-04-14 19:12:43 -05:00
|
|
|
}
|
2018-07-16 20:42:17 -05:00
|
|
|
|
|
|
|
void shutdown()
|
|
|
|
{
|
|
|
|
logger().shutdown();
|
|
|
|
|
|
|
|
// Flush
|
|
|
|
std::flush(std::cout);
|
|
|
|
fflush(stdout);
|
|
|
|
std::flush(std::cerr);
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
2016-04-14 19:12:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|