2012-06-04 16:48:31 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-06-04 16:48:31 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef SHRPX_LOG_H
|
|
|
|
#define SHRPX_LOG_H
|
|
|
|
|
|
|
|
#include "shrpx.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
#define ENABLE_LOG 1
|
|
|
|
|
2013-01-21 14:42:49 +01:00
|
|
|
#define LOG_ENABLED(SEVERITY) (ENABLE_LOG && Log::log_enabled(SEVERITY))
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
#define LOG(SEVERITY) Log(SEVERITY, __FILE__, __LINE__)
|
|
|
|
|
2012-12-09 11:15:14 +01:00
|
|
|
// Listener log
|
|
|
|
#define LLOG(SEVERITY, LISTEN) \
|
|
|
|
(Log(SEVERITY, __FILE__, __LINE__) << "[LISTEN:" << LISTEN \
|
|
|
|
<< "] ")
|
|
|
|
|
|
|
|
// ThreadEventReceiver log
|
|
|
|
#define TLOG(SEVERITY, THREAD_RECV) \
|
|
|
|
(Log(SEVERITY, __FILE__, __LINE__) << "[THREAD_RECV:" << THREAD_RECV \
|
|
|
|
<< "] ")
|
|
|
|
|
|
|
|
// ClientHandler log
|
|
|
|
#define CLOG(SEVERITY, CLIENT_HANDLER) \
|
|
|
|
(Log(SEVERITY, __FILE__, __LINE__) << "[CLIENT_HANDLER:" << CLIENT_HANDLER \
|
|
|
|
<< "] ")
|
|
|
|
|
|
|
|
// Upstream log
|
|
|
|
#define ULOG(SEVERITY, UPSTREAM) \
|
|
|
|
(Log(SEVERITY, __FILE__, __LINE__) << "[UPSTREAM:" << UPSTREAM << "] ")
|
|
|
|
|
|
|
|
// Downstream log
|
|
|
|
#define DLOG(SEVERITY, DOWNSTREAM) \
|
|
|
|
(Log(SEVERITY, __FILE__, __LINE__) << "[DOWNSTREAM:" << DOWNSTREAM << "] ")
|
|
|
|
|
|
|
|
// Downstream connection log
|
|
|
|
#define DCLOG(SEVERITY, DCONN) \
|
|
|
|
(Log(SEVERITY, __FILE__, __LINE__) << "[DCONN:" << DCONN << "] ")
|
|
|
|
|
2013-11-04 10:22:29 +01:00
|
|
|
// Downstream HTTP2 session log
|
|
|
|
#define SSLOG(SEVERITY, HTTP2) \
|
|
|
|
(Log(SEVERITY, __FILE__, __LINE__) << "[DHTTP2:" << HTTP2 << "] ")
|
2012-12-09 11:15:14 +01:00
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
enum SeverityLevel {
|
|
|
|
INFO, WARNING, ERROR, FATAL
|
|
|
|
};
|
|
|
|
|
|
|
|
class Log {
|
|
|
|
public:
|
2012-06-05 19:23:07 +02:00
|
|
|
Log(int severity, const char *filename, int linenum);
|
2012-06-04 16:48:31 +02:00
|
|
|
~Log();
|
|
|
|
template<typename Type> Log& operator<<(Type s)
|
|
|
|
{
|
|
|
|
stream_ << s;
|
|
|
|
return *this;
|
|
|
|
}
|
2012-06-05 19:23:07 +02:00
|
|
|
static void set_severity_level(int severity);
|
2012-06-06 16:58:19 +02:00
|
|
|
static int set_severity_level_by_name(const char *name);
|
2013-01-21 14:42:49 +01:00
|
|
|
static bool log_enabled(int severity)
|
|
|
|
{
|
|
|
|
return severity >= severity_thres_;
|
|
|
|
}
|
2012-06-04 16:48:31 +02:00
|
|
|
private:
|
2013-12-06 15:17:38 +01:00
|
|
|
std::stringstream stream_;
|
2012-06-04 16:48:31 +02:00
|
|
|
const char *filename_;
|
2013-12-06 15:17:38 +01:00
|
|
|
int severity_;
|
2012-06-04 16:48:31 +02:00
|
|
|
int linenum_;
|
2012-06-05 19:23:07 +02:00
|
|
|
static int severity_thres_;
|
2012-06-04 16:48:31 +02:00
|
|
|
};
|
|
|
|
|
2012-12-09 13:36:02 +01:00
|
|
|
#define TTY_HTTP_HD (get_config()->tty ? "\033[1;34m" : "")
|
|
|
|
#define TTY_RST (get_config()->tty ? "\033[0m" : "")
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
} // namespace shrpx
|
|
|
|
|
|
|
|
#endif // SHRPX_LOG_H
|