]> git.0d.be Git - empathy.git/blob - libempathy/empathy-debug.c
Merge branch 'debugger'
[empathy.git] / libempathy / empathy-debug.c
1 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
2 /*
3  * Copyright (C) 2007 Collabora Ltd.
4  * Copyright (C) 2007 Nokia Corporation
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #include "config.h"
22
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdarg.h>
26 #include <sys/stat.h>
27 #include <unistd.h>
28
29 #include <glib.h>
30 #include <glib/gstdio.h>
31
32 #include <telepathy-glib/debug.h>
33
34 #include "empathy-debug.h"
35
36 #include "empathy-debugger.h"
37
38 #ifdef ENABLE_DEBUG
39
40 static EmpathyDebugFlags flags = 0;
41
42 static GDebugKey keys[] = {
43   { "Tp", EMPATHY_DEBUG_TP },
44   { "Chat", EMPATHY_DEBUG_CHAT },
45   { "Contact", EMPATHY_DEBUG_CONTACT },
46   { "Account", EMPATHY_DEBUG_ACCOUNT },
47   { "Irc", EMPATHY_DEBUG_IRC },
48   { "Dispatcher", EMPATHY_DEBUG_DISPATCHER },
49   { "Ft", EMPATHY_DEBUG_FT },
50   { "Location", EMPATHY_DEBUG_LOCATION },
51   { "Other", EMPATHY_DEBUG_OTHER },
52   { 0, }
53 };
54
55 static void
56 debug_set_flags (EmpathyDebugFlags new_flags)
57 {
58   flags |= new_flags;
59 }
60
61 void
62 empathy_debug_set_flags (const gchar *flags_string)
63 {
64   guint nkeys;
65
66   for (nkeys = 0; keys[nkeys].value; nkeys++);
67
68   tp_debug_set_flags (flags_string);
69
70   if (flags_string)
71       debug_set_flags (g_parse_debug_string (flags_string, keys, nkeys));
72 }
73
74 gboolean
75 empathy_debug_flag_is_set (EmpathyDebugFlags flag)
76 {
77   return (flag & flags) != 0;
78 }
79
80 GHashTable *flag_to_keys = NULL;
81
82 static const gchar *
83 debug_flag_to_key (EmpathyDebugFlags flag)
84 {
85   if (flag_to_keys == NULL)
86     {
87       guint i;
88
89       flag_to_keys = g_hash_table_new_full (g_direct_hash, g_direct_equal,
90           NULL, g_free);
91
92       for (i = 0; keys[i].value; i++)
93         {
94           GDebugKey key = (GDebugKey) keys[i];
95           g_hash_table_insert (flag_to_keys, GUINT_TO_POINTER (key.value),
96               g_strdup (key.key));
97         }
98     }
99
100   return g_hash_table_lookup (flag_to_keys, GUINT_TO_POINTER (flag));
101 }
102
103 void
104 empathy_debug_free (void)
105 {
106   if (flag_to_keys == NULL)
107     return;
108
109   g_hash_table_destroy (flag_to_keys);
110   flag_to_keys = NULL;
111 }
112
113 static void
114 log_to_debugger (EmpathyDebugFlags flag,
115     const gchar *message)
116 {
117   EmpathyDebugger *dbg = empathy_debugger_get_singleton ();
118   gchar *domain;
119   GTimeVal now;
120
121   g_get_current_time (&now);
122
123   domain = g_strdup_printf ("%s/%s", G_LOG_DOMAIN, debug_flag_to_key (flag));
124
125   empathy_debugger_add_message (dbg, &now, domain, G_LOG_LEVEL_DEBUG, message);
126
127   g_free (domain);
128 }
129
130 void
131 empathy_debug (EmpathyDebugFlags flag,
132     const gchar *format,
133     ...)
134 {
135   gchar *message;
136   va_list args;
137
138   va_start (args, format);
139   message = g_strdup_vprintf (format, args);
140   va_end (args);
141
142   log_to_debugger (flag, message);
143
144   if (flag & flags)
145     g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "%s", message);
146
147   g_free (message);
148 }
149
150 #else
151
152 gboolean
153 empathy_debug_flag_is_set (EmpathyDebugFlags flag)
154 {
155   return FALSE;
156 }
157
158 void
159 empathy_debug (EmpathyDebugFlags flag, const gchar *format, ...)
160 {
161 }
162
163 void
164 empathy_debug_set_flags (const gchar *flags_string)
165 {
166 }
167
168 #endif /* ENABLE_DEBUG */
169