diff options
Diffstat (limited to 'telepathy-logger/debug-internal.h')
-rw-r--r-- | telepathy-logger/debug-internal.h | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/telepathy-logger/debug-internal.h b/telepathy-logger/debug-internal.h deleted file mode 100644 index 8d39bcc..0000000 --- a/telepathy-logger/debug-internal.h +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (C) 2009 Collabora Ltd. - * - * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Authors: Cosimo Alfarano <cosimo.alfarano@collabora.co.uk> - */ - -#ifndef __TPL_DEBUG_H__ -#define __TPL_DEBUG_H__ - -#include "config.h" - -#include <string.h> - -#include <glib.h> -#include <telepathy-glib/telepathy-glib.h> - -#ifdef ENABLE_DEBUG - -G_BEGIN_DECLS - -typedef enum -{ - TPL_DEBUG_ACTION_CHAIN = 1 << 0, - TPL_DEBUG_CONF = 1 << 1, - TPL_DEBUG_ENTITY = 1 << 2, - TPL_DEBUG_CHANNEL = 1 << 3, - TPL_DEBUG_DBUS_SERVICE = 1 << 4, - TPL_DEBUG_LOG_EVENT = 1 << 5, - TPL_DEBUG_LOG_MANAGER = 1 << 6, - TPL_DEBUG_LOG_STORE = 1 << 7, - TPL_DEBUG_MAIN = 1 << 8, - TPL_DEBUG_OBSERVER = 1 << 9, - TPL_DEBUG_TESTSUITE = 1 << 10 -} TplDebugFlags; - -void _tpl_debug_set_flags_from_env (void); -void _tpl_debug_set_flags (TplDebugFlags flags); -gboolean _tpl_debug_flag_is_set (TplDebugFlags flag); -void _tpl_debug_free (void); -void _tpl_debug (TplDebugFlags flag, const gchar *format, ...) - G_GNUC_PRINTF (2, 3); -void _tpl_critical (TplDebugFlags flag, const gchar *format, ...) - G_GNUC_PRINTF (2, 3); - - -G_END_DECLS - -/* CRITICAL/PATH_CRITICAL needs to be always defined */ -#define CRITICAL(format, ...) \ - _tpl_critical (DEBUG_FLAG, "%s: " format, G_STRFUNC, ##__VA_ARGS__) -#define PATH_CRITICAL(_proxy, _format, ...) \ -G_STMT_START { \ - const gchar *_path; \ - g_assert (TP_IS_PROXY (_proxy)); \ - _path = tp_proxy_get_object_path (TP_PROXY (_proxy)); \ - if (TP_IS_CHANNEL (_proxy)) \ - _path += strlen (TP_CONN_OBJECT_PATH_BASE); \ - else if (TP_IS_ACCOUNT (_proxy)) \ - _path += strlen (TP_ACCOUNT_OBJECT_PATH_BASE); \ - CRITICAL (" %s: " _format, _path, ##__VA_ARGS__); \ -} G_STMT_END - -#ifdef DEBUG_FLAG - -#define DEBUG(format, ...) \ - _tpl_debug (DEBUG_FLAG, "%s: " format, G_STRFUNC, ##__VA_ARGS__) - -#define DEBUGGING _tpl_debug_flag_is_set (DEBUG_FLAG) - -/* The same of DEBUG, printing also the object-path property for the TpProxy, - * passed as first arg. prepending '_' to avoid shadowing local variables */ -#define PATH_DEBUG(_proxy, _format, ...) \ -G_STMT_START { \ - const gchar *_path; \ - g_assert (TP_IS_PROXY (_proxy)); \ - _path = tp_proxy_get_object_path (TP_PROXY (_proxy)); \ - if (TP_IS_CHANNEL (_proxy)) \ - _path += strlen (TP_CONN_OBJECT_PATH_BASE); \ - else if (TP_IS_ACCOUNT (_proxy)) \ - _path += strlen (TP_ACCOUNT_OBJECT_PATH_BASE); \ - DEBUG (" %s: " _format, _path, ##__VA_ARGS__); \ -} G_STMT_END - -#endif /* DEBUG_FLAG */ - -#else /* ENABLE_DEBUG */ - -#ifdef DEBUG_FLAG - -#define DEBUG(format, ...) G_STMT_START { } G_STMT_END -#define DEBUGGING 0 -#define PATH_DEBUG(chan, format, ...) G_STMT_START { } G_STMT_END - -#endif /* DEBUG_FLAG */ - -#define _tpl_debug_free() G_STMT_START { } G_STMT_END - -#endif /* ENABLE_DEBUG */ - -#endif /* __TPL_DEBUG_H__ */ |