0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 18:18:35 +02:00
construct/include/ircd/logger.h

214 lines
6 KiB
C
Raw Normal View History

/*
* ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
*
* Copyright (C) 2003 Lee Hardy <lee@leeh.co.uk>
* Copyright (C) 2003-2004 ircd-ratbox development team
2016-08-26 06:38:15 +02:00
* Copyright (C) 2016 Charybdis Development Team
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1.Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2.Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3.The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
2016-08-13 05:05:54 +02:00
#pragma once
#define HAVE_IRCD_LOGGER_H
2016-08-13 05:05:54 +02:00
namespace ircd {
2016-08-26 06:38:15 +02:00
const char *smalldate(const time_t &);
2017-03-18 04:24:25 +01:00
} // namespace ircd
2016-08-26 06:38:15 +02:00
// windows.h #define conflicts with our facility
#ifdef HAVE_WINDOWS_H
#undef ERROR
#endif
namespace ircd {
namespace log {
enum facility
{
CRITICAL = 0,
ERROR = 1,
WARNING = 2,
NOTICE = 3,
INFO = 4,
DEBUG = 5,
_NUM_
};
const char *reflect(const facility &);
void slog(const facility &, const std::function<void (std::ostream &)> &);
2017-03-18 04:24:25 +01:00
void vlog(const facility &, const std::string &name, const char *const &fmt, const va_rtti &ap);
void vlog(const facility &, const char *const &fmt, const va_rtti &ap);
2016-08-26 06:38:15 +02:00
void mark(const facility &, const char *const &msg = nullptr);
void mark(const char *const &msg = nullptr);
class log
{
std::string name;
public:
2017-03-18 04:24:25 +01:00
template<class... args> void operator()(const facility &, const char *const &fmt, args&&...);
template<class... args> void critical(const char *const &fmt, args&&...);
template<class... args> void error(const char *const &fmt, args&&...);
template<class... args> void warning(const char *const &fmt, args&&...);
template<class... args> void notice(const char *const &fmt, args&&...);
template<class... args> void info(const char *const &fmt, args&&...);
template<class... args> void debug(const char *const &fmt, args&&...);
2016-08-26 06:38:15 +02:00
log(const std::string &name, const char &snote);
log(const std::string &name);
};
2017-03-18 04:24:25 +01:00
template<class... args> void critical(const char *const &fmt, args&&...);
template<class... args> void error(const char *const &fmt, args&&...);
template<class... args> void warning(const char *const &fmt, args&&...);
template<class... args> void notice(const char *const &fmt, args&&...);
template<class... args> void info(const char *const &fmt, args&&...);
template<class... args> void debug(const char *const &fmt, args&&...);
2016-08-26 06:38:15 +02:00
struct console_quiet
{
console_quiet(const bool &showmsg = true);
~console_quiet();
};
2016-08-26 06:38:15 +02:00
void flush();
void close();
void open();
void init();
void fini();
2017-03-18 04:24:25 +01:00
} // namespace log
} // namespace ircd
2016-08-26 06:38:15 +02:00
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::debug(const char *const &fmt,
args&&... a)
{
vlog(facility::DEBUG, fmt, va_rtti{std::forward<args>(a)...});
}
2016-08-26 06:38:15 +02:00
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::info(const char *const &fmt,
args&&... a)
2016-08-26 06:38:15 +02:00
{
2017-03-18 04:24:25 +01:00
vlog(facility::INFO, fmt, va_rtti{std::forward<args>(a)...});
}
template<class... args>
void
ircd::log::notice(const char *const &fmt,
args&&... a)
{
vlog(facility::NOTICE, fmt, va_rtti{std::forward<args>(a)...});
}
template<class... args>
void
ircd::log::warning(const char *const &fmt,
args&&... a)
{
vlog(facility::WARNING, fmt, va_rtti{std::forward<args>(a)...});
}
2016-08-26 06:38:15 +02:00
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::error(const char *const &fmt,
args&&... a)
2016-08-26 06:38:15 +02:00
{
2017-03-18 04:24:25 +01:00
vlog(facility::ERROR, fmt, va_rtti{std::forward<args>(a)...});
2016-08-26 06:38:15 +02:00
}
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::critical(const char *const &fmt,
args&&... a)
2016-08-26 06:38:15 +02:00
{
2017-03-18 04:24:25 +01:00
vlog(facility::CRITICAL, fmt, va_rtti{std::forward<args>(a)...});
2016-08-26 06:38:15 +02:00
}
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::log::debug(const char *const &fmt,
args&&... a)
2016-08-26 06:38:15 +02:00
{
2017-03-18 04:24:25 +01:00
operator()(facility::DEBUG, fmt, va_rtti{std::forward<args>(a)...});
2016-08-26 06:38:15 +02:00
}
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::log::info(const char *const &fmt,
args&&... a)
2016-08-26 06:38:15 +02:00
{
2017-03-18 04:24:25 +01:00
operator()(facility::INFO, fmt, va_rtti{std::forward<args>(a)...});
2016-08-26 06:38:15 +02:00
}
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::log::notice(const char *const &fmt,
args&&... a)
2016-08-26 06:38:15 +02:00
{
2017-03-18 04:24:25 +01:00
operator()(facility::NOTICE, fmt, va_rtti{std::forward<args>(a)...});
2016-08-26 06:38:15 +02:00
}
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::log::warning(const char *const &fmt,
args&&... a)
2016-08-26 06:38:15 +02:00
{
2017-03-18 04:24:25 +01:00
operator()(facility::WARNING, fmt, va_rtti{std::forward<args>(a)...});
2016-08-26 06:38:15 +02:00
}
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::log::error(const char *const &fmt,
args&&... a)
{
2017-03-18 04:24:25 +01:00
operator()(facility::ERROR, fmt, va_rtti{std::forward<args>(a)...});
2016-08-26 06:38:15 +02:00
}
2017-03-18 04:24:25 +01:00
template<class... args>
void
ircd::log::log::critical(const char *const &fmt,
args&&... a)
{
operator()(facility::CRITICAL, fmt, va_rtti{std::forward<args>(a)...});
}
template<class... args>
void
ircd::log::log::operator()(const facility &f,
const char *const &fmt,
args&&... a)
{
vlog(f, name, fmt, va_rtti{std::forward<args>(a)...});
}