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 93 94 95 96 97 98 99 100 101
|
/*
* nemo-debug: debug loggers for nemo
*
* Copyright (C) 2007 Collabora Ltd.
* Copyright (C) 2007 Nokia Corporation
* Copyright (C) 2010 Red Hat, Inc.
*
* 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
*
* Based on Empathy's empathy-debug.
*/
#ifndef __NEMO_DEBUG_H__
#define __NEMO_DEBUG_H__
#include <config.h>
#include <glib.h>
G_BEGIN_DECLS
#ifdef ENABLE_DEBUG
typedef enum {
NEMO_DEBUG_APPLICATION = 1 << 1,
NEMO_DEBUG_BOOKMARKS = 1 << 2,
NEMO_DEBUG_DBUS = 1 << 3,
NEMO_DEBUG_DIRECTORY_VIEW = 1 << 4,
NEMO_DEBUG_FILE = 1 << 5,
NEMO_DEBUG_ICON_CONTAINER = 1 << 6,
NEMO_DEBUG_ICON_VIEW = 1 << 7,
NEMO_DEBUG_LIST_VIEW = 1 << 8,
NEMO_DEBUG_MIME = 1 << 9,
NEMO_DEBUG_PLACES = 1 << 10,
NEMO_DEBUG_PREVIEWER = 1 << 11,
NEMO_DEBUG_SMCLIENT = 1 << 12,
NEMO_DEBUG_WINDOW = 1 << 13,
NEMO_DEBUG_UNDO = 1 << 14,
NEMO_DEBUG_ACTIONS = 1 << 15,
NEMO_DEBUG_DESKTOP = 1 << 16,
NEMO_DEBUG_THUMBNAILS = 1 << 17,
NEMO_DEBUG_SEARCH = 1 << 18,
NEMO_DEBUG_PREFERENCES = 1 << 19
} DebugFlags;
void nemo_debug_set_flags (DebugFlags flags);
gboolean nemo_debug_flag_is_set (DebugFlags flag);
void nemo_debug_valist (DebugFlags flag,
const gchar *format, va_list args);
void nemo_debug (DebugFlags flag, const gchar *format, ...)
G_GNUC_PRINTF (2, 3);
void nemo_debug_files (DebugFlags flag, GList *files,
const gchar *format, ...) G_GNUC_PRINTF (3, 4);
#ifdef DEBUG_FLAG
#define DEBUG(format, ...) \
nemo_debug (DEBUG_FLAG, "%s: %s: " format, G_STRFUNC, G_STRLOC, \
##__VA_ARGS__)
#define DEBUG_FILES(files, format, ...) \
nemo_debug_files (DEBUG_FLAG, files, "%s:" format, G_STRFUNC, \
##__VA_ARGS__)
#define DEBUGGING nemo_debug_flag_is_set(DEBUG_FLAG)
#endif /* DEBUG_FLAG */
#else /* ENABLE_DEBUG */
#ifdef DEBUG_FLAG
#define DEBUG(format, ...) \
G_STMT_START { } G_STMT_END
#define DEBUG_FILES(files, format, ...) \
G_STMT_START { } G_STMT_END
#define DEBUGGING 0
#endif /* DEBUG_FLAG */
#endif /* ENABLE_DEBUG */
G_END_DECLS
#endif /* __NEMO_DEBUG_H__ */
|