2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-09 22:33:06 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2013-01-09 22:33:06 +01:00
|
|
|
#ifndef MPD_LOG_HXX
|
|
|
|
#define MPD_LOG_HXX
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2013-09-27 22:31:24 +02:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
/* damn you, windows.h! */
|
|
|
|
#ifdef ERROR
|
|
|
|
#undef ERROR
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
class Error;
|
2013-09-27 22:31:24 +02:00
|
|
|
class Domain;
|
|
|
|
|
|
|
|
enum class LogLevel {
|
2013-11-04 22:17:53 +01:00
|
|
|
/**
|
|
|
|
* Debug message for developers.
|
|
|
|
*/
|
2013-09-27 22:31:24 +02:00
|
|
|
DEBUG,
|
2013-11-04 22:17:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unimportant informational message.
|
|
|
|
*/
|
2013-09-27 22:31:24 +02:00
|
|
|
INFO,
|
2013-11-04 22:17:53 +01:00
|
|
|
|
2013-11-04 22:20:11 +01:00
|
|
|
/**
|
|
|
|
* Interesting informational message.
|
|
|
|
*/
|
|
|
|
DEFAULT,
|
|
|
|
|
2013-11-04 22:17:53 +01:00
|
|
|
/**
|
|
|
|
* Warning: something may be wrong.
|
|
|
|
*/
|
2013-09-27 22:31:24 +02:00
|
|
|
WARNING,
|
2013-11-04 22:17:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An error has occurred, an operation could not finish
|
|
|
|
* successfully.
|
|
|
|
*/
|
2013-09-27 22:31:24 +02:00
|
|
|
ERROR,
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
Log(const Domain &domain, LogLevel level, const char *msg);
|
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(3,4)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
LogFormat(const Domain &domain, LogLevel level, const char *fmt, ...);
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
LogDebug(const Domain &domain, const char *msg)
|
|
|
|
{
|
|
|
|
Log(domain, LogLevel::DEBUG, msg);
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(2,3)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
FormatDebug(const Domain &domain, const char *fmt, ...);
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
LogInfo(const Domain &domain, const char *msg)
|
|
|
|
{
|
|
|
|
Log(domain, LogLevel::INFO, msg);
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(2,3)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
FormatInfo(const Domain &domain, const char *fmt, ...);
|
|
|
|
|
2013-11-04 22:20:11 +01:00
|
|
|
static inline void
|
|
|
|
LogDefault(const Domain &domain, const char *msg)
|
|
|
|
{
|
|
|
|
Log(domain, LogLevel::DEFAULT, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
gcc_printf(2,3)
|
|
|
|
void
|
|
|
|
FormatDefault(const Domain &domain, const char *fmt, ...);
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static inline void
|
|
|
|
LogWarning(const Domain &domain, const char *msg)
|
|
|
|
{
|
|
|
|
Log(domain, LogLevel::WARNING, msg);
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(2,3)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
FormatWarning(const Domain &domain, const char *fmt, ...);
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
LogError(const Domain &domain, const char *msg)
|
|
|
|
{
|
|
|
|
Log(domain, LogLevel::ERROR, msg);
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(2,3)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
FormatError(const Domain &domain, const char *fmt, ...);
|
2011-09-09 21:40:28 +02:00
|
|
|
|
2009-02-19 08:35:20 +01:00
|
|
|
void
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(const Error &error);
|
2009-02-19 08:35:20 +01:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
LogError(const Error &error, const char *msg);
|
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(2,3)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
FormatError(const Error &error, const char *fmt, ...);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2012-08-14 23:16:46 +02:00
|
|
|
void
|
2013-09-27 22:31:24 +02:00
|
|
|
LogErrno(const Domain &domain, int e, const char *msg);
|
2012-08-14 23:16:46 +02:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
LogErrno(const Domain &domain, const char *msg);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(3,4)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
FormatErrno(const Domain &domain, int e, const char *fmt, ...);
|
|
|
|
|
2013-10-15 09:13:22 +02:00
|
|
|
gcc_printf(2,3)
|
2013-09-27 22:31:24 +02:00
|
|
|
void
|
|
|
|
FormatErrno(const Domain &domain, const char *fmt, ...);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-08-01 06:18:53 +02:00
|
|
|
#endif /* LOG_H */
|