2 * collectd - src/utils_parse_option.c
3 * Copyright (C) 2008 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 octo Forster <octo at collectd.org>
30 #include "utils_parse_option.h"
32 int parse_string (char **ret_buffer, char **ret_string)
39 /* Eat up leading spaces. */
41 while (isspace ((int) *string))
57 while ((*buffer != '"') && (*buffer != 0))
59 /* Un-escape backslashes */
63 /* Catch a backslash at the end of buffer */
71 /* No quote sign has been found */
80 /* Check for trailing spaces. */
81 if ((*buffer != 0) && !isspace ((int) *buffer))
84 else /* an unquoted string */
87 while ((*buffer != 0) && !isspace ((int) *buffer))
96 /* Eat up trailing spaces */
97 while (isspace ((int) *buffer))
100 *ret_buffer = buffer;
101 *ret_string = string;
104 } /* int parse_string */
109 * Parses an ``option'' as used with the unixsock and exec commands. An
110 * option is of the form:
112 * name1="value with \"quotes\""
113 * name2="value \\ backslash"
114 * However, if the value does *not* contain a space character, you can skip
117 int parse_option (char **ret_buffer, char **ret_key, char **ret_value)
124 buffer = *ret_buffer;
126 /* Eat up leading spaces */
128 while (isspace ((int) *key))
133 /* Look for the equal sign */
135 while (isalnum ((int) *buffer) || *buffer == '_' || *buffer == ':')
137 if ((*buffer != '=') || (buffer == key))
141 /* Empty values must be written as "" */
142 if (isspace ((int) *buffer) || (*buffer == 0))
145 status = parse_string (&buffer, &value);
149 /* NB: parse_string will have eaten up all trailing spaces. */
151 *ret_buffer = buffer;
156 } /* int parse_option */
158 /* vim: set sw=2 ts=8 tw=78 et : */