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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2010 Richard Hughes <richard@hughsie.com>
*
* Licensed under the GNU General Public License Version 2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include <glib/gi18n.h>
#include <unistd.h>
#include <stdio.h>
#include <pk-debug.h>
static gboolean _verbose = FALSE;
static gboolean _console = FALSE;
/**
* pk_debug_is_verbose:
*
* Check if verbose debugging is enabled.
*
* Returns: %TRUE if we have debugging enabled
**/
gboolean
pk_debug_is_verbose (void)
{
/* local first */
if (_verbose)
return TRUE;
/* fall back to env variable */
if (g_getenv ("VERBOSE") != NULL)
return TRUE;
return FALSE;
}
/*
* pk_debug_ignore_cb:
**/
static void
pk_debug_ignore_cb (const gchar *log_domain, GLogLevelFlags log_level,
const gchar *message, gpointer user_data)
{
}
#define CONSOLE_RESET 0
#define CONSOLE_BLACK 30
#define CONSOLE_RED 31
#define CONSOLE_GREEN 32
#define CONSOLE_YELLOW 33
#define CONSOLE_BLUE 34
#define CONSOLE_MAGENTA 35
#define CONSOLE_CYAN 36
#define CONSOLE_WHITE 37
#define PK_DEBUG_LOG_DOMAIN_LENGTH 20
/*
* pk_debug_handler_cb:
**/
static void
pk_debug_handler_cb (const gchar *log_domain, GLogLevelFlags log_level,
const gchar *message, gpointer user_data)
{
gchar str_time[255];
time_t the_time;
static GMutex mutex;
/* lock */
g_mutex_lock (&mutex);
/* time header */
time (&the_time);
strftime (str_time, 254, "%H:%M:%S", localtime (&the_time));
/* no color please, we're British */
if (!_console) {
if (log_level == G_LOG_LEVEL_DEBUG) {
g_print ("%s\t%s\t%s\n", str_time, log_domain, message);
} else {
g_print ("***\n%s\t%s\t%s\n***\n", str_time, log_domain, message);
}
goto out;
}
/* time in green */
g_print ("%c[%dm%s\t", 0x1B, CONSOLE_GREEN, str_time);
/* log domain in either blue */
if (g_strcmp0 (log_domain, G_LOG_DOMAIN) == 0)
g_print ("%c[%dm%s%c[%dm", 0x1B, CONSOLE_BLUE, log_domain, 0x1B, CONSOLE_RESET);
else
g_print ("%c[%dm%s%c[%dm", 0x1B, CONSOLE_CYAN, log_domain, 0x1B, CONSOLE_RESET);
/* pad with spaces */
if (log_domain != NULL) {
guint len = strlen (log_domain);
for (guint i = len; i < PK_DEBUG_LOG_DOMAIN_LENGTH; i++)
g_print (" ");
}
/* critical is also in red */
if (log_level == G_LOG_LEVEL_CRITICAL ||
log_level == G_LOG_LEVEL_WARNING ||
log_level == G_LOG_LEVEL_ERROR) {
g_print ("%c[%dm%s\n%c[%dm", 0x1B, CONSOLE_RED, message, 0x1B, CONSOLE_RESET);
} else {
/* debug in blue */
g_print ("%c[%dm%s\n%c[%dm", 0x1B, CONSOLE_BLUE, message, 0x1B, CONSOLE_RESET);
}
out:
/* unlock */
g_mutex_unlock (&mutex);
}
/*
* pk_debug_pre_parse_hook:
*/
static gboolean
pk_debug_pre_parse_hook (GOptionContext *context, GOptionGroup *group, gpointer data, GError **error)
{
const GOptionEntry main_entries[] = {
{ "verbose", 'v', 0, G_OPTION_ARG_NONE, &_verbose,
/* TRANSLATORS: turn on all debugging */
N_("Show debugging information for all files"), NULL },
G_OPTION_ENTRY_NULL
};
/* add main entry */
g_option_context_add_main_entries (context, main_entries, NULL);
return TRUE;
}
/**
* pk_debug_add_log_domain:
* @log_domain: a log domain
*
* Add a log domain to the debug output.
*/
void
pk_debug_add_log_domain (const gchar *log_domain)
{
if (_verbose) {
g_log_set_fatal_mask (log_domain, G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
g_log_set_handler (log_domain,
G_LOG_LEVEL_ERROR |
G_LOG_LEVEL_CRITICAL |
G_LOG_LEVEL_DEBUG |
G_LOG_LEVEL_WARNING,
pk_debug_handler_cb, NULL);
} else {
/* hide all debugging */
g_log_set_handler (log_domain,
G_LOG_LEVEL_DEBUG | G_LOG_LEVEL_WARNING,
pk_debug_ignore_cb, NULL);
}
}
/**
* pk_debug_set_verbose:
* @verbose: %TRUE if verbose debugging should be enabled.
*
* Set if verbose debugging is enabled.
*/
void
pk_debug_set_verbose (gboolean verbose)
{
_verbose = verbose;
_console = (isatty (fileno (stdout)) == 1);
}
/*
* pk_debug_post_parse_hook:
*/
static gboolean
pk_debug_post_parse_hook (GOptionContext *context, GOptionGroup *group, gpointer data, GError **error)
{
/* verbose? */
pk_debug_add_log_domain (G_LOG_DOMAIN);
_console = (isatty (fileno (stdout)) == 1);
g_debug ("Verbose debugging %s (on console %i)", _verbose ? "enabled" : "disabled", _console);
return TRUE;
}
/**
* pk_debug_get_option_group: (skip)
*
* Returns a #GOptionGroup for the commandline arguments recognized
* by debugging. You should add this group to your #GOptionContext
* with g_option_context_add_group(), if you are using
* g_option_context_parse() to parse your commandline arguments.
*
* Returns: a #GOptionGroup for the commandline arguments
*/
GOptionGroup *
pk_debug_get_option_group (void)
{
GOptionGroup *group;
group = g_option_group_new ("debug", _("Debugging Options"), _("Show debugging options"), NULL, NULL);
g_option_group_set_parse_hooks (group, pk_debug_pre_parse_hook, pk_debug_post_parse_hook);
return group;
}
|