2 * collectd - src/liboconfig/oconfig.c
3 * Copyright (C) 2006,2007 Florian Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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 THE
18 * 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
21 * DEALINGS IN THE SOFTWARE.
24 * Florian Forster <octo at collectd.org>
36 extern int yyparse (void);
38 oconfig_item_t *ci_root;
41 static void yyset_in (FILE *fd)
46 oconfig_item_t *oconfig_parse_fh (FILE *fh)
56 status = snprintf (file, sizeof (file), "<fd#%d>", fileno (fh));
58 if ((status < 0) || (((size_t) status) >= sizeof (file))) {
62 file[sizeof (file) - 1] = '\0';
70 fprintf (stderr, "yyparse returned error #%i\n", status);
78 yyset_in ((FILE *) 0);
81 } /* oconfig_item_t *oconfig_parse_fh */
83 oconfig_item_t *oconfig_parse_file (const char *file)
90 fh = fopen (file, "r");
93 fprintf (stderr, "fopen (%s) failed: %s\n", file, strerror (errno));
97 ret = oconfig_parse_fh (fh);
103 } /* oconfig_item_t *oconfig_parse_file */
105 oconfig_item_t *oconfig_clone (const oconfig_item_t *ci_orig)
107 oconfig_item_t *ci_copy;
109 ci_copy = calloc (1, sizeof (*ci_copy));
112 fprintf (stderr, "calloc failed.\n");
115 ci_copy->values = NULL;
116 ci_copy->parent = NULL;
117 ci_copy->children = NULL;
119 ci_copy->key = strdup (ci_orig->key);
120 if (ci_copy->key == NULL)
122 fprintf (stderr, "strdup failed.\n");
127 if (ci_orig->values_num > 0) /* {{{ */
129 ci_copy->values = (oconfig_value_t *) calloc ((size_t) ci_orig->values_num,
130 sizeof (*ci_copy->values));
131 if (ci_copy->values == NULL)
133 fprintf (stderr, "calloc failed.\n");
138 ci_copy->values_num = ci_orig->values_num;
140 for (int i = 0; i < ci_copy->values_num; i++)
142 ci_copy->values[i].type = ci_orig->values[i].type;
143 if (ci_copy->values[i].type == OCONFIG_TYPE_STRING)
145 ci_copy->values[i].value.string = strdup (ci_orig->values[i].value.string);
146 if (ci_copy->values[i].value.string == NULL)
148 fprintf (stderr, "strdup failed.\n");
149 oconfig_free (ci_copy);
153 else /* ci_copy->values[i].type != OCONFIG_TYPE_STRING) */
155 ci_copy->values[i].value = ci_orig->values[i].value;
158 } /* }}} if (ci_orig->values_num > 0) */
160 if (ci_orig->children_num > 0) /* {{{ */
162 ci_copy->children = (oconfig_item_t *) calloc ((size_t) ci_orig->children_num,
163 sizeof (*ci_copy->children));
164 if (ci_copy->children == NULL)
166 fprintf (stderr, "calloc failed.\n");
167 oconfig_free (ci_copy);
170 ci_copy->children_num = ci_orig->children_num;
172 for (int i = 0; i < ci_copy->children_num; i++)
174 oconfig_item_t *child;
176 child = oconfig_clone (ci_orig->children + i);
179 oconfig_free (ci_copy);
182 child->parent = ci_copy;
183 ci_copy->children[i] = *child;
185 } /* for (i = 0; i < ci_copy->children_num; i++) */
186 } /* }}} if (ci_orig->children_num > 0) */
189 } /* oconfig_item_t *oconfig_clone */
191 static void oconfig_free_all (oconfig_item_t *ci)
199 for (int i = 0; i < ci->values_num; i++)
200 if ((ci->values[i].type == OCONFIG_TYPE_STRING)
201 && (NULL != ci->values[i].value.string))
202 free (ci->values[i].value.string);
204 if (ci->values != NULL)
207 for (int i = 0; i < ci->children_num; i++)
208 oconfig_free_all (ci->children + i);
210 if (ci->children != NULL)
214 void oconfig_free (oconfig_item_t *ci)
216 oconfig_free_all (ci);
221 * vim:shiftwidth=2:tabstop=8:softtabstop=2:fdm=marker