|
Libecoli 0.11.3
Extensible COmmand LIne library
|
Helpers for strings vectors manipulation. More...
Macros | |
| #define | EC_STRVEC(args...) |
| #define | EC_STRVEC_ATTR_START "start" |
| #define | EC_STRVEC_ATTR_END "end" |
Enumerations | |
| enum | ec_strvec_flag_t { EC_STRVEC_STRICT = 0x1 , EC_STRVEC_TRAILSP = 0x2 } |
Functions | |
| struct ec_strvec * | ec_strvec (void) |
| struct ec_strvec * | ec_strvec_from_array (const char *const *strarr, size_t n) |
| struct ec_strvec * | ec_strvec_sh_lex_str (const char *str, ec_strvec_flag_t flags, char *unclosed_quote) |
| int | ec_strvec_set (struct ec_strvec *strvec, size_t idx, const char *s) |
| int | ec_strvec_add (struct ec_strvec *strvec, const char *s) |
| int | ec_strvec_del_last (struct ec_strvec *strvec) |
| struct ec_strvec * | ec_strvec_dup (const struct ec_strvec *strvec) |
| struct ec_strvec * | ec_strvec_ndup (const struct ec_strvec *strvec, size_t off, size_t len) |
| void | ec_strvec_free (struct ec_strvec *strvec) |
| size_t | ec_strvec_len (const struct ec_strvec *strvec) |
| const char * | ec_strvec_val (const struct ec_strvec *strvec, size_t idx) |
| const struct ec_dict * | ec_strvec_get_attrs (const struct ec_strvec *strvec, size_t idx) |
| int | ec_strvec_set_attrs (struct ec_strvec *strvec, size_t idx, struct ec_dict *attrs) |
| int | ec_strvec_cmp (const struct ec_strvec *strvec1, const struct ec_strvec *strvec2) |
| void | ec_strvec_sort (struct ec_strvec *strvec, int(*str_cmp)(const char *s1, const char *s2)) |
| void | ec_strvec_dump (FILE *out, const struct ec_strvec *strvec) |
Helpers for strings vectors manipulation.
The ec_strvec API provides helpers to manipulate string vectors. When duplicating vectors, the strings are not duplicated in memory, a reference counter is used.
| #define EC_STRVEC | ( | args... | ) |
Allocate a new string vector.
The string vector is initialized with the list of const strings passed as arguments.
| #define EC_STRVEC_ATTR_START "start" |
All elements of the vector returned by ec_strvec_sh_lex_str() have two attributes accessible via ec_strvec_get_attrs(). The start index in the original line passed to ec_strvec_sh_lex_str().
| #define EC_STRVEC_ATTR_END "end" |
The end index in the original line passed to ec_strvec_sh_lex_str().
| enum ec_strvec_flag_t |
Options for ec_strvec_sh_lex_str().
| struct ec_strvec * ec_strvec | ( | void | ) |
Allocate a new empty string vector.
| struct ec_strvec * ec_strvec_from_array | ( | const char *const * | strarr, |
| size_t | n ) |
Allocate a new string vector.
The string vector is initialized with the array of const strings passed as arguments.
| strarr | The array of const strings. |
| n | The number of strings in the array. |
| struct ec_strvec * ec_strvec_sh_lex_str | ( | const char * | str, |
| ec_strvec_flag_t | flags, | ||
| char * | unclosed_quote ) |
Split a string into multiple tokens following basic shell lexing rules.
| str | The string to split. |
| flags | Options for controlling behavior. |
| unclosed_quote | If not NULL and if the provided string has an unterminated quote. The opening quote will be stored here. |
| int ec_strvec_set | ( | struct ec_strvec * | strvec, |
| size_t | idx, | ||
| const char * | s ) |
Set a string in the vector at specified index.
| strvec | The pointer to the string vector. |
| idx | The index of the string to set. |
| s | The string to be set. |
| int ec_strvec_add | ( | struct ec_strvec * | strvec, |
| const char * | s ) |
Add a string in a vector.
| strvec | The pointer to the string vector. |
| s | The string to be added at the end of the vector. |
| int ec_strvec_del_last | ( | struct ec_strvec * | strvec | ) |
Delete the last entry in the string vector.
| strvec | The pointer to the string vector. |
Duplicate a string vector.
Attributes are duplicated if any.
| strvec | The pointer to the string vector. |
Duplicate a part of a string vector.
Attributes are duplicated if any.
| strvec | The pointer to the string vector. |
| off | The index of the first string to duplicate. |
| len | The number of strings to duplicate. |
| void ec_strvec_free | ( | struct ec_strvec * | strvec | ) |
Free a string vector.
| strvec | The pointer to the string vector. |
| size_t ec_strvec_len | ( | const struct ec_strvec * | strvec | ) |
Get the length of a string vector.
| strvec | The pointer to the string vector. |
| const char * ec_strvec_val | ( | const struct ec_strvec * | strvec, |
| size_t | idx ) |
Get a string element from a vector.
| strvec | The pointer to the string vector. |
| idx | The index of the string to get. |
Get the attributes of a vector element.
| strvec | The pointer to the string vector. |
| idx | The index of the string to get. |
Set the attributes of a vector element.
| strvec | The pointer to the string vector. |
| idx | The index of the string to get. |
| attrs | The attributes to be set. |
Compare two string vectors.
| strvec1 | The pointer to the first string vector. |
| strvec2 | The pointer to the second string vector. |
| void ec_strvec_sort | ( | struct ec_strvec * | strvec, |
| int(* | str_cmp )(const char *s1, const char *s2) ) |
Sort the string vector.
Attributes are not compared.
| strvec | The pointer to the first string vector. |
| str_cmp | The sort function to use. If NULL, use strcmp. |
| void ec_strvec_dump | ( | FILE * | out, |
| const struct ec_strvec * | strvec ) |
Dump a string vector.
| out | The stream where the dump is sent. |
| strvec | The pointer to the string vector. |