]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/string_utils.h
stringutils: include stdarg for va_list
[mirror_lxc.git] / src / lxc / string_utils.h
1 /* liblxcapi
2 *
3 * Copyright © 2018 Christian Brauner <christian.brauner@ubuntu.com>.
4 * Copyright © 2018 Canonical Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef __LXC_STRING_UTILS_H
21 #define __LXC_STRING_UTILS_H
22
23 #include <stdarg.h>
24
25 #include "config.h"
26
27 #include "initutils.h"
28 #include "macro.h"
29
30 /* convert variadic argument lists to arrays (for execl type argument lists) */
31 extern char **lxc_va_arg_list_to_argv(va_list ap, size_t skip, int do_strdup);
32 extern const char **lxc_va_arg_list_to_argv_const(va_list ap, size_t skip);
33
34 /*
35 * Some simple string functions; if they return pointers, they are allocated
36 * buffers.
37 */
38 extern char *lxc_string_replace(const char *needle, const char *replacement,
39 const char *haystack);
40 extern bool lxc_string_in_array(const char *needle, const char **haystack);
41 extern char *lxc_string_join(const char *sep, const char **parts,
42 bool use_as_prefix);
43 /*
44 * Normalize and split path: Leading and trailing / are removed, multiple
45 * / are compactified, .. and . are resolved (.. on the top level is considered
46 * identical to .).
47 * Examples:
48 * / -> { NULL }
49 * foo/../bar -> { bar, NULL }
50 * ../../ -> { NULL }
51 * ./bar/baz/.. -> { bar, NULL }
52 * foo//bar -> { foo, bar, NULL }
53 */
54 extern char **lxc_normalize_path(const char *path);
55
56 /* remove multiple slashes from the path, e.g. ///foo//bar -> /foo/bar */
57 extern char *lxc_deslashify(const char *path);
58 extern char *lxc_append_paths(const char *first, const char *second);
59
60 /*
61 * Note: the following two functions use strtok(), so they will never
62 * consider an empty element, even if two delimiters are next to
63 * each other.
64 */
65 extern bool lxc_string_in_list(const char *needle, const char *haystack,
66 char sep);
67 extern char **lxc_string_split(const char *string, char sep);
68 extern char **lxc_string_split_and_trim(const char *string, char sep);
69 extern char **lxc_string_split_quoted(char *string);
70
71 /* Append string to NULL-terminated string array. */
72 extern int lxc_append_string(char ***list, char *entry);
73
74 /* Some simple array manipulation utilities */
75 typedef void (*lxc_free_fn)(void *);
76 typedef void *(*lxc_dup_fn)(void *);
77 extern int lxc_grow_array(void ***array, size_t *capacity, size_t new_size,
78 size_t capacity_increment);
79 extern void lxc_free_array(void **array, lxc_free_fn element_free_fn);
80 extern size_t lxc_array_len(void **array);
81
82 extern void **lxc_append_null_to_array(void **array, size_t count);
83 extern void remove_trailing_newlines(char *l);
84
85 /* Helper functions to parse numbers. */
86 extern int lxc_safe_uint(const char *numstr, unsigned int *converted);
87 extern int lxc_safe_int(const char *numstr, int *converted);
88 extern int lxc_safe_long(const char *numstr, long int *converted);
89 extern int lxc_safe_long_long(const char *numstr, long long int *converted);
90 extern int lxc_safe_ulong(const char *numstr, unsigned long *converted);
91 extern int lxc_safe_uint64(const char *numstr, uint64_t *converted, int base);
92 /* Handles B, kb, MB, GB. Detects overflows and reports -ERANGE. */
93 extern int parse_byte_size_string(const char *s, int64_t *converted);
94
95 /*
96 * Concatenate all passed-in strings into one path. Do not fail. If any piece
97 * is not prefixed with '/', add a '/'.
98 */
99 __attribute__((sentinel)) extern char *must_concat(const char *first, ...);
100 __attribute__((sentinel)) extern char *must_make_path(const char *first, ...);
101 __attribute__((sentinel)) extern char *must_append_path(char *first, ...);
102
103 /* Return copy of string @entry. Do not fail. */
104 extern char *must_copy_string(const char *entry);
105
106 /* Re-allocate a pointer, do not fail */
107 extern void *must_realloc(void *orig, size_t sz);
108
109 extern int lxc_char_left_gc(const char *buffer, size_t len);
110
111 extern int lxc_char_right_gc(const char *buffer, size_t len);
112
113 extern char *lxc_trim_whitespace_in_place(char *buffer);
114
115 extern int lxc_is_line_empty(const char *line);
116 extern void remove_trailing_slashes(char *p);
117
118 #endif /* __LXC_STRING_UTILS_H */