2016-10-04 09:58:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include <Poco/PatternFormatter.h>
|
2019-06-14 14:00:37 +00:00
|
|
|
#include "ExtendedLogChannel.h"
|
2017-02-07 16:37:56 +00:00
|
|
|
|
2016-10-04 09:58:38 +00:00
|
|
|
|
2019-06-20 07:17:21 +00:00
|
|
|
/** Format log messages own way.
|
|
|
|
* We can't obtain some details using Poco::PatternFormatter.
|
2016-10-04 09:58:38 +00:00
|
|
|
*
|
2019-06-20 07:17:21 +00:00
|
|
|
* Firstly, the thread number here is peaked not from Poco::Thread
|
|
|
|
* threads only, but from all threads with number assigned (see ThreadNumber.h)
|
2016-10-04 09:58:38 +00:00
|
|
|
*
|
2019-06-20 07:17:21 +00:00
|
|
|
* Secondly, the local date and time are correctly displayed.
|
|
|
|
* Poco::PatternFormatter does not work well with local time,
|
|
|
|
* when timestamps are close to DST timeshift moments.
|
|
|
|
* - see Poco sources and http://thread.gmane.org/gmane.comp.time.tz/8883
|
2016-10-04 09:58:38 +00:00
|
|
|
*
|
2019-06-20 07:17:21 +00:00
|
|
|
* Also it's made a bit more efficient (unimportant).
|
2016-10-04 09:58:38 +00:00
|
|
|
*/
|
2017-04-26 14:31:25 +00:00
|
|
|
|
2019-06-14 14:00:37 +00:00
|
|
|
class Loggers;
|
2017-04-26 14:31:25 +00:00
|
|
|
|
2016-10-04 09:58:38 +00:00
|
|
|
class OwnPatternFormatter : public Poco::PatternFormatter
|
|
|
|
{
|
|
|
|
public:
|
2018-01-17 18:10:38 +00:00
|
|
|
/// ADD_LAYER_TAG is needed only for Yandex.Metrika, that share part of ClickHouse code.
|
2017-04-01 07:20:54 +00:00
|
|
|
enum Options
|
|
|
|
{
|
|
|
|
ADD_NOTHING = 0,
|
|
|
|
ADD_LAYER_TAG = 1 << 0
|
|
|
|
};
|
2016-10-04 09:58:38 +00:00
|
|
|
|
2020-02-03 02:33:31 +00:00
|
|
|
OwnPatternFormatter(const Loggers * loggers_, Options options_ = ADD_NOTHING, bool color_ = false);
|
2017-02-06 14:57:47 +00:00
|
|
|
|
2017-04-26 14:31:25 +00:00
|
|
|
void format(const Poco::Message & msg, std::string & text) override;
|
2018-06-15 17:32:35 +00:00
|
|
|
void formatExtended(const DB::ExtendedLogMessage & msg_ext, std::string & text);
|
2016-10-04 09:58:38 +00:00
|
|
|
|
|
|
|
private:
|
2019-06-14 15:49:38 +00:00
|
|
|
const Loggers * loggers;
|
2017-04-01 07:20:54 +00:00
|
|
|
Options options;
|
2020-02-03 02:33:31 +00:00
|
|
|
bool color;
|
2016-10-04 09:58:38 +00:00
|
|
|
};
|