| 1 |
/* |
|---|
| 2 |
* Copyright (c) 2007, OmniTI Computer Consulting, Inc. |
|---|
| 3 |
* All rights reserved. |
|---|
| 4 |
* |
|---|
| 5 |
* Redistribution and use in source and binary forms, with or without |
|---|
| 6 |
* modification, are permitted provided that the following conditions are |
|---|
| 7 |
* met: |
|---|
| 8 |
* |
|---|
| 9 |
* * Redistributions of source code must retain the above copyright |
|---|
| 10 |
* notice, this list of conditions and the following disclaimer. |
|---|
| 11 |
* * Redistributions in binary form must reproduce the above |
|---|
| 12 |
* copyright notice, this list of conditions and the following |
|---|
| 13 |
* disclaimer in the documentation and/or other materials provided |
|---|
| 14 |
* with the distribution. |
|---|
| 15 |
* * Neither the name OmniTI Computer Consulting, Inc. nor the names |
|---|
| 16 |
* of its contributors may be used to endorse or promote products |
|---|
| 17 |
* derived from this software without specific prior written |
|---|
| 18 |
* permission. |
|---|
| 19 |
* |
|---|
| 20 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 21 |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 22 |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 23 |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 24 |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 25 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 26 |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 27 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 28 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 29 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 30 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 31 |
*/ |
|---|
| 32 |
|
|---|
| 33 |
#ifndef _NOIT_CONF_H |
|---|
| 34 |
#define _NOIT_CONF_H |
|---|
| 35 |
|
|---|
| 36 |
#include "noit_defines.h" |
|---|
| 37 |
#include "utils/noit_hash.h" |
|---|
| 38 |
#include "noit_console.h" |
|---|
| 39 |
|
|---|
| 40 |
#include <uuid/uuid.h> |
|---|
| 41 |
#include <pcre.h> |
|---|
| 42 |
|
|---|
| 43 |
typedef void * noit_conf_section_t; |
|---|
| 44 |
|
|---|
| 45 |
#define NOIT_CONF_T_USERDATA "noit::state::conf_t" |
|---|
| 46 |
typedef struct { |
|---|
| 47 |
char *path; |
|---|
| 48 |
uuid_t current_check; |
|---|
| 49 |
char filter_name[50]; |
|---|
| 50 |
char prompt[50]; |
|---|
| 51 |
} noit_conf_t_userdata_t; |
|---|
| 52 |
|
|---|
| 53 |
/* seconds == 0 disable config journaling watchdog */ |
|---|
| 54 |
API_EXPORT(void) noit_conf_coalesce_changes(u_int32_t seconds); |
|---|
| 55 |
/* Start the watchdog */ |
|---|
| 56 |
API_EXPORT(void) noit_conf_watch_and_journal_watchdog(int (*f)(void *), void *c); |
|---|
| 57 |
|
|---|
| 58 |
/* marks the config as changed.. if you manipulate the XML tree in any way |
|---|
| 59 |
* you must call this function to "let the system know." This is used |
|---|
| 60 |
* to notice changes which are in turn flushed out. |
|---|
| 61 |
*/ |
|---|
| 62 |
API_EXPORT(void) noit_conf_mark_changed(); |
|---|
| 63 |
|
|---|
| 64 |
API_EXPORT(void) noit_conf_init(const char *toplevel); |
|---|
| 65 |
API_EXPORT(int) noit_conf_load(const char *path); |
|---|
| 66 |
API_EXPORT(int) noit_conf_save(const char *path); |
|---|
| 67 |
API_EXPORT(char *) noit_conf_config_filename(); |
|---|
| 68 |
|
|---|
| 69 |
API_EXPORT(void) noit_console_conf_init(); |
|---|
| 70 |
|
|---|
| 71 |
API_EXPORT(noit_conf_section_t) |
|---|
| 72 |
noit_conf_get_section(noit_conf_section_t section, const char *path); |
|---|
| 73 |
API_EXPORT(noit_conf_section_t *) |
|---|
| 74 |
noit_conf_get_sections(noit_conf_section_t section, const char *path, |
|---|
| 75 |
int *cnt); |
|---|
| 76 |
|
|---|
| 77 |
API_EXPORT(noit_hash_table *) |
|---|
| 78 |
noit_conf_get_hash(noit_conf_section_t section, const char *path); |
|---|
| 79 |
|
|---|
| 80 |
API_EXPORT(int) noit_conf_get_string(noit_conf_section_t section, |
|---|
| 81 |
const char *path, char **value); |
|---|
| 82 |
|
|---|
| 83 |
API_EXPORT(int) noit_conf_get_stringbuf(noit_conf_section_t section, |
|---|
| 84 |
const char *path, char *value, int len); |
|---|
| 85 |
API_EXPORT(int) noit_conf_get_int(noit_conf_section_t section, |
|---|
| 86 |
const char *path, int *value); |
|---|
| 87 |
API_EXPORT(int) noit_conf_string_to_int(const char *str); |
|---|
| 88 |
API_EXPORT(int) noit_conf_get_float(noit_conf_section_t section, |
|---|
| 89 |
const char *path, float *value); |
|---|
| 90 |
API_EXPORT(float) noit_conf_string_to_float(const char *str); |
|---|
| 91 |
API_EXPORT(int) noit_conf_get_boolean(noit_conf_section_t section, |
|---|
| 92 |
const char *path, noit_boolean *value); |
|---|
| 93 |
API_EXPORT(noit_boolean) noit_conf_string_to_boolean(const char *str); |
|---|
| 94 |
|
|---|
| 95 |
API_EXPORT(int) |
|---|
| 96 |
noit_conf_get_uuid(noit_conf_section_t section, |
|---|
| 97 |
const char *path, uuid_t out); |
|---|
| 98 |
|
|---|
| 99 |
API_EXPORT(int) noit_conf_set_string(noit_conf_section_t section, |
|---|
| 100 |
const char *path, const char *value); |
|---|
| 101 |
API_EXPORT(int) noit_conf_set_int(noit_conf_section_t section, |
|---|
| 102 |
const char *path, int value); |
|---|
| 103 |
API_EXPORT(int) noit_conf_set_float(noit_conf_section_t section, |
|---|
| 104 |
const char *path, float value); |
|---|
| 105 |
API_EXPORT(int) noit_conf_set_boolean(noit_conf_section_t section, |
|---|
| 106 |
const char *path, noit_boolean value); |
|---|
| 107 |
|
|---|
| 108 |
API_EXPORT(int) |
|---|
| 109 |
noit_conf_reload(noit_console_closure_t ncct, |
|---|
| 110 |
int argc, char **argv, |
|---|
| 111 |
noit_console_state_t *state, void *closure); |
|---|
| 112 |
API_EXPORT(int) |
|---|
| 113 |
noit_conf_write_terminal(noit_console_closure_t ncct, |
|---|
| 114 |
int argc, char **argv, |
|---|
| 115 |
noit_console_state_t *state, void *closure); |
|---|
| 116 |
API_EXPORT(int) |
|---|
| 117 |
noit_conf_write_file_console(noit_console_closure_t ncct, |
|---|
| 118 |
int argc, char **argv, |
|---|
| 119 |
noit_console_state_t *state, void *closure); |
|---|
| 120 |
API_EXPORT(int) |
|---|
| 121 |
noit_conf_write_file(char **err); |
|---|
| 122 |
|
|---|
| 123 |
API_EXPORT(char *) |
|---|
| 124 |
noit_conf_xml_in_mem(size_t *len); |
|---|
| 125 |
|
|---|
| 126 |
API_EXPORT(int) |
|---|
| 127 |
noit_conf_write_log(); |
|---|
| 128 |
|
|---|
| 129 |
API_EXPORT(void) noit_conf_log_init(const char *toplevel); |
|---|
| 130 |
API_EXPORT(int) noit_conf_log_init_rotate(const char *, noit_boolean); |
|---|
| 131 |
|
|---|
| 132 |
#define EXPOSE_CHECKER(name) \ |
|---|
| 133 |
API_EXPORT(pcre *) noit_conf_get_valid_##name##_checker() |
|---|
| 134 |
#define DECLARE_CHECKER(name) \ |
|---|
| 135 |
static pcre *checker_valid_##name; \ |
|---|
| 136 |
pcre *noit_conf_get_valid_##name##_checker() { return checker_valid_##name; } |
|---|
| 137 |
#define COMPILE_CHECKER(name, expr) do { \ |
|---|
| 138 |
const char *errorstr; \ |
|---|
| 139 |
int erroff; \ |
|---|
| 140 |
checker_valid_##name = pcre_compile(expr, 0, &errorstr, &erroff, NULL); \ |
|---|
| 141 |
if(! checker_valid_##name) { \ |
|---|
| 142 |
noitL(noit_error, "noit_conf error: compile checker %s failed: %s\n", \ |
|---|
| 143 |
#name, errorstr); \ |
|---|
| 144 |
exit(-1); \ |
|---|
| 145 |
} \ |
|---|
| 146 |
} while(0) |
|---|
| 147 |
|
|---|
| 148 |
EXPOSE_CHECKER(name); |
|---|
| 149 |
|
|---|
| 150 |
#endif |
|---|