util: env_var_as_unsigned() helper
[mesa.git] / src / util / debug.c
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <errno.h>
25 #include <string.h>
26 #include "main/macros.h"
27 #include "debug.h"
28
29 uint64_t
30 parse_debug_string(const char *debug,
31 const struct debug_control *control)
32 {
33 uint64_t flag = 0;
34
35 if (debug != NULL) {
36 for (; control->string != NULL; control++) {
37 if (!strcmp(debug, "all")) {
38 flag |= control->flag;
39
40 } else {
41 const char *s = debug;
42 unsigned n;
43
44 for (; n = strcspn(s, ", "), *s; s += MAX2(1, n)) {
45 if (strlen(control->string) == n &&
46 !strncmp(control->string, s, n))
47 flag |= control->flag;
48 }
49 }
50 }
51 }
52
53 return flag;
54 }
55
56 /**
57 * Reads an environment variable and interprets its value as a boolean.
58 *
59 * Recognizes 0/false/no and 1/true/yes. Other values result in the default value.
60 */
61 bool
62 env_var_as_boolean(const char *var_name, bool default_value)
63 {
64 const char *str = getenv(var_name);
65 if (str == NULL)
66 return default_value;
67
68 if (strcmp(str, "1") == 0 ||
69 strcasecmp(str, "true") == 0 ||
70 strcasecmp(str, "yes") == 0) {
71 return true;
72 } else if (strcmp(str, "0") == 0 ||
73 strcasecmp(str, "false") == 0 ||
74 strcasecmp(str, "no") == 0) {
75 return false;
76 } else {
77 return default_value;
78 }
79 }
80
81 /**
82 * Reads an environment variable and interprets its value as a unsigned.
83 */
84 unsigned
85 env_var_as_unsigned(const char *var_name, unsigned default_value)
86 {
87 char *str = getenv(var_name);
88 if (str) {
89 char *end;
90 unsigned long result;
91
92 errno = 0;
93 result = strtoul(str, &end, 0);
94 if (errno == 0 && end != str && *end == '\0')
95 return result;
96 }
97 return default_value;
98 }