]> git.0d.be Git - empathy.git/blob - libempathy/empathy-debug.c
Merge call branch from Elliot Fairweather with cleanups from Xavier Claessens.
[empathy.git] / libempathy / empathy-debug.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2006-2007 Imendio AB
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors: Richard Hult <richard@imendio.com>
21  */
22
23 #include "config.h"
24
25 #include <stdarg.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <fcntl.h>
31 #include <errno.h>
32
33 #include <glib.h>
34 #include <glib/gprintf.h>
35 #include <glib/gstdio.h>
36
37 #include <telepathy-glib/debug.h>
38
39 /* Set EMPATHY_DEBUG to a colon/comma/space separated list of domains, or "all"
40  * to get all debug output.
41  */
42
43 #include "empathy-debug.h"
44
45 static gchar    **debug_strv;
46 static gboolean   all_domains = FALSE;
47
48 static void
49 debug_init (void)
50 {
51         static gboolean inited = FALSE;
52
53         if (!inited) {
54                 const gchar *env;
55                 gint         i;
56
57                 env = g_getenv ("EMPATHY_DEBUG");
58                 tp_debug_set_flags (env);
59
60                 if (env) {
61                         debug_strv = g_strsplit_set (env, ":, ", 0);
62                 } else {
63                         debug_strv = NULL;
64                 }
65
66                 for (i = 0; debug_strv && debug_strv[i]; i++) {
67                         if (strcmp ("all", debug_strv[i]) == 0) {
68                                 all_domains = TRUE;
69                         }
70                 }
71
72                 inited = TRUE;
73         }
74 }
75
76 void
77 empathy_debug_impl (const gchar *domain, const gchar *msg, ...)
78 {
79         gint i;
80
81         g_return_if_fail (domain != NULL);
82         g_return_if_fail (msg != NULL);
83
84         debug_init ();
85
86         for (i = 0; debug_strv && debug_strv[i]; i++) {
87                 if (all_domains || strcmp (domain, debug_strv[i]) == 0) {
88                         va_list args;
89
90                         g_print ("%s: ", domain);
91
92                         va_start (args, msg);
93                         g_vprintf (msg, args);
94                         va_end (args);
95
96                         g_print ("\n");
97                         break;
98                 }
99         }
100 }
101
102 void
103 empathy_debug_set_log_file_from_env (void)
104 {
105         const gchar *output_file;
106         gint         out;
107
108         output_file = g_getenv ("EMPATHY_LOGFILE");
109         if (output_file == NULL) {
110                 return;
111         }
112
113         out = g_open (output_file, O_WRONLY | O_CREAT, 0644);
114         if (out == -1) {
115                 g_warning ("Can't open logfile '%s': %s", output_file,
116                            g_strerror (errno));
117                 return;
118         }
119
120         if (dup2 (out, STDOUT_FILENO) == -1) {
121                 g_warning ("Error when duplicating stdout file descriptor: %s",
122                            g_strerror (errno));
123                 return;
124         }
125
126         if (dup2 (out, STDERR_FILENO) == -1) {
127                 g_warning ("Error when duplicating stderr file descriptor: %s",
128                            g_strerror (errno));
129                 return;
130         }
131 }
132