replmd: Check dsdb_dn for syntax errors
[Samba.git] / ctdb / common / logging.c
blob4b7b4e5f67d92e7f3323945a56a7c19754955e55
1 /*
2 Logging utilities
4 Copyright (C) Amitay Isaacs 2015
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include <replace.h>
21 #include <system/locale.h>
23 #include "common/logging.h"
25 struct {
26 enum debug_level log_level;
27 const char *log_string;
28 } log_string_map[] = {
29 { DEBUG_ERR, "ERROR" },
30 { DEBUG_WARNING, "WARNING" },
31 { DEBUG_NOTICE, "NOTICE" },
32 { DEBUG_INFO, "INFO" },
33 { DEBUG_DEBUG, "DEBUG" },
36 bool debug_level_parse(const char *log_string, enum debug_level *log_level)
38 int i;
40 if (log_string == NULL) {
41 return false;
44 if (isdigit(log_string[0])) {
45 int level = atoi(log_string);
47 if (level >= 0 && level < ARRAY_SIZE(log_string_map)) {
48 *log_level = debug_level_from_int(level);
49 return true;
51 return false;
54 for (i=0; i<ARRAY_SIZE(log_string_map); i++) {
55 if (strncasecmp(log_string_map[i].log_string,
56 log_string, strlen(log_string)) == 0) {
57 *log_level = log_string_map[i].log_level;
58 return true;
62 return false;
65 const char *debug_level_to_string(enum debug_level log_level)
67 int i;
69 for (i=0; ARRAY_SIZE(log_string_map); i++) {
70 if (log_string_map[i].log_level == log_level) {
71 return log_string_map[i].log_string;
74 return "UNKNOWN";
77 enum debug_level debug_level_from_string(const char *log_string)
79 bool found;
80 enum debug_level log_level;
82 found = debug_level_parse(log_string, &log_level);
83 if (found) {
84 return log_level;
87 /* Default debug level */
88 return DEBUG_ERR;
91 int debug_level_to_int(enum debug_level log_level)
93 return (int)log_level;
96 enum debug_level debug_level_from_int(int level)
98 enum debug_level log_level;
100 if (level >= 0 && level < ARRAY_SIZE(log_string_map)) {
101 log_level = log_string_map[level].log_level;
102 } else {
103 log_level = DEBUG_ERR;
106 return log_level;