initial revision
[ucgine.git] / tools / cfzy / libconfizery / cfzy_log.c
1 /*
2  * Copyright (c) 2013, Olivier MATZ <zer0@droids-corp.org>
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this log of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this log of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <stdarg.h>
31
32 #include "cfzy_log.h"
33 #include "cfzy_htable.h"
34
35 static struct cfzy_htable *level_htable = NULL;
36 static int default_level = CFZY_LOG_NOTICE;
37
38 /* initialize log susbsystem */
39 int cfzy_log_init(void)
40 {
41         level_htable = cfzy_htable_alloc();
42         if (level_htable == NULL)
43                 return -1;
44         return 0;
45 }
46
47 /* free all structures associated to log subsystem */
48 void cfzy_log_exit(void)
49 {
50         cfzy_htable_free(level_htable, free);
51 }
52
53 /* set default log level (for log types that are not registered) */
54 int cfzy_log_set_default_level(int level)
55 {
56         if (level != -1 && (level < CFZY_LOG_ERR || level > CFZY_LOG_DEBUG))
57                 return -1;
58         default_level = level;
59         return 0;
60 }
61
62 /* set log level for a specific log type: the string is added in the
63  * hash table */
64 int cfzy_log_set_level(const char *logtype, int level)
65 {
66         int *l;
67
68         if (level != -1 && (level < CFZY_LOG_ERR || level > CFZY_LOG_DEBUG))
69                 return -1;
70         l = cfzy_htable_lookup(level_htable, logtype);
71
72         /* if log is already registered, it's easy */
73         if (l != NULL) {
74                 *l = level;
75                 return 0;
76         }
77
78         /* else allocate a new (int *) and store it in the htable */
79         l = malloc(sizeof(*l));
80         if (l == NULL)
81                 return -1;
82
83         *l = level;
84         cfzy_htable_add(level_htable, logtype, l);
85         return 0;
86 }
87
88 /* print a log if given level is <= to configured log level */
89 int cfzy_log_printf(const char *logtype, int level, const char *fmt, ...)
90 {
91         int *l;
92         va_list ap;
93         int ret;
94
95         l = cfzy_htable_lookup(level_htable, logtype);
96
97         if (l == NULL && level > default_level)
98                 return 0;
99         else if (l != NULL && level > *l)
100                 return 0;
101
102         va_start(ap, fmt);
103         ret = vfprintf(stderr, fmt, ap);
104         va_end(ap);
105
106         return ret;
107 }