2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
|
2008-08-05 05:30:31 +04:00
|
|
|
* Copyright 2004 John Tytgat <joty@netsurf-browser.org>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-10-08 13:38:29 +04:00
|
|
|
*/
|
|
|
|
|
2017-08-31 09:57:35 +03:00
|
|
|
#ifndef NETSURF_LOG_H
|
|
|
|
#define NETSURF_LOG_H
|
2002-10-08 13:38:29 +04:00
|
|
|
|
2010-10-04 23:58:10 +04:00
|
|
|
#include <stdio.h>
|
2014-01-30 03:20:19 +04:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2011-04-02 17:05:55 +04:00
|
|
|
#include "utils/errors.h"
|
2010-10-04 23:58:10 +04:00
|
|
|
|
2014-01-30 03:20:19 +04:00
|
|
|
extern bool verbose_log;
|
|
|
|
|
2011-04-02 17:05:55 +04:00
|
|
|
/**
|
|
|
|
* Ensures the FILE handle is available to write logging to.
|
|
|
|
*
|
|
|
|
* This is provided by the frontends if required
|
|
|
|
*/
|
|
|
|
typedef bool(nslog_ensure_t)(FILE *fptr);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialise the logging system.
|
|
|
|
*
|
|
|
|
* Sets up everything required for logging. Processes the argv passed
|
|
|
|
* to remove the -v switch for verbose logging. If necessary ensures
|
|
|
|
* the output file handle is available.
|
|
|
|
*/
|
|
|
|
extern nserror nslog_init(nslog_ensure_t *ensure, int *pargc, char **argv);
|
|
|
|
|
2017-09-04 16:31:12 +03:00
|
|
|
/* ensure a logging level is defined */
|
2017-08-31 09:57:35 +03:00
|
|
|
#ifndef NETSURF_LOG_LEVEL
|
|
|
|
#define NETSURF_LOG_LEVEL INFO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define NSLOG_LVL(level) NSLOG_LEVEL_ ## level
|
|
|
|
#define NSLOG_EVL(level) NSLOG_LVL(level)
|
|
|
|
#define NSLOG_COMPILED_MIN_LEVEL NSLOG_EVL(NETSURF_LOG_LEVEL)
|
|
|
|
|
|
|
|
#ifdef WITH_NSLOG
|
|
|
|
|
|
|
|
#include <nslog/nslog.h>
|
|
|
|
|
|
|
|
NSLOG_DECLARE_CATEGORY(netsurf);
|
2017-09-04 16:31:12 +03:00
|
|
|
NSLOG_DECLARE_CATEGORY(llcache);
|
2017-09-05 16:08:48 +03:00
|
|
|
NSLOG_DECLARE_CATEGORY(fetch);
|
2017-09-06 20:23:14 +03:00
|
|
|
NSLOG_DECLARE_CATEGORY(plot);
|
2017-09-07 17:30:08 +03:00
|
|
|
NSLOG_DECLARE_CATEGORY(schedule);
|
2017-08-31 09:57:35 +03:00
|
|
|
|
|
|
|
#else /* WITH_NSLOG */
|
|
|
|
|
|
|
|
enum nslog_level {
|
|
|
|
NSLOG_LEVEL_DEEPDEBUG = 0,
|
|
|
|
NSLOG_LEVEL_DEBUG = 1,
|
|
|
|
NSLOG_LEVEL_VERBOSE = 2,
|
|
|
|
NSLOG_LEVEL_INFO = 3,
|
|
|
|
NSLOG_LEVEL_WARNING = 4,
|
|
|
|
NSLOG_LEVEL_ERROR = 5,
|
|
|
|
NSLOG_LEVEL_CRITICAL = 6
|
|
|
|
};
|
2011-04-04 02:23:14 +04:00
|
|
|
|
2015-05-29 18:18:18 +03:00
|
|
|
extern void nslog_log(const char *file, const char *func, int ln, const char *format, ...) __attribute__ ((format (printf, 4, 5)));
|
2010-10-04 23:58:10 +04:00
|
|
|
|
2004-07-09 00:13:35 +04:00
|
|
|
# ifdef __GNUC__
|
2011-03-12 22:13:27 +03:00
|
|
|
# define LOG_FN __PRETTY_FUNCTION__
|
|
|
|
# define LOG_LN __LINE__
|
2004-07-09 00:13:35 +04:00
|
|
|
# elif defined(__CC_NORCROFT)
|
2011-03-12 22:13:27 +03:00
|
|
|
# define LOG_FN __func__
|
|
|
|
# define LOG_LN __LINE__
|
2004-07-09 00:13:35 +04:00
|
|
|
# else
|
2011-03-12 22:13:27 +03:00
|
|
|
# define LOG_FN ""
|
|
|
|
# define LOG_LN __LINE__
|
2004-07-09 00:13:35 +04:00
|
|
|
# endif
|
2011-03-12 22:13:27 +03:00
|
|
|
|
2017-08-31 09:57:35 +03:00
|
|
|
#define NSLOG(catname, level, logmsg, args...) \
|
2012-11-05 19:49:23 +04:00
|
|
|
do { \
|
2017-08-31 09:57:35 +03:00
|
|
|
if (NSLOG_LEVEL_##level >= NSLOG_COMPILED_MIN_LEVEL) { \
|
|
|
|
nslog_log(__FILE__, LOG_FN, LOG_LN, logmsg , ##args); \
|
2012-11-05 19:49:23 +04:00
|
|
|
} \
|
2011-03-12 22:13:27 +03:00
|
|
|
} while(0)
|
|
|
|
|
2017-08-31 09:57:35 +03:00
|
|
|
#endif /* WITH_NSLOG */
|
2002-10-08 13:38:29 +04:00
|
|
|
|
|
|
|
#endif
|