File: debug.h

package info (click to toggle)
telepathy-rakia 0.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 3,028 kB
  • ctags: 1,720
  • sloc: sh: 11,552; ansic: 9,892; python: 4,532; makefile: 421; xml: 15
file content (71 lines) | stat: -rw-r--r-- 2,325 bytes parent folder | download | duplicates (3)
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
/*
 * debug.h - Debug helpers for Telepathy-Rakia, headers
 * Copyright (C) 2007-2008 Nokia Corporation
 *
 * This work 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 work 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 work; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef __DEBUG_H__
#define __DEBUG_H__

#include <stdarg.h>

#include <glib.h>

G_BEGIN_DECLS

typedef enum
{
  RAKIA_DEBUG_CONNECTION    = 1 << 0,
  RAKIA_DEBUG_MEDIA         = 1 << 1,
  RAKIA_DEBUG_IM            = 1 << 2,
  RAKIA_DEBUG_EVENTS        = 1 << 3,
  RAKIA_DEBUG_SOFIA         = 1 << 4,
  RAKIA_DEBUG_UTILITIES     = 1 << 5,
  RAKIA_DEBUG_CALL          = 1 << 6,
} RakiaDebugFlags;

void rakia_debug_set_flags_from_env (void);
void rakia_debug_set_flags (RakiaDebugFlags flags);
gboolean rakia_debug_flag_is_set (RakiaDebugFlags flag);
void rakia_log (RakiaDebugFlags flag, GLogLevelFlags level,
    const gchar *format, ...) G_GNUC_PRINTF (3, 4);
void rakia_debug_free (void);

void rakia_sofia_log_handler (void *logdata, const char *format, va_list args);

G_END_DECLS

#if defined(ENABLE_DEBUG) && defined(DEBUG_FLAG)

#define DEBUG(format, ...) \
  rakia_log(DEBUG_FLAG, G_LOG_LEVEL_DEBUG, "%s: " format, \
      G_STRFUNC, ##__VA_ARGS__)
#define WARNING(format, ...) \
  rakia_log(DEBUG_FLAG, G_LOG_LEVEL_WARNING, "%s: " format, \
      G_STRFUNC, ##__VA_ARGS__)
#define MESSAGE(format, ...) \
  rakia_log(DEBUG_FLAG, G_LOG_LEVEL_MESSAGE, "%s: " format, \
      G_STRFUNC, ##__VA_ARGS__)

#else /* ENABLE_DEBUG && DEBUG_FLAG */

#define DEBUG(format, ...) G_STMT_START { } G_STMT_END
#define WARNING(format, ...) G_STMT_START { } G_STMT_END
#define MESSAGE(format, ...) G_STMT_START { } G_STMT_END

#endif /* ENABLE_DEBUG && DEBUG_FLAG */

#endif /* __DEBUG_H__ */