2008-11-06 16:36:07 +00:00
|
|
|
/*
|
|
|
|
* logging.h: internal logging and debugging
|
|
|
|
*
|
2011-02-16 23:37:57 +00:00
|
|
|
* Copyright (C) 2006-2008, 2011 Red Hat, Inc.
|
2008-11-06 16:36:07 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VIRTLOG_H_
|
2010-03-09 18:22:22 +00:00
|
|
|
# define __VIRTLOG_H_
|
2008-11-06 16:36:07 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
|
|
|
# include "buf.h"
|
2008-11-06 16:36:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If configured with --enable-debug=yes then library calls
|
|
|
|
* are printed to stderr for debugging or to an appropriate channel
|
2011-02-16 23:37:57 +00:00
|
|
|
* defined at runtime from the libvirt daemon configuration file
|
2008-11-06 16:36:07 +00:00
|
|
|
*/
|
2010-03-09 18:22:22 +00:00
|
|
|
# ifdef ENABLE_DEBUG
|
|
|
|
# define VIR_DEBUG_INT(category, f, l, fmt,...) \
|
2008-12-22 10:44:10 +00:00
|
|
|
virLogMessage(category, VIR_LOG_DEBUG, f, l, 0, fmt, __VA_ARGS__)
|
2010-03-09 18:22:22 +00:00
|
|
|
# else
|
|
|
|
# define VIR_DEBUG_INT(category, f, l, fmt,...) \
|
2009-06-26 15:08:04 +00:00
|
|
|
do { } while (0)
|
2010-03-09 18:22:22 +00:00
|
|
|
# endif /* !ENABLE_DEBUG */
|
2009-06-26 15:08:04 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_INFO_INT(category, f, l, fmt,...) \
|
2008-12-22 10:44:10 +00:00
|
|
|
virLogMessage(category, VIR_LOG_INFO, f, l, 0, fmt, __VA_ARGS__)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_WARN_INT(category, f, l, fmt,...) \
|
2008-12-22 10:44:10 +00:00
|
|
|
virLogMessage(category, VIR_LOG_WARN, f, l, 0, fmt, __VA_ARGS__)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_ERROR_INT(category, f, l, fmt,...) \
|
2008-12-22 10:44:10 +00:00
|
|
|
virLogMessage(category, VIR_LOG_ERROR, f, l, 0, fmt, __VA_ARGS__)
|
2008-11-06 16:36:07 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_DEBUG(fmt,...) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_DEBUG_INT("file." __FILE__, __func__, __LINE__, fmt, __VA_ARGS__)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_DEBUG0(msg) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_DEBUG_INT("file." __FILE__, __func__, __LINE__, "%s", msg)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_INFO(fmt,...) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_INFO_INT("file." __FILE__, __func__, __LINE__, fmt, __VA_ARGS__)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_INFO0(msg) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_INFO_INT("file." __FILE__, __func__, __LINE__, "%s", msg)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_WARN(fmt,...) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_WARN_INT("file." __FILE__, __func__, __LINE__, fmt, __VA_ARGS__)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_WARN0(msg) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_WARN_INT("file." __FILE__, __func__, __LINE__, "%s", msg)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_ERROR(fmt,...) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_ERROR_INT("file." __FILE__, __func__, __LINE__, fmt, __VA_ARGS__)
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_ERROR0(msg) \
|
2009-01-06 18:32:03 +00:00
|
|
|
VIR_ERROR_INT("file." __FILE__, __func__, __LINE__, "%s", msg)
|
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
/*
|
|
|
|
* To be made public
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
VIR_LOG_DEBUG = 1,
|
|
|
|
VIR_LOG_INFO,
|
|
|
|
VIR_LOG_WARN,
|
|
|
|
VIR_LOG_ERROR,
|
|
|
|
} virLogPriority;
|
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VIR_LOG_DEFAULT VIR_LOG_WARN
|
2009-07-01 11:21:15 +00:00
|
|
|
|
2009-10-08 15:05:01 +00:00
|
|
|
typedef enum {
|
|
|
|
VIR_LOG_TO_STDERR = 1,
|
|
|
|
VIR_LOG_TO_SYSLOG,
|
|
|
|
VIR_LOG_TO_FILE,
|
|
|
|
} virLogDestination;
|
|
|
|
|
2008-12-22 10:36:54 +00:00
|
|
|
/**
|
|
|
|
* virLogOutputFunc:
|
|
|
|
* @category: the category for the message
|
|
|
|
* @priority: the priority for the message
|
2008-12-22 10:44:10 +00:00
|
|
|
* @funcname: the function emitting the message
|
|
|
|
* @linenr: line where the message was emitted
|
2008-12-22 10:36:54 +00:00
|
|
|
* @msg: the message to log, preformatted and zero terminated
|
|
|
|
* @len: the lenght of the message in bytes without the terminating zero
|
2008-12-22 10:44:10 +00:00
|
|
|
* @data: extra output logging data
|
2008-12-22 10:36:54 +00:00
|
|
|
*
|
|
|
|
* Callback function used to output messages
|
|
|
|
*
|
|
|
|
* Returns the number of bytes written or -1 in case of error
|
|
|
|
*/
|
2008-12-22 10:44:10 +00:00
|
|
|
typedef int (*virLogOutputFunc) (const char *category, int priority,
|
|
|
|
const char *funcname, long long lineno,
|
|
|
|
const char *str, int len, void *data);
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* virLogCloseFunc:
|
|
|
|
* @data: extra output logging data
|
|
|
|
*
|
|
|
|
* Callback function used to close a log output
|
|
|
|
*/
|
|
|
|
typedef void (*virLogCloseFunc) (void *data);
|
|
|
|
|
2009-08-06 13:45:50 +00:00
|
|
|
extern int virLogGetNbFilters(void);
|
|
|
|
extern int virLogGetNbOutputs(void);
|
2009-10-08 15:05:01 +00:00
|
|
|
extern char *virLogGetFilters(void);
|
|
|
|
extern char *virLogGetOutputs(void);
|
2009-08-06 13:45:50 +00:00
|
|
|
extern int virLogGetDefaultPriority(void);
|
2008-12-22 10:36:54 +00:00
|
|
|
extern int virLogSetDefaultPriority(int priority);
|
2009-08-06 13:55:07 +00:00
|
|
|
extern void virLogSetFromEnv(void);
|
2008-12-22 10:36:54 +00:00
|
|
|
extern int virLogDefineFilter(const char *match, int priority, int flags);
|
2009-10-08 15:05:01 +00:00
|
|
|
extern int virLogDefineOutput(virLogOutputFunc f, virLogCloseFunc c, void *data,
|
|
|
|
int priority, int dest, const char *name,
|
|
|
|
int flags);
|
2008-12-22 10:36:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal logging API
|
|
|
|
*/
|
2008-11-06 16:36:07 +00:00
|
|
|
|
2010-02-03 16:12:57 +00:00
|
|
|
extern void virLogLock(void);
|
|
|
|
extern void virLogUnlock(void);
|
2008-12-22 10:36:54 +00:00
|
|
|
extern int virLogStartup(void);
|
|
|
|
extern int virLogReset(void);
|
|
|
|
extern void virLogShutdown(void);
|
2009-08-06 13:55:07 +00:00
|
|
|
extern int virLogParseDefaultPriority(const char *priority);
|
2008-12-22 10:36:54 +00:00
|
|
|
extern int virLogParseFilters(const char *filters);
|
|
|
|
extern int virLogParseOutputs(const char *output);
|
2008-12-22 10:44:10 +00:00
|
|
|
extern void virLogMessage(const char *category, int priority,
|
|
|
|
const char *funcname, long long linenr, int flags,
|
Fix misc Win32 compile warnings
GCC >= 4.4 assumes the 'printf' attribute refers to the native
runtime libraries format specifiers. Thanks to gnulib, libvirt
has GNU format specifiers everywhere. This means we need to
use 'gnu_printf' with GCC >= 4.4 to get correct compiler
checking of printf format specifiers.
* HACKING: Document new rules for ATTRIBUTE_FMT_PRINTF
* autobuild.sh, mingw32-libvirt.spec.in: Disable OpenNebula
driver on mingw32 builds
* qemud/dispatch.h, qemud/qemu.h, src/buf.h src/internal.h,
src/logging.h, src/security.h, src/sexpr.h, src/util.h,
src/virterror_internal.h, src/xend_internal.c: Change
over to ATTRIBUTE_FMT_PRINTF.
* src/virsh.c: Disable 'cd' and 'pwd' commands on Win32
since they don't compile
* src/threads-win32.c: Add missing return value check
2009-07-23 15:07:32 +00:00
|
|
|
const char *fmt, ...) ATTRIBUTE_FMT_PRINTF(6, 7);
|
2011-03-08 10:31:20 +00:00
|
|
|
extern int virLogSetBufferSize(int size);
|
2011-03-03 08:32:18 +00:00
|
|
|
extern void virLogEmergencyDumpAll(int signum);
|
2008-11-06 16:36:07 +00:00
|
|
|
#endif
|