2 * collectd - src/common.h
3 * Copyright (C) 2005-2008 Florian octo Forster
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; only version 2 of the License is applicable.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Florian octo Forster <octo at verplant.org>
20 * Niki W. Waibel <niki.waibel@gmx.net>
39 #define STATIC_ARRAY_SIZE(a) (sizeof (a) / sizeof (*(a)))
41 void sstrncpy(char *d, const char *s, int len);
42 char *sstrdup(const char *s);
43 void *smalloc(size_t size);
44 char *sstrerror (int errnum, char *buf, size_t buflen);
51 * Reads exactly `n' bytes or fails. Syntax and other behavior is analogous
52 * to `read(2)'. If EOF is received the file descriptor is closed and an
56 * `fd' File descriptor to write to.
57 * `buf' Buffer that is to be written.
58 * `count' Number of bytes in the buffer.
61 * Zero upon success or non-zero if an error occurred. `errno' is set in this
64 ssize_t sread (int fd, void *buf, size_t count);
71 * Writes exactly `n' bytes or fails. Syntax and other behavior is analogous
75 * `fd' File descriptor to write to.
76 * `buf' Buffer that is to be written.
77 * `count' Number of bytes in the buffer.
80 * Zero upon success or non-zero if an error occurred. `errno' is set in this
83 ssize_t swrite (int fd, const void *buf, size_t count);
90 * Splits a string into parts and stores pointers to the parts in `fields'.
91 * The characters split at are ` ' (space) and "\t" (tab).
94 * `string' String to split. This string will be modified. `fields' will
95 * contain pointers to parts of this string, so free'ing it
96 * will destroy `fields' as well.
97 * `fields' Array of strings where pointers to the parts will be stored.
98 * `size' Number of elements in the array. No more than `size'
99 * pointers will be stored in `fields'.
102 * Returns the number of parts stored in `fields'.
104 int strsplit (char *string, char **fields, size_t size);
111 * Joins together several parts of a string using `sep' as a separator. This
112 * is equivalent to the Perl built-in `join'.
115 * `dst' Buffer where the result is stored.
116 * `dst_len' Length of the destination buffer. No more than this many
117 * bytes will be written to the memory pointed to by `dst',
118 * including the trailing null-byte.
119 * `fields' Array of strings to be joined.
120 * `fields_num' Number of elements in the `fields' array.
121 * `sep' String to be inserted between any two elements of `fields'.
122 * This string is neither prepended nor appended to the result.
123 * Instead of passing "" (empty string) one can pass NULL.
126 * Returns the number of characters in `dst', NOT including the trailing
127 * null-byte. If an error occurred (empty array or `dst' too small) a value
128 * smaller than zero will be returned.
130 int strjoin (char *dst, size_t dst_len, char **fields, size_t fields_num, const char *sep);
137 * Removes slashes from the string `buf' and substitutes them with something
138 * appropriate. This function should be used whenever a path is to be used as
139 * (part of) an instance.
142 * `buf' String to be escaped.
143 * `buf_len' Length of the buffer. No more then this many bytes will be
144 * written to `buf', including the trailing null-byte.
147 * Returns zero upon success and a value smaller than zero upon failure.
149 int escape_slashes (char *buf, int buf_len);
151 int strsubstitute (char *str, char c_from, char c_to);
153 /* FIXME: `timeval_sub_timespec' needs a description */
154 int timeval_sub_timespec (struct timeval *tv0, struct timeval *tv1, struct timespec *ret);
156 int check_create_dir (const char *file_orig);
159 int get_kstat (kstat_t **ksp_ptr, char *module, int instance, char *name);
160 long long get_kstat_value (kstat_t *ksp, char *name);
163 unsigned long long ntohll (unsigned long long n);
164 unsigned long long htonll (unsigned long long n);
166 int format_name (char *ret, int ret_len,
167 const char *hostname,
168 const char *plugin, const char *plugin_instance,
169 const char *type, const char *type_instance);
170 #define FORMAT_VL(ret, ret_len, vl, ds) \
171 format_name (ret, ret_len, (vl)->host, (vl)->plugin, (vl)->plugin_instance, \
172 (ds)->type, (vl)->type_instance)
174 int parse_identifier (char *str, char **ret_host,
175 char **ret_plugin, char **ret_plugin_instance,
176 char **ret_type, char **ret_type_instance);
177 int parse_values (char *buffer, value_list_t *vl, const data_set_t *ds);
180 int getpwnam_r (const char *name, struct passwd *pwbuf, char *buf,
181 size_t buflen, struct passwd **pwbufp);
184 int notification_init (notification_t *n, int severity, const char *message,
186 const char *plugin, const char *plugin_instance,
187 const char *type, const char *type_instance);
188 #define NOTIFICATION_INIT_VL(n, vl, ds) \
189 notification_init (n, NOTIF_FAILURE, NULL, \
190 (vl)->host, (vl)->plugin, (vl)->plugin_instance, \
191 (ds)->type, (vl)->type_instance)
192 #endif /* COMMON_H */