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
|
/*
* logging for cowdancer.
* Copyright (C) 2016 Jessica Clarke
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#define _GNU_SOURCE
#include "log.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static const char *red = "\033[0;31m";
static const char *yellow = "\033[1;33m";
static const char *blue = "\033[0;34m";
static const char *reset = "\033[0m";
static int called_setupterm = 0;
static log_level filter_level = log_info;
static log_use_colors use_colors = log_use_colors_auto;
/* Same as use_colors, but stays as auto even when auto has been resolved */
static log_use_colors use_colors_orig = log_use_colors_auto;
static int term_supports_colors(void) {
const char *term;
term = getenv("TERM");
if (term &&
(!strcmp(term, "dumb") ||
!strcmp(term, "vt100") ||
!strcmp(term, "vt220"))) {
return 0;
}
/* assume colour support on all modern terminals */
return isatty(1);
}
static FILE *file_for_level(log_level level) {
switch (level & LOG_LEVEL_MASK) {
case log_debug:
case log_info:
return stdout;
case log_warn:
case log_error:
default:
return stderr;
}
}
log_level log_get_filter_level(void) {
return filter_level;
}
void log_set_filter_level(log_level filter_level_new) {
filter_level = filter_level_new;
}
log_use_colors log_get_use_colors(void) {
if (use_colors == log_use_colors_auto) {
if (term_supports_colors()) {
use_colors = log_use_colors_yes;
} else {
use_colors = log_use_colors_no;
}
}
return use_colors;
}
log_use_colors log_get_use_colors_unresolved(void) {
return use_colors_orig;
}
void log_set_use_colors(log_use_colors use_colors_new) {
use_colors = use_colors_orig = use_colors_new;
}
void log_perror(const char *s) {
if (s != NULL && *s) {
log_printf(log_error, "%s: %s", s, strerror(errno));
} else {
log_printf(log_error, "%s", strerror(errno));
}
}
void log_printf(log_level level, const char *format, ...) {
va_list args;
if (level < filter_level) {
return;
}
log_begin(level);
va_start(args, format);
log_vmiddle(level, format, args);
va_end(args);
log_end(level);
}
void log_begin(log_level level) {
const char *color_str;
FILE *file;
const char *level_str;
if (level < filter_level) {
return;
}
file = file_for_level(level);
if (use_colors == log_use_colors_auto) {
if (term_supports_colors()) {
use_colors = log_use_colors_yes;
} else {
use_colors = log_use_colors_no;
}
}
switch (level & LOG_LEVEL_MASK) {
case log_debug:
color_str = blue;
level_str = "D";
break;
case log_info:
color_str = reset;
level_str = "I";
break;
case log_warn:
color_str = yellow;
level_str = "W";
break;
case log_error:
color_str = red;
level_str = "E";
break;
default:
color_str = red;
level_str = "?";
break;
}
if (use_colors == log_use_colors_yes) {
fprintf(file, "%s", color_str);
}
fprintf(file, "%s: ", level_str);
}
void log_middle(log_level level, const char *format, ...) {
va_list args;
FILE *file;
if (level < filter_level) {
return;
}
file = file_for_level(level);
va_start(args, format);
vfprintf(file, format, args);
va_end(args);
}
void log_vmiddle(log_level level, const char *format, va_list args) {
FILE *file;
if (level < filter_level) {
return;
}
file = file_for_level(level);
vfprintf(file, format, args);
}
void log_end(log_level level) {
FILE *file;
if (level < filter_level) {
return;
}
file = file_for_level(level);
if (use_colors == log_use_colors_yes) {
fprintf(file, "%s\n", reset);
} else {
fprintf(file, "\n");
}
}
|