/* Debugging/Logging support code */ /* (C) 2008 by Harald Welte * (C) 2008 by Holger Hans Peter Freyther * All Rights Reserved * * 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 #include #include #include #include #include #include unsigned int debug_mask = 0xffffffff & ~(DMI|DMIB); struct debug_info { const char *name; const char *color; const char *description; int number; }; #define DEBUG_CATEGORY(NUMBER, NAME, COLOR, DESCRIPTION) \ { .name = NAME, .color = COLOR, .description = DESCRIPTION, .number = NUMBER }, #define ARRAY_SIZE(array) (sizeof(array)/sizeof(array[0])) static const struct debug_info debug_info[] = { DEBUG_CATEGORY(DRLL, "DRLL", "\033[1;31m", "") DEBUG_CATEGORY(DCC, "DCC", "\033[1;32m", "") DEBUG_CATEGORY(DNM, "DMM", "\033[1;33m", "") DEBUG_CATEGORY(DRR, "DRR", "\033[1;34m", "") DEBUG_CATEGORY(DRSL, "DRSSL","\033[1;35m", "") DEBUG_CATEGORY(DNM, "DNM", "\033[1;36m", "") DEBUG_CATEGORY(DSMS, "DSMS", "\033[1;37m", "") DEBUG_CATEGORY(DPAG, "DPAG", "\033[1;38m", "") }; static int use_color = 1; void debug_use_color(int color) { use_color = color; } /* * Parse the category mask. * category1:category2:category3 */ void debug_parse_category_mask(const char *_mask) { unsigned int new_mask = 0; int i = 0; char *mask = strdup(_mask); char *category_token = NULL; category_token = strtok(mask, ":"); do { for (i = 0; i < ARRAY_SIZE(debug_info); ++i) { if (strcasecmp(debug_info[i].name, category_token) == 0) new_mask |= debug_info[i].number; } } while (category_token = strtok(NULL, ":")); free(mask); debug_mask = new_mask; } const char* color(int subsys) { int i = 0; for (i = 0; use_color && i < ARRAY_SIZE(debug_info); ++i) { if (debug_info[i].number == subsys) return debug_info[i].color; } return ""; } void debugp(unsigned int subsys, char *file, int line, const char *format, ...) { char *timestr; va_list ap; time_t tm; FILE *outfd = stderr; if (!(debug_mask & subsys)) return; va_start(ap, format); tm = time(NULL); timestr = ctime(&tm); timestr[strlen(timestr)-1] = '\0'; fprintf(outfd, "%s%s <%4.4x> %s:%d ", color(subsys), timestr, subsys, file, line); vfprintf(outfd, format, ap); fprintf(outfd, "\033[0;m"); va_end(ap); fflush(outfd); }