diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2024-05-27 16:35:40 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2024-05-27 16:35:40 +0000 |
commit | 793dc09daa859b94c69b2f6d9e45e4abf0300069 (patch) | |
tree | ab9a8d3b6cb21409db561e30f44b0ac0fa6aec06 /src/libexecline | |
parent | 0f17d658e63bbe06d4f278f81e255446dd30489d (diff) | |
download | execline-793dc09daa859b94c69b2f6d9e45e4abf0300069.tar.xz |
Prepare for 2.9.6.0, add elglob -d
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libexecline')
-rw-r--r-- | src/libexecline/exlsn_elglob.c | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/src/libexecline/exlsn_elglob.c b/src/libexecline/exlsn_elglob.c index c526e41..a5b66f3 100644 --- a/src/libexecline/exlsn_elglob.c +++ b/src/libexecline/exlsn_elglob.c @@ -1,12 +1,16 @@ /* ISC license. */ +#include <sys/uio.h> #include <errno.h> #include <glob.h> #include <string.h> + #include <skalibs/sgetopt.h> #include <skalibs/strerr.h> #include <skalibs/stralloc.h> #include <skalibs/genalloc.h> +#include <skalibs/netstring.h> + #include <execline/execline.h> #include "exlsn.h" @@ -20,16 +24,15 @@ static int elgloberrfunc (char const *s, int e) int exlsn_elglob (int argc, char const **argv, char const *const *envp, exlsn_t *info) { glob_t pglob ; - subgetopt localopt = SUBGETOPT_ZERO ; - elsubst_t blah ; + elsubst_t blah = { .var = info->vars.len, .value = info->values.len, .n = 1 } ; int flags = GLOB_NOSORT | GLOB_NOCHECK ; - unsigned int i = 0 ; int verbose = 0 ; - blah.var = info->vars.len ; - blah.value = info->values.len ; + int dochomp = 0 ; + char const *delim = 0 ; + subgetopt localopt = SUBGETOPT_ZERO ; for (;;) { - int opt = subgetopt_r(argc, argv, "vwsme0", &localopt) ; + int opt = subgetopt_r(argc, argv, "vwsme0nd:", &localopt) ; if (opt < 0) break ; switch (opt) { @@ -39,10 +42,13 @@ int exlsn_elglob (int argc, char const **argv, char const *const *envp, exlsn_t case 'm' : flags |= GLOB_MARK ; break ; case 'e' : flags |= GLOB_NOESCAPE ; break ; case '0' : flags &= ~GLOB_NOCHECK ; break ; + case 'n' : dochomp = 1 ; break ; + case 'd' : delim = localopt.arg ; break ; default : return -3 ; } } argc -= localopt.ind ; argv += localopt.ind ; + if (!delim) delim = "" ; else if (!*delim) delim = 0 ; if (argc < 2) return -3 ; if (!*argv[0] || el_vardupl(argv[0], info->vars.s, info->vars.len)) return -2 ; @@ -60,11 +66,15 @@ int exlsn_elglob (int argc, char const **argv, char const *const *envp, exlsn_t } default: goto err ; } - for ( ; i < (unsigned int)pglob.gl_pathc ; i++) - if (!stralloc_catb(&info->values, pglob.gl_pathv[i], strlen(pglob.gl_pathv[i]) + 1)) + for (size_t i = 0 ; i < pglob.gl_pathc ; i++) + if (delim ? !stralloc_cats(&info->values, pglob.gl_pathv[i]) || !stralloc_catb(&info->values, delim, 1) : + !netstring_appendb(&info->values, pglob.gl_pathv[i], strlen(pglob.gl_pathv[i]))) goto globerr ; - blah.n = pglob.gl_pathc ; + if (delim && *delim && dochomp) info->values.len-- ; + if (delim && !*delim) blah.n = pglob.gl_pathc ; + else if (!stralloc_0(&info->values)) goto globerr ; globfree(&pglob) ; + if (!genalloc_append(elsubst_t, &info->data, &blah)) goto err ; (void)envp ; return localopt.ind + 2 ; |