/usr/include/swami/libswami/SwamiLog.h is in libswami-dev 2.0.0+svn389-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | /*
* SwamiLog.h - Message logging and debugging functions
*
* Swami
* Copyright (C) 1999-2010 Joshua "Element" Green <jgreen@users.sourceforge.net>
*
* 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; version 2
* of the License only.
*
* 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.
*
* 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., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA or point your web browser to http://www.gnu.org.
*/
#ifndef __SWAMI_LOG_H__
#define __SWAMI_LOG_H__
#include <glib.h>
/* Swami domain for g_set_error */
#define SWAMI_ERROR swami_error_quark()
typedef enum
{
SWAMI_ERROR_FAIL, /* general failure */
SWAMI_ERROR_INVALID, /* invalid parameter/setting/etc */
SWAMI_ERROR_CANCELED, /* an operation was canceled (SwamiLoopFinder) */
SWAMI_ERROR_UNSUPPORTED, /* an unsupported feature or unhandled operation */
SWAMI_ERROR_IO /* I/O related error */
} SwamiError;
GQuark swami_error_quark (void);
#ifdef __GNUC__
#define swami_log_if_fail(expr) (!(expr) && \
_swami_ret_g_log (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, \
"file %s: line %d (%s): assertion `%s' failed.", \
__FILE__, __LINE__, __PRETTY_FUNCTION__, \
#expr))
#else /* !GNUC */
#define swami_log_if_fail(expr) (!(expr) && \
_swami_ret_g_log (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, \
"file %s: line %d: assertion `%s' failed.", \
__FILE__, __LINE__, \
#expr))
#endif
int _swami_ret_g_log (const gchar *log_domain, GLogLevelFlags log_level,
const gchar *format, ...);
extern void _swami_pretty_log_handler (GLogLevelFlags flags,
char *file, char *function, int line,
char *format, ...);
#ifdef SWAMI_DEBUG_ENABLED
#define SWAMI_DEBUG(format, args...) \
_swami_pretty_log_handler (G_LOG_LEVEL_DEBUG, \
__FILE__, __PRETTY_FUNCTION__, __LINE__, \
format, ## args);
#else
#define SWAMI_DEBUG(format, args...)
#endif
#define SWAMI_INFO(format, args...) \
_swami_pretty_log_handler (G_LOG_LEVEL_INFO, \
__FILE__, __PRETTY_FUNCTION__, __LINE__, \
format, ## args);
#define SWAMI_PARAM_ERROR(param) \
_swami_pretty_log_handler (G_LOG_LEVEL_CRITICAL, \
__FILE__, __PRETTY_FUNCTION__, __LINE__, \
"Invalid function parameter value for '%s'.", \
param);
#define SWAMI_CRITICAL(format, args...) \
_swami_pretty_log_handler (G_LOG_LEVEL_CRITICAL, \
__FILE__, __PRETTY_FUNCTION__, __LINE__, \
format, ## args);
#endif /* __SWAMI_LOG_H__ */
|