2010-08-17 05:33:07 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2009-11-18 02:42:52 +03:00
2012-07-18 21:07:51 +04:00
# pragma once
2009-11-18 02:42:52 +03:00
2010-02-03 15:03:47 +03:00
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
2012-04-12 02:20:58 +04:00
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
2010-02-03 15:03:47 +03:00
( at your option ) any later version .
systemd 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
2012-04-12 02:20:58 +04:00
Lesser General Public License for more details .
2010-02-03 15:03:47 +03:00
2012-04-12 02:20:58 +04:00
You should have received a copy of the GNU Lesser General Public License
2010-02-03 15:03:47 +03:00
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2010-04-22 00:15:06 +04:00
# include <stdarg.h>
# include <stdbool.h>
2015-02-14 02:37:43 +03:00
# include <fnmatch.h>
2010-04-22 00:15:06 +04:00
2013-10-13 04:28:21 +04:00
# include "util.h"
2009-11-18 02:42:52 +03:00
2013-05-03 06:51:50 +04:00
char * strv_find ( char * * l , const char * name ) _pure_ ;
char * strv_find_prefix ( char * * l , const char * name ) _pure_ ;
2014-08-21 18:22:34 +04:00
char * strv_find_startswith ( char * * l , const char * name ) _pure_ ;
2010-06-16 07:06:02 +04:00
2015-03-17 14:20:31 +03:00
char * * strv_free ( char * * l ) ;
2013-10-14 06:59:26 +04:00
DEFINE_TRIVIAL_CLEANUP_FUNC ( char * * , strv_free ) ;
2013-04-16 07:25:57 +04:00
# define _cleanup_strv_free_ _cleanup_(strv_freep)
2014-12-17 03:08:56 +03:00
void strv_clear ( char * * l ) ;
2013-04-26 03:47:43 +04:00
char * * strv_copy ( char * const * l ) ;
2013-05-03 06:51:50 +04:00
unsigned strv_length ( char * const * l ) _pure_ ;
2009-11-18 02:42:52 +03:00
2014-01-04 05:35:27 +04:00
int strv_extend_strv ( char * * * a , char * * b ) ;
int strv_extend_strv_concat ( char * * * a , char * * b , const char * suffix ) ;
2013-01-11 04:04:11 +04:00
int strv_extend ( char * * * l , const char * value ) ;
2014-03-06 23:28:32 +04:00
int strv_extendf ( char * * * l , const char * format , . . . ) _printf_ ( 2 , 0 ) ;
2013-03-22 20:44:15 +04:00
int strv_push ( char * * * l , char * value ) ;
2014-12-03 20:31:51 +03:00
int strv_push_pair ( char * * * l , char * a , char * b ) ;
2014-07-02 14:23:36 +04:00
int strv_push_prepend ( char * * * l , char * value ) ;
2014-03-04 18:20:51 +04:00
int strv_consume ( char * * * l , char * value ) ;
2014-12-03 20:31:51 +03:00
int strv_consume_pair ( char * * * l , char * a , char * b ) ;
2014-07-02 14:23:36 +04:00
int strv_consume_prepend ( char * * * l , char * value ) ;
2010-01-26 06:18:44 +03:00
2010-02-13 03:04:44 +03:00
char * * strv_remove ( char * * l , const char * s ) ;
char * * strv_uniq ( char * * l ) ;
2014-12-19 03:31:59 +03:00
bool strv_is_uniq ( char * * l ) ;
2010-02-13 03:04:44 +03:00
2014-11-27 18:08:46 +03:00
bool strv_equal ( char * * a , char * * b ) ;
2010-02-13 03:04:44 +03:00
# define strv_contains(l, s) (!!strv_find((l), (s)))
2010-01-28 00:38:21 +03:00
2013-04-26 03:47:43 +04:00
char * * strv_new ( const char * x , . . . ) _sentinel_ ;
char * * strv_new_ap ( const char * x , va_list ap ) ;
2009-11-18 02:42:52 +03:00
2012-05-23 05:43:29 +04:00
static inline const char * STRV_IFNOTNULL ( const char * x ) {
return x ? x : ( const char * ) - 1 ;
}
2013-03-25 05:30:32 +04:00
static inline bool strv_isempty ( char * const * l ) {
2010-02-13 03:04:44 +03:00
return ! l | | ! * l ;
}
2013-04-26 03:47:43 +04:00
char * * strv_split ( const char * s , const char * separator ) ;
char * * strv_split_newlines ( const char * s ) ;
2010-02-13 03:04:44 +03:00
2015-03-23 14:55:36 +03:00
int strv_split_quoted ( char * * * t , const char * s , UnquoteFlags flags ) ;
2014-11-11 01:44:34 +03:00
2013-04-26 03:47:43 +04:00
char * strv_join ( char * * l , const char * separator ) ;
2013-08-31 22:28:09 +04:00
char * strv_join_quoted ( char * * l ) ;
2010-02-13 03:04:44 +03:00
2011-02-23 03:12:07 +03:00
char * * strv_parse_nulstr ( const char * s , size_t l ) ;
2013-02-12 02:48:36 +04:00
char * * strv_split_nulstr ( const char * s ) ;
2011-02-23 03:12:07 +03:00
2013-05-03 06:51:50 +04:00
bool strv_overlap ( char * * a , char * * b ) _pure_ ;
2011-08-23 02:37:35 +04:00
2009-11-18 02:42:52 +03:00
# define STRV_FOREACH(s, l) \
2010-01-28 00:38:21 +03:00
for ( ( s ) = ( l ) ; ( s ) & & * ( s ) ; ( s ) + + )
2009-11-18 02:42:52 +03:00
# define STRV_FOREACH_BACKWARDS(s, l) \
2013-10-26 18:41:22 +04:00
STRV_FOREACH ( s , l ) \
; \
for ( ( s ) - - ; ( l ) & & ( ( s ) > = ( l ) ) ; ( s ) - - )
2012-10-19 06:52:25 +04:00
2013-01-12 07:24:12 +04:00
# define STRV_FOREACH_PAIR(x, y, l) \
2013-03-15 19:41:13 +04:00
for ( ( x ) = ( l ) , ( y ) = ( x + 1 ) ; ( x ) & & * ( x ) & & * ( y ) ; ( x ) + = 2 , ( y ) = ( x + 1 ) )
2013-01-12 07:24:12 +04:00
2012-10-19 06:52:25 +04:00
char * * strv_sort ( char * * l ) ;
2013-02-07 03:15:27 +04:00
void strv_print ( char * * l ) ;
2013-10-29 22:53:43 +04:00
2013-10-29 23:09:16 +04:00
# define STRV_MAKE(...) ((char**) ((const char*[]) { __VA_ARGS__, NULL }))
# define STRV_MAKE_EMPTY ((char*[1]) { NULL })
2013-10-29 22:53:43 +04:00
# define strv_from_stdarg_alloca(first) \
( { \
char * * _l ; \
\
if ( ! first ) \
2013-10-29 23:09:16 +04:00
_l = ( char * * ) & first ; \
2013-10-29 22:53:43 +04:00
else { \
unsigned _n ; \
va_list _ap ; \
\
_n = 1 ; \
va_start ( _ap , first ) ; \
while ( va_arg ( _ap , char * ) ) \
_n + + ; \
va_end ( _ap ) ; \
\
_l = newa ( char * , _n + 1 ) ; \
_l [ _n = 0 ] = ( char * ) first ; \
va_start ( _ap , first ) ; \
for ( ; ; ) { \
_l [ + + _n ] = va_arg ( _ap , char * ) ; \
if ( ! _l [ _n ] ) \
break ; \
} \
va_end ( _ap ) ; \
} \
_l ; \
} )
2014-03-05 06:34:48 +04:00
# define STR_IN_SET(x, ...) strv_contains(STRV_MAKE(__VA_ARGS__), x)
2014-03-19 03:54:41 +04:00
# define FOREACH_STRING(x, ...) \
for ( char * * _l = ( { \
char * * _ll = STRV_MAKE ( __VA_ARGS__ ) ; \
x = _ll ? _ll [ 0 ] : NULL ; \
_ll ; \
} ) ; \
_l & & * _l ; \
x = ( { \
_l + + ; \
_l [ 0 ] ; \
} ) )
2014-12-19 03:31:59 +03:00
char * * strv_reverse ( char * * l ) ;
2015-02-14 02:37:43 +03:00
2015-02-16 22:04:36 +03:00
bool strv_fnmatch ( char * const * patterns , const char * s , int flags ) ;
2015-02-14 02:37:43 +03:00
2015-02-16 22:04:36 +03:00
static inline bool strv_fnmatch_or_empty ( char * const * patterns , const char * s , int flags ) {
2015-02-14 02:37:43 +03:00
assert ( s ) ;
return strv_isempty ( patterns ) | |
2015-02-16 22:04:36 +03:00
strv_fnmatch ( patterns , s , flags ) ;
2015-02-14 02:37:43 +03:00
}