summaryrefslogtreecommitdiff
path: root/ctdb/common/ctdb_logging.c
blob: e76966c822c83a91983bf885dd6b6bac126c4469 (plain)
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
/* 
   ctdb logging code

   Copyright (C) Ronnie Sahlberg 2009

   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 3 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, see <http://www.gnu.org/licenses/>.
*/

#include <ctype.h>
#include "replace.h"
#include "ctdb_logging.h"

const char *debug_extra = "";

struct debug_levels {
	int32_t	level;
	const char *description;
};

static struct debug_levels debug_levels[] = {
	{DEBUG_ERR,	"ERR"},
	{DEBUG_WARNING,	"WARNING"},
	{DEBUG_NOTICE,	"NOTICE"},
	{DEBUG_INFO,	"INFO"},
	{DEBUG_DEBUG,	"DEBUG"},
	{0, NULL}
};

const char *get_debug_by_level(int32_t level)
{
	int i;

	for (i=0; debug_levels[i].description != NULL; i++) {
		if (debug_levels[i].level == level) {
			return debug_levels[i].description;
		}
	}
	return NULL;
}

static bool get_debug_by_desc(const char *desc, int32_t *level)
{
	int i;

	for (i=0; debug_levels[i].description != NULL; i++) {
		if (!strcasecmp(debug_levels[i].description, desc)) {
			*level = debug_levels[i].level;
			return true;
		}
	}

	return false;
}

bool parse_debug(const char *str, int32_t *level)
{
	if (isalpha(str[0])) {
		return get_debug_by_desc(str, level);
	} else {
		*level = strtol(str, NULL, 0);
		return get_debug_by_level(*level) != NULL;
	}
}

void print_debug_levels(FILE *stream)
{
	int i;

	for (i=0; debug_levels[i].description != NULL; i++) {
		fprintf(stream,
			"%s (%d)\n",
			debug_levels[i].description, debug_levels[i].level);
	}
}