/** * collectd - src/utils_subst.h * Copyright (C) 2008 Sebastian Harl * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * * Authors: * Sebastian "tokkee" Harl **/ /* * This module provides functions for string substitution. */ #ifndef UTILS_SUBST_H #define UTILS_SUBST_H 1 #include /* * subst: * * Replace a substring of a string with the specified replacement text. The * resulting string is stored in the buffer pointed to by 'buf' of length * 'buflen'. Upon success, the buffer will always be null-terminated. The * result may be truncated if the buffer is too small. * * The substring to be replaces is identified by the two offsets 'off1' and * 'off2' where 'off1' specifies the offset to the beginning of the substring * and 'off2' specifies the offset to the first byte after the substring. * * The minimum buffer size to store the complete return value (including the * terminating '\0' character) thus has to be: * off1 + strlen(replacement) + strlen(string) - off2 + 1 * * Example: * * 01234567890 * string = "foo_____bar" * ^ ^ * | | * off1 off2 * * off1 = 3 * off2 = 8 * * replacement = " - " * * -> "foo - bar" * * The function returns 'buf' on success, NULL else. */ char *subst(char *buf, size_t buflen, const char *string, size_t off1, size_t off2, const char *replacement); /* * subst_string: * * Works like `subst', but instead of specifying start and end offsets you * specify `needle', the string that is to be replaced. If `needle' is found * in `string' (using strstr(3)), the offset is calculated and `subst' is * called with the determined parameters. * * If the substring is not found, no error will be indicated and * `subst_string' works mostly like `strncpy'. * * If the substring appears multiple times, all appearances will be replaced. * If the substring has been found `buflen' times, an endless loop is assumed * and the loop is broken. A warning is printed and the function returns * success. */ char *subst_string(char *buf, size_t buflen, const char *string, const char *needle, const char *replacement); #endif /* UTILS_SUBST_H */