2012-11-30 15:21:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007-2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VIR_STRING_H__
|
|
|
|
# define __VIR_STRING_H__
|
|
|
|
|
2013-04-03 10:36:23 +00:00
|
|
|
# include <stdarg.h>
|
|
|
|
|
2012-11-30 15:21:02 +00:00
|
|
|
# include "internal.h"
|
|
|
|
|
|
|
|
char **virStringSplit(const char *string,
|
|
|
|
const char *delim,
|
|
|
|
size_t max_tokens)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
|
|
|
char *virStringJoin(const char **strings,
|
|
|
|
const char *delim)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
|
|
|
void virStringFreeList(char **strings);
|
|
|
|
|
2013-04-12 20:55:45 +00:00
|
|
|
bool virStringArrayHasString(char **strings, const char *needle);
|
|
|
|
|
2013-04-03 10:36:23 +00:00
|
|
|
char *virArgvToString(const char *const *argv);
|
|
|
|
|
|
|
|
int virStrToLong_i(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
int base,
|
|
|
|
int *result);
|
|
|
|
|
|
|
|
int virStrToLong_ui(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
int base,
|
|
|
|
unsigned int *result);
|
|
|
|
int virStrToLong_l(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
int base,
|
|
|
|
long *result);
|
|
|
|
int virStrToLong_ul(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
int base,
|
|
|
|
unsigned long *result);
|
|
|
|
int virStrToLong_ll(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
int base,
|
|
|
|
long long *result);
|
|
|
|
int virStrToLong_ull(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
int base,
|
|
|
|
unsigned long long *result);
|
|
|
|
int virStrToDouble(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
double *result);
|
|
|
|
|
|
|
|
void virSkipSpaces(const char **str) ATTRIBUTE_NONNULL(1);
|
|
|
|
void virSkipSpacesAndBackslash(const char **str) ATTRIBUTE_NONNULL(1);
|
|
|
|
void virTrimSpaces(char *str, char **endp) ATTRIBUTE_NONNULL(1);
|
|
|
|
void virSkipSpacesBackwards(const char *str, char **endp)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
|
|
|
char *virStrncpy(char *dest, const char *src, size_t n, size_t destbytes)
|
|
|
|
ATTRIBUTE_RETURN_CHECK;
|
|
|
|
char *virStrcpy(char *dest, const char *src, size_t destbytes)
|
|
|
|
ATTRIBUTE_RETURN_CHECK;
|
|
|
|
# define virStrcpyStatic(dest, src) virStrcpy((dest), (src), sizeof(dest))
|
2013-04-03 12:51:20 +00:00
|
|
|
|
|
|
|
/* Don't call these directly - use the macros below */
|
|
|
|
int virStrdup(char **dest, const char *src, bool report, int domcode,
|
|
|
|
const char *filename, const char *funcname, size_t linenr)
|
2013-05-07 02:42:44 +00:00
|
|
|
ATTRIBUTE_RETURN_CHECK ATTRIBUTE_NONNULL(1);
|
2013-04-03 12:51:20 +00:00
|
|
|
|
2013-05-24 08:45:57 +00:00
|
|
|
int virStrndup(char **dest, const char *src, ssize_t n, bool report, int domcode,
|
2013-04-03 12:51:20 +00:00
|
|
|
const char *filename, const char *funcname, size_t linenr)
|
2013-05-07 02:42:44 +00:00
|
|
|
ATTRIBUTE_RETURN_CHECK ATTRIBUTE_NONNULL(1);
|
2013-06-07 15:10:28 +00:00
|
|
|
int virAsprintfInternal(bool report, int domcode, const char *filename,
|
|
|
|
const char *funcname, size_t linenr, char **strp,
|
|
|
|
const char *fmt, ...)
|
|
|
|
ATTRIBUTE_NONNULL(6) ATTRIBUTE_NONNULL(7) ATTRIBUTE_FMT_PRINTF(7, 8)
|
|
|
|
ATTRIBUTE_RETURN_CHECK;
|
|
|
|
int virVasprintfInternal(bool report, int domcode, const char *filename,
|
|
|
|
const char *funcname, size_t linenr, char **strp,
|
|
|
|
const char *fmt, va_list list)
|
|
|
|
ATTRIBUTE_NONNULL(6) ATTRIBUTE_NONNULL(7) ATTRIBUTE_FMT_PRINTF(7, 0)
|
|
|
|
ATTRIBUTE_RETURN_CHECK;
|
2013-04-03 12:51:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_STRDUP:
|
|
|
|
* @dst: variable to hold result (char*, not char**)
|
|
|
|
* @src: string to duplicate
|
|
|
|
*
|
|
|
|
* Duplicate @src string and store it into @dst.
|
|
|
|
*
|
2013-05-07 02:42:44 +00:00
|
|
|
* This macro is safe to use on arguments with side effects.
|
|
|
|
*
|
|
|
|
* Returns -1 on failure (with OOM error reported), 0 if @src was NULL,
|
|
|
|
* 1 if @src was copied
|
2013-04-03 12:51:20 +00:00
|
|
|
*/
|
|
|
|
# define VIR_STRDUP(dst, src) virStrdup(&(dst), src, true, VIR_FROM_THIS, \
|
|
|
|
__FILE__, __FUNCTION__, __LINE__)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_STRDUP_QUIET:
|
|
|
|
* @dst: variable to hold result (char*, not char**)
|
|
|
|
* @src: string to duplicate
|
|
|
|
*
|
|
|
|
* Duplicate @src string and store it into @dst.
|
|
|
|
*
|
2013-05-07 02:42:44 +00:00
|
|
|
* This macro is safe to use on arguments with side effects.
|
|
|
|
*
|
|
|
|
* Returns -1 on failure, 0 if @src was NULL, 1 if @src was copied
|
2013-04-03 12:51:20 +00:00
|
|
|
*/
|
|
|
|
# define VIR_STRDUP_QUIET(dst, src) virStrdup(&(dst), src, false, 0, NULL, NULL, 0)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_STRNDUP:
|
|
|
|
* @dst: variable to hold result (char*, not char**)
|
|
|
|
* @src: string to duplicate
|
|
|
|
* @n: the maximum number of bytes to copy
|
|
|
|
*
|
|
|
|
* Duplicate @src string and store it into @dst. If @src is longer than @n,
|
2013-05-24 08:45:57 +00:00
|
|
|
* only @n bytes are copied and terminating null byte '\0' is added. If @n
|
|
|
|
* is a negative number, then the whole @src string is copied. That is,
|
|
|
|
* VIR_STRDUP(dst, src) and VIR_STRNDUP(dst, src, -1) are equal.
|
2013-04-03 12:51:20 +00:00
|
|
|
*
|
2013-05-07 02:42:44 +00:00
|
|
|
* This macro is safe to use on arguments with side effects.
|
|
|
|
*
|
|
|
|
* Returns -1 on failure (with OOM error reported), 0 if @src was NULL,
|
|
|
|
* 1 if @src was copied
|
2013-04-03 12:51:20 +00:00
|
|
|
*/
|
|
|
|
# define VIR_STRNDUP(dst, src, n) virStrndup(&(dst), src, n, true, \
|
|
|
|
VIR_FROM_THIS, __FILE__, \
|
|
|
|
__FUNCTION__, __LINE__)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_STRNDUP_QUIET:
|
|
|
|
* @dst: variable to hold result (char*, not char**)
|
|
|
|
* @src: string to duplicate
|
|
|
|
* @n: the maximum number of bytes to copy
|
|
|
|
*
|
|
|
|
* Duplicate @src string and store it into @dst. If @src is longer than @n,
|
2013-05-24 08:45:57 +00:00
|
|
|
* only @n bytes are copied and terminating null byte '\0' is added. If @n
|
|
|
|
* is a negative number, then the whole @src string is copied. That is,
|
|
|
|
* VIR_STRDUP_QUIET(dst, src) and VIR_STRNDUP_QUIET(dst, src, -1) are
|
|
|
|
* equal.
|
2013-04-03 12:51:20 +00:00
|
|
|
*
|
2013-05-07 02:42:44 +00:00
|
|
|
* This macro is safe to use on arguments with side effects.
|
|
|
|
*
|
|
|
|
* Returns -1 on failure, 0 if @src was NULL, 1 if @src was copied
|
2013-04-03 12:51:20 +00:00
|
|
|
*/
|
|
|
|
# define VIR_STRNDUP_QUIET(dst, src, n) virStrndup(&(dst), src, n, false, \
|
|
|
|
0, NULL, NULL, 0)
|
2013-04-25 16:05:00 +00:00
|
|
|
|
|
|
|
size_t virStringListLength(char **strings);
|
|
|
|
|
2013-06-07 15:10:28 +00:00
|
|
|
/**
|
|
|
|
* virVasprintf
|
|
|
|
*
|
|
|
|
* Like glibc's vasprintf but makes sure *strp == NULL on failure, in which
|
|
|
|
* case the OOM error is reported too.
|
|
|
|
*
|
2013-07-18 10:13:46 +00:00
|
|
|
* Returns -1 on failure (with OOM error reported), number of bytes printed
|
|
|
|
* on success.
|
2013-06-07 15:10:28 +00:00
|
|
|
*/
|
|
|
|
# define virVasprintf(strp, fmt, list) \
|
|
|
|
virVasprintfInternal(true, VIR_FROM_THIS, __FILE__, __FUNCTION__, \
|
|
|
|
__LINE__, strp, fmt, list)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virVasprintfQuiet
|
|
|
|
*
|
|
|
|
* Like glibc's vasprintf but makes sure *strp == NULL on failure.
|
|
|
|
*
|
2013-07-18 10:13:46 +00:00
|
|
|
* Returns -1 on failure, number of bytes printed on success.
|
2013-06-07 15:10:28 +00:00
|
|
|
*/
|
|
|
|
# define virVasprintfQuiet(strp, fmt, list) \
|
|
|
|
virVasprintfInternal(false, 0, NULL, NULL, 0, strp, fmt, list)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virAsprintf:
|
|
|
|
* @strp: variable to hold result (char **)
|
|
|
|
* @fmt: printf format
|
|
|
|
*
|
|
|
|
* Like glibc's_asprintf but makes sure *strp == NULL on failure, in which case
|
|
|
|
* the OOM error is reported too.
|
|
|
|
*
|
2013-07-18 10:13:46 +00:00
|
|
|
* Returns -1 on failure (with OOM error reported), number of bytes printed
|
|
|
|
* on success.
|
2013-06-07 15:10:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
# define virAsprintf(strp, ...) \
|
|
|
|
virAsprintfInternal(true, VIR_FROM_THIS, __FILE__, __FUNCTION__, __LINE__, \
|
|
|
|
strp, __VA_ARGS__)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virAsprintfQuiet:
|
|
|
|
* @strp: variable to hold result (char **)
|
|
|
|
* @fmt: printf format
|
|
|
|
*
|
|
|
|
* Like glibc's_asprintf but makes sure *strp == NULL on failure.
|
|
|
|
*
|
2013-07-18 10:13:46 +00:00
|
|
|
* Returns -1 on failure, number of bytes printed on success.
|
2013-06-07 15:10:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
# define virAsprintfQuiet(strp, ...) \
|
|
|
|
virAsprintfInternal(false, 0, NULL, NULL, 0, \
|
|
|
|
strp, __VA_ARGS__)
|
|
|
|
|
2012-11-30 15:21:02 +00:00
|
|
|
#endif /* __VIR_STRING_H__ */
|