qapi: Remove QMP events and commands from user-mode builds
[qemu/ar7.git] / include / qemu / cutils.h
blob986ed8e15f41248e3802b53cab08c8a939b957d6
1 #ifndef QEMU_CUTILS_H
2 #define QEMU_CUTILS_H
4 /**
5 * pstrcpy:
6 * @buf: buffer to copy string into
7 * @buf_size: size of @buf in bytes
8 * @str: string to copy
10 * Copy @str into @buf, including the trailing NUL, but do not
11 * write more than @buf_size bytes. The resulting buffer is
12 * always NUL terminated (even if the source string was too long).
13 * If @buf_size is zero or negative then no bytes are copied.
15 * This function is similar to strncpy(), but avoids two of that
16 * function's problems:
17 * * if @str fits in the buffer, pstrcpy() does not zero-fill the
18 * remaining space at the end of @buf
19 * * if @str is too long, pstrcpy() will copy the first @buf_size-1
20 * bytes and then add a NUL
22 void pstrcpy(char *buf, int buf_size, const char *str);
23 /**
24 * strpadcpy:
25 * @buf: buffer to copy string into
26 * @buf_size: size of @buf in bytes
27 * @str: string to copy
28 * @pad: character to pad the remainder of @buf with
30 * Copy @str into @buf (but *not* its trailing NUL!), and then pad the
31 * rest of the buffer with the @pad character. If @str is too large
32 * for the buffer then it is truncated, so that @buf contains the
33 * first @buf_size characters of @str, with no terminator.
35 void strpadcpy(char *buf, int buf_size, const char *str, char pad);
36 /**
37 * pstrcat:
38 * @buf: buffer containing existing string
39 * @buf_size: size of @buf in bytes
40 * @s: string to concatenate to @buf
42 * Append a copy of @s to the string already in @buf, but do not
43 * allow the buffer to overflow. If the existing contents of @buf
44 * plus @str would total more than @buf_size bytes, then write
45 * as much of @str as will fit followed by a NUL terminator.
47 * @buf must already contain a NUL-terminated string, or the
48 * behaviour is undefined.
50 * Returns: @buf.
52 char *pstrcat(char *buf, int buf_size, const char *s);
53 /**
54 * strstart:
55 * @str: string to test
56 * @val: prefix string to look for
57 * @ptr: NULL, or pointer to be written to indicate start of
58 * the remainder of the string
60 * Test whether @str starts with the prefix @val.
61 * If it does (including the degenerate case where @str and @val
62 * are equal) then return true. If @ptr is not NULL then a
63 * pointer to the first character following the prefix is written
64 * to it. If @val is not a prefix of @str then return false (and
65 * @ptr is not written to).
67 * Returns: true if @str starts with prefix @val, false otherwise.
69 int strstart(const char *str, const char *val, const char **ptr);
70 /**
71 * stristart:
72 * @str: string to test
73 * @val: prefix string to look for
74 * @ptr: NULL, or pointer to be written to indicate start of
75 * the remainder of the string
77 * Test whether @str starts with the case-insensitive prefix @val.
78 * This function behaves identically to strstart(), except that the
79 * comparison is made after calling qemu_toupper() on each pair of
80 * characters.
82 * Returns: true if @str starts with case-insensitive prefix @val,
83 * false otherwise.
85 int stristart(const char *str, const char *val, const char **ptr);
86 /**
87 * qemu_strnlen:
88 * @s: string
89 * @max_len: maximum number of bytes in @s to scan
91 * Return the length of the string @s, like strlen(), but do not
92 * examine more than @max_len bytes of the memory pointed to by @s.
93 * If no NUL terminator is found within @max_len bytes, then return
94 * @max_len instead.
96 * This function has the same behaviour as the POSIX strnlen()
97 * function.
99 * Returns: length of @s in bytes, or @max_len, whichever is smaller.
101 int qemu_strnlen(const char *s, int max_len);
103 * qemu_strsep:
104 * @input: pointer to string to parse
105 * @delim: string containing delimiter characters to search for
107 * Locate the first occurrence of any character in @delim within
108 * the string referenced by @input, and replace it with a NUL.
109 * The location of the next character after the delimiter character
110 * is stored into @input.
111 * If the end of the string was reached without finding a delimiter
112 * character, then NULL is stored into @input.
113 * If @input points to a NULL pointer on entry, return NULL.
114 * The return value is always the original value of *@input (and
115 * so now points to a NUL-terminated string corresponding to the
116 * part of the input up to the first delimiter).
118 * This function has the same behaviour as the BSD strsep() function.
120 * Returns: the pointer originally in @input.
122 char *qemu_strsep(char **input, const char *delim);
123 #ifdef HAVE_STRCHRNUL
124 static inline const char *qemu_strchrnul(const char *s, int c)
126 return strchrnul(s, c);
128 #else
129 const char *qemu_strchrnul(const char *s, int c);
130 #endif
131 time_t mktimegm(struct tm *tm);
132 int qemu_fdatasync(int fd);
133 int qemu_msync(void *addr, size_t length, int fd);
134 int fcntl_setfl(int fd, int flag);
135 int qemu_parse_fd(const char *param);
136 int qemu_strtoi(const char *nptr, const char **endptr, int base,
137 int *result);
138 int qemu_strtoui(const char *nptr, const char **endptr, int base,
139 unsigned int *result);
140 int qemu_strtol(const char *nptr, const char **endptr, int base,
141 long *result);
142 int qemu_strtoul(const char *nptr, const char **endptr, int base,
143 unsigned long *result);
144 int qemu_strtoi64(const char *nptr, const char **endptr, int base,
145 int64_t *result);
146 int qemu_strtou64(const char *nptr, const char **endptr, int base,
147 uint64_t *result);
148 int qemu_strtod(const char *nptr, const char **endptr, double *result);
149 int qemu_strtod_finite(const char *nptr, const char **endptr, double *result);
151 int parse_uint(const char *s, unsigned long long *value, char **endptr,
152 int base);
153 int parse_uint_full(const char *s, unsigned long long *value, int base);
155 int qemu_strtosz(const char *nptr, const char **end, uint64_t *result);
156 int qemu_strtosz_MiB(const char *nptr, const char **end, uint64_t *result);
157 int qemu_strtosz_metric(const char *nptr, const char **end, uint64_t *result);
159 char *size_to_str(uint64_t val);
162 * freq_to_str:
163 * @freq_hz: frequency to stringify
165 * Return human readable string for frequency @freq_hz.
166 * Use SI units like KHz, MHz, and so forth.
168 * The caller is responsible for releasing the value returned
169 * with g_free() after use.
171 char *freq_to_str(uint64_t freq_hz);
173 /* used to print char* safely */
174 #define STR_OR_NULL(str) ((str) ? (str) : "null")
176 bool buffer_is_zero(const void *buf, size_t len);
177 bool test_buffer_is_zero_next_accel(void);
180 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
181 * Input is limited to 14-bit numbers
184 int uleb128_encode_small(uint8_t *out, uint32_t n);
185 int uleb128_decode_small(const uint8_t *in, uint32_t *n);
188 * qemu_pstrcmp0:
189 * @str1: a non-NULL pointer to a C string (*str1 can be NULL)
190 * @str2: a non-NULL pointer to a C string (*str2 can be NULL)
192 * Compares *str1 and *str2 with g_strcmp0().
194 * Returns: an integer less than, equal to, or greater than zero, if
195 * *str1 is <, == or > than *str2.
197 int qemu_pstrcmp0(const char **str1, const char **str2);
201 * get_relocated_path:
202 * @dir: the directory (typically a `CONFIG_*DIR` variable) to be relocated.
204 * Returns a path for @dir that uses the directory of the running executable
205 * as the prefix. For example, if `bindir` is `/usr/bin` and @dir is
206 * `/usr/share/qemu`, the function will append `../share/qemu` to the
207 * directory that contains the running executable and return the result.
208 * The returned string should be freed by the caller.
210 char *get_relocated_path(const char *dir);
212 #endif