tap: import some changes
[argpar.git] / argpar / argpar.c
index f5275aa755649cde191e5e71807e990e2f85a3cd..5c3d8faadfd2af5cb47acc121a8e30b8c4f85df3 100644 (file)
@@ -1,11 +1,9 @@
 /*
  * SPDX-License-Identifier: MIT
- *
- * Copyright 2019 Philippe Proulx <pproulx@efficios.com>
+ * SPDX-FileCopyrightText: 2019-2024 Philippe Proulx <pproulx@efficios.com>
+ * SPDX-FileCopyrightText: 2020-2024 Simon Marchi <simon.marchi@efficios.com>
  */
 
-#include <assert.h>
-#include <stdarg.h>
 #include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 
 #include "argpar.h"
 
-#define argpar_realloc(_ptr, _type, _nmemb) ((_type *) realloc(_ptr, (_nmemb) * sizeof(_type)))
-#define argpar_calloc(_type, _nmemb) ((_type *) calloc((_nmemb), sizeof(_type)))
-#define argpar_zalloc(_type) argpar_calloc(_type, 1)
+/*
+ * If argpar is used in some shared library, we don't want said library
+ * to export its symbols, so mark them as "hidden".
+ *
+ * On Windows, symbols are local unless explicitly exported; see
+ * <https://gcc.gnu.org/wiki/Visibility>.
+ */
+#if defined(_WIN32) || defined(__CYGWIN__)
+#    define ARGPAR_HIDDEN
+#else
+#    define ARGPAR_HIDDEN __attribute__((visibility("hidden")))
+#endif
+
+#define ARGPAR_REALLOC(_ptr, _type, _nmemb) ((_type *) realloc(_ptr, (_nmemb) * sizeof(_type)))
+
+#define ARGPAR_CALLOC(_type, _nmemb) ((_type *) calloc((_nmemb), sizeof(_type)))
 
-#define ARGPAR_ASSERT(_cond) assert(_cond)
+#define ARGPAR_ZALLOC(_type) ARGPAR_CALLOC(_type, 1)
 
-#ifdef __MINGW_PRINTF_FORMAT
-# define ARGPAR_PRINTF_FORMAT __MINGW_PRINTF_FORMAT
+#ifdef NDEBUG
+/*
+ * Force usage of the assertion condition to prevent unused variable
+ * warnings when `assert()` are disabled by the `NDEBUG` definition.
+ */
+#    define ARGPAR_ASSERT(_cond) ((void) sizeof((void) (_cond), 0))
 #else
-# define ARGPAR_PRINTF_FORMAT printf
+#    include <assert.h>
+#    define ARGPAR_ASSERT(_cond) assert(_cond)
 #endif
 
-static __attribute__((format(ARGPAR_PRINTF_FORMAT, 1, 0)))
-char *argpar_vasprintf(const char *fmt, va_list args)
+/*
+ * An argpar iterator.
+ *
+ * Such a structure contains the state of an iterator between calls to
+ * argpar_iter_next().
+ */
+struct argpar_iter
 {
-       int len1, len2;
-       char *str;
-       va_list args2;
+    /*
+     * Data provided by the user to argpar_iter_create(); immutable
+     * afterwards.
+     */
+    struct
+    {
+        unsigned int argc;
+        const char * const *argv;
+        const argpar_opt_descr_t *descrs;
+    } user;
+
+    /*
+     * Index of the argument to process in the next
+     * argpar_iter_next() call.
+     */
+    unsigned int i;
+
+    /* Counter of non-option arguments */
+    int non_opt_index;
+
+    /*
+     * Current character within the current short option group: if
+     * it's not `NULL`, the parser is within a short option group,
+     * therefore it must resume there in the next argpar_iter_next()
+     * call.
+     */
+    const char *short_opt_group_ch;
+
+    /* Temporary character buffer which only grows */
+    struct
+    {
+        size_t size;
+        char *data;
+    } tmp_buf;
+};
 
-       va_copy(args2, args);
+/* Base parsing item */
+struct argpar_item
+{
+    argpar_item_type_t type;
+};
 
-       len1 = vsnprintf(NULL, 0, fmt, args);
-       if (len1 < 0) {
-               str = NULL;
-               goto end;
-       }
+/* Option parsing item */
+typedef struct argpar_item_opt
+{
+    argpar_item_t base;
 
-       str = malloc(len1 + 1);
-       if (!str) {
-               goto end;
-       }
+    /* Corresponding descriptor */
+    const argpar_opt_descr_t *descr;
 
-       len2 = vsnprintf(str, len1 + 1, fmt, args2);
+    /* Argument, or `NULL` if none; owned by this */
+    char *arg;
+} argpar_item_opt_t;
 
-       ARGPAR_ASSERT(len1 == len2);
+/* Non-option parsing item */
+typedef struct argpar_item_non_opt
+{
+    argpar_item_t base;
+
+    /*
+     * Complete argument, pointing to one of the entries of the
+     * original arguments (`argv`).
+     */
+    const char *arg;
+
+    /*
+     * Index of this argument amongst all original arguments
+     * (`argv`).
+     */
+    unsigned int orig_index;
+
+    /* Index of this argument amongst other non-option arguments */
+    unsigned int non_opt_index;
+} argpar_item_non_opt_t;
+
+/* Parsing error */
+struct argpar_error
+{
+    /* Error type */
+    argpar_error_type_t type;
 
-end:
-       va_end(args2);
-       return str;
-}
+    /* Original argument index */
+    unsigned int orig_index;
 
+    /* Name of unknown option; owned by this */
+    char *unknown_opt_name;
 
-static __attribute__((format(ARGPAR_PRINTF_FORMAT, 1, 2)))
-char *argpar_asprintf(const char *fmt, ...)
-{
-       va_list args;
-       char *str;
+    /* Option descriptor */
+    const argpar_opt_descr_t *opt_descr;
 
-       va_start(args, fmt);
-       str = argpar_vasprintf(fmt, args);
-       va_end(args);
+    /* `true` if a short option caused the error */
+    bool is_short;
+};
 
-       return str;
+ARGPAR_HIDDEN argpar_item_type_t argpar_item_type(const argpar_item_t * const item)
+{
+    ARGPAR_ASSERT(item);
+    return item->type;
 }
 
-static __attribute__((format(ARGPAR_PRINTF_FORMAT, 2, 3)))
-bool argpar_string_append_printf(char **str, const char *fmt, ...)
+ARGPAR_HIDDEN const argpar_opt_descr_t *argpar_item_opt_descr(const argpar_item_t * const item)
 {
-       char *new_str = NULL;
-       char *addendum;
-       bool success;
-       va_list args;
-
-       ARGPAR_ASSERT(str);
-
-       va_start(args, fmt);
-       addendum = argpar_vasprintf(fmt, args);
-       va_end(args);
-
-       if (!addendum) {
-               success = false;
-               goto end;
-       }
-
-       new_str = argpar_asprintf("%s%s", *str ? *str : "", addendum);
-       if (!new_str) {
-               success = false;
-               goto end;
-       }
+    ARGPAR_ASSERT(item);
+    ARGPAR_ASSERT(item->type == ARGPAR_ITEM_TYPE_OPT);
+    return ((const argpar_item_opt_t *) item)->descr;
+}
 
-       free(*str);
-       *str = new_str;
+ARGPAR_HIDDEN const char *argpar_item_opt_arg(const argpar_item_t * const item)
+{
+    ARGPAR_ASSERT(item);
+    ARGPAR_ASSERT(item->type == ARGPAR_ITEM_TYPE_OPT);
+    return ((const argpar_item_opt_t *) item)->arg;
+}
 
-       success = true;
+ARGPAR_HIDDEN const char *argpar_item_non_opt_arg(const argpar_item_t * const item)
+{
+    ARGPAR_ASSERT(item);
+    ARGPAR_ASSERT(item->type == ARGPAR_ITEM_TYPE_NON_OPT);
+    return ((const argpar_item_non_opt_t *) item)->arg;
+}
 
-end:
-       free(addendum);
+ARGPAR_HIDDEN unsigned int argpar_item_non_opt_orig_index(const argpar_item_t * const item)
+{
+    ARGPAR_ASSERT(item);
+    ARGPAR_ASSERT(item->type == ARGPAR_ITEM_TYPE_NON_OPT);
+    return ((const argpar_item_non_opt_t *) item)->orig_index;
+}
 
-       return success;
+ARGPAR_HIDDEN unsigned int argpar_item_non_opt_non_opt_index(const argpar_item_t * const item)
+{
+    ARGPAR_ASSERT(item);
+    ARGPAR_ASSERT(item->type == ARGPAR_ITEM_TYPE_NON_OPT);
+    return ((const argpar_item_non_opt_t *) item)->non_opt_index;
 }
 
-static
-void destroy_item(struct argpar_item * const item)
+ARGPAR_HIDDEN void argpar_item_destroy(const argpar_item_t * const item)
 {
-       if (!item) {
-               goto end;
-       }
+    if (!item) {
+        goto end;
+    }
 
-       if (item->type == ARGPAR_ITEM_TYPE_OPT) {
-               struct argpar_item_opt * const opt_item = (void *) item;
+    if (item->type == ARGPAR_ITEM_TYPE_OPT) {
+        argpar_item_opt_t * const opt_item = (argpar_item_opt_t *) item;
 
-               free((void *) opt_item->arg);
-       }
+        free(opt_item->arg);
+    }
 
-       free(item);
+    free((void *) item);
 
 end:
-       return;
+    return;
 }
 
-static
-bool push_item(struct argpar_item_array * const array,
-               struct argpar_item * const item)
+/*
+ * Creates and returns an option parsing item for the descriptor `descr`
+ * and having the argument `arg` (copied; may be `NULL`).
+ *
+ * Returns `NULL` on memory error.
+ */
+static argpar_item_opt_t *create_opt_item(const argpar_opt_descr_t * const descr,
+                                          const char * const arg)
 {
-       bool success;
-
-       ARGPAR_ASSERT(array);
-       ARGPAR_ASSERT(item);
+    argpar_item_opt_t *opt_item = ARGPAR_ZALLOC(argpar_item_opt_t);
 
-       if (array->n_items == array->n_alloc) {
-               unsigned int new_n_alloc = array->n_alloc * 2;
-               struct argpar_item **new_items;
+    if (!opt_item) {
+        goto end;
+    }
 
-               new_items = argpar_realloc(array->items,
-                       struct argpar_item *, new_n_alloc);
-               if (!new_items) {
-                       success = false;
-                       goto end;
-               }
+    opt_item->base.type = ARGPAR_ITEM_TYPE_OPT;
+    opt_item->descr = descr;
 
-               array->n_alloc = new_n_alloc;
-               array->items = new_items;
-       }
+    if (arg) {
+        opt_item->arg = strdup(arg);
+        if (!opt_item->arg) {
+            goto error;
+        }
+    }
 
-       array->items[array->n_items] = item;
-       array->n_items++;
+    goto end;
 
-       success = true;
+error:
+    argpar_item_destroy(&opt_item->base);
+    opt_item = NULL;
 
 end:
-       return success;
+    return opt_item;
 }
 
-static
-void destroy_item_array(struct argpar_item_array * const array)
+/*
+ * Creates and returns a non-option parsing item for the original
+ * argument `arg` having the original index `orig_index` and the
+ * non-option index `non_opt_index`.
+ *
+ * Returns `NULL` on memory error.
+ */
+static argpar_item_non_opt_t *create_non_opt_item(const char * const arg,
+                                                  const unsigned int orig_index,
+                                                  const unsigned int non_opt_index)
 {
-       if (array) {
-               unsigned int i;
+    argpar_item_non_opt_t * const non_opt_item = ARGPAR_ZALLOC(argpar_item_non_opt_t);
 
-               for (i = 0; i < array->n_items; i++) {
-                       destroy_item(array->items[i]);
-               }
+    if (!non_opt_item) {
+        goto end;
+    }
 
-               free(array->items);
-               free(array);
-       }
+    non_opt_item->base.type = ARGPAR_ITEM_TYPE_NON_OPT;
+    non_opt_item->arg = arg;
+    non_opt_item->orig_index = orig_index;
+    non_opt_item->non_opt_index = non_opt_index;
+
+end:
+    return non_opt_item;
 }
 
-static
-struct argpar_item_array *new_item_array(void)
+/*
+ * If `error` is not `NULL`, sets the error `error` to a new parsing
+ * error object, setting its `unknown_opt_name`, `opt_descr`, and
+ * `is_short` members from the parameters.
+ *
+ * `unknown_opt_name` is the unknown option name without any `-` or `--`
+ * prefix: `is_short` controls which type of unknown option it is.
+ *
+ * Returns 0 on success (including if `error` is `NULL`) or -1 on memory
+ * error.
+ */
+static int set_error(argpar_error_t ** const error, argpar_error_type_t type,
+                     const char * const unknown_opt_name,
+                     const argpar_opt_descr_t * const opt_descr, const bool is_short)
 {
-       struct argpar_item_array *ret;
-       const int initial_size = 10;
+    int ret = 0;
+
+    if (!error) {
+        goto end;
+    }
+
+    *error = ARGPAR_ZALLOC(argpar_error_t);
+    if (!*error) {
+        goto error;
+    }
+
+    (*error)->type = type;
 
-       ret = argpar_zalloc(struct argpar_item_array);
-       if (!ret) {
-               goto end;
-       }
+    if (unknown_opt_name) {
+        (*error)->unknown_opt_name =
+            ARGPAR_CALLOC(char, strlen(unknown_opt_name) + 1 + (is_short ? 1 : 2));
+        if (!(*error)->unknown_opt_name) {
+            goto error;
+        }
 
-       ret->items = argpar_calloc(struct argpar_item *, initial_size);
-       if (!ret->items) {
-               goto error;
-       }
+        if (is_short) {
+            strcpy((*error)->unknown_opt_name, "-");
+        } else {
+            strcpy((*error)->unknown_opt_name, "--");
+        }
 
-       ret->n_alloc = initial_size;
+        strcat((*error)->unknown_opt_name, unknown_opt_name);
+    }
 
-       goto end;
+    (*error)->opt_descr = opt_descr;
+    (*error)->is_short = is_short;
+    goto end;
 
 error:
-       destroy_item_array(ret);
-       ret = NULL;
+    argpar_error_destroy(*error);
+    ret = -1;
 
 end:
-       return ret;
+    return ret;
 }
 
-static
-struct argpar_item_opt *create_opt_item(
-               const struct argpar_opt_descr * const descr,
-               const char * const arg)
+ARGPAR_HIDDEN argpar_error_type_t argpar_error_type(const argpar_error_t * const error)
 {
-       struct argpar_item_opt *opt_item =
-               argpar_zalloc(struct argpar_item_opt);
-
-       if (!opt_item) {
-               goto end;
-       }
-
-       opt_item->base.type = ARGPAR_ITEM_TYPE_OPT;
-       opt_item->descr = descr;
-
-       if (arg) {
-               opt_item->arg = strdup(arg);
-               if (!opt_item->arg) {
-                       goto error;
-               }
-       }
-
-       goto end;
+    ARGPAR_ASSERT(error);
+    return error->type;
+}
 
-error:
-       destroy_item(&opt_item->base);
-       opt_item = NULL;
+ARGPAR_HIDDEN unsigned int argpar_error_orig_index(const argpar_error_t * const error)
+{
+    ARGPAR_ASSERT(error);
+    return error->orig_index;
+}
 
-end:
-       return opt_item;
+ARGPAR_HIDDEN const char *argpar_error_unknown_opt_name(const argpar_error_t * const error)
+{
+    ARGPAR_ASSERT(error);
+    ARGPAR_ASSERT(error->type == ARGPAR_ERROR_TYPE_UNKNOWN_OPT);
+    ARGPAR_ASSERT(error->unknown_opt_name);
+    return error->unknown_opt_name;
 }
 
-static
-struct argpar_item_non_opt *create_non_opt_item(const char * const arg,
-               const unsigned int orig_index,
-               const unsigned int non_opt_index)
+ARGPAR_HIDDEN const argpar_opt_descr_t *argpar_error_opt_descr(const argpar_error_t * const error,
+                                                               bool * const is_short)
 {
-       struct argpar_item_non_opt * const non_opt_item =
-               argpar_zalloc(struct argpar_item_non_opt);
+    ARGPAR_ASSERT(error);
+    ARGPAR_ASSERT(error->type == ARGPAR_ERROR_TYPE_MISSING_OPT_ARG ||
+                  error->type == ARGPAR_ERROR_TYPE_UNEXPECTED_OPT_ARG);
+    ARGPAR_ASSERT(error->opt_descr);
 
-       if (!non_opt_item) {
-               goto end;
-       }
+    if (is_short) {
+        *is_short = error->is_short;
+    }
 
-       non_opt_item->base.type = ARGPAR_ITEM_TYPE_NON_OPT;
-       non_opt_item->arg = arg;
-       non_opt_item->orig_index = orig_index;
-       non_opt_item->non_opt_index = non_opt_index;
+    return error->opt_descr;
+}
 
-end:
-       return non_opt_item;
+ARGPAR_HIDDEN void argpar_error_destroy(const argpar_error_t * const error)
+{
+    if (error) {
+        free(error->unknown_opt_name);
+        free((void *) error);
+    }
 }
 
-static
-const struct argpar_opt_descr *find_descr(
-               const struct argpar_opt_descr * const descrs,
-               const char short_name, const char * const long_name)
+/*
+ * Finds and returns the _first_ descriptor having the short option name
+ * `short_name` or the long option name `long_name` within the option
+ * descriptors `descrs`.
+ *
+ * `short_name` may be `'\0'` to not consider it.
+ *
+ * `long_name` may be `NULL` to not consider it.
+ *
+ * Returns `NULL` if no descriptor is found.
+ */
+static const argpar_opt_descr_t *find_descr(const argpar_opt_descr_t * const descrs,
+                                            const char short_name, const char * const long_name)
 {
-       const struct argpar_opt_descr *descr;
+    const argpar_opt_descr_t *descr;
 
-       for (descr = descrs; descr->short_name || descr->long_name; descr++) {
-               if (short_name && descr->short_name &&
-                               short_name == descr->short_name) {
-                       goto end;
-               }
+    for (descr = descrs; descr->short_name || descr->long_name; descr++) {
+        if (short_name && descr->short_name && short_name == descr->short_name) {
+            goto end;
+        }
 
-               if (long_name && descr->long_name &&
-                               strcmp(long_name, descr->long_name) == 0) {
-                       goto end;
-               }
-       }
+        if (long_name && descr->long_name && strcmp(long_name, descr->long_name) == 0) {
+            goto end;
+        }
+    }
 
 end:
-       return !descr->short_name && !descr->long_name ? NULL : descr;
+    return !descr->short_name && !descr->long_name ? NULL : descr;
 }
 
-enum parse_orig_arg_opt_ret {
-       PARSE_ORIG_ARG_OPT_RET_OK,
-       PARSE_ORIG_ARG_OPT_RET_ERROR_UNKNOWN_OPT = -2,
-       PARSE_ORIG_ARG_OPT_RET_ERROR = -1,
-};
+/* Return type of parse_short_opt_group() and parse_long_opt() */
+typedef enum parse_orig_arg_opt_ret
+{
+    PARSE_ORIG_ARG_OPT_RET_OK,
+    PARSE_ORIG_ARG_OPT_RET_ERROR = -1,
+    PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY = -2,
+} parse_orig_arg_opt_ret_t;
 
-static
-enum parse_orig_arg_opt_ret parse_short_opts(const char * const short_opts,
-               const char * const next_orig_arg,
-               const struct argpar_opt_descr * const descrs,
-               struct argpar_parse_ret * const parse_ret,
-               bool * const used_next_orig_arg)
+/*
+ * Parses the short option group argument `short_opt_group`, starting
+ * where needed depending on the state of `iter`.
+ *
+ * On success, sets `*item`.
+ *
+ * On error (except for `PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY`), sets
+ * `*error`.
+ */
+static parse_orig_arg_opt_ret_t
+parse_short_opt_group(const char * const short_opt_group, const char * const next_orig_arg,
+                      const argpar_opt_descr_t * const descrs, argpar_iter_t * const iter,
+                      argpar_error_t ** const error, argpar_item_t ** const item)
 {
-       enum parse_orig_arg_opt_ret ret = PARSE_ORIG_ARG_OPT_RET_OK;
-       const char *short_opt_ch = short_opts;
-
-       if (strlen(short_opts) == 0) {
-               argpar_string_append_printf(&parse_ret->error, "Invalid argument");
-               goto error;
-       }
-
-       while (*short_opt_ch) {
-               const char *opt_arg = NULL;
-               const struct argpar_opt_descr *descr;
-               struct argpar_item_opt *opt_item;
-
-               /* Find corresponding option descriptor */
-               descr = find_descr(descrs, *short_opt_ch, NULL);
-               if (!descr) {
-                       ret = PARSE_ORIG_ARG_OPT_RET_ERROR_UNKNOWN_OPT;
-                       argpar_string_append_printf(&parse_ret->error,
-                               "Unknown option `-%c`", *short_opt_ch);
-                       goto error;
-               }
-
-               if (descr->with_arg) {
-                       if (short_opt_ch[1]) {
-                               /* `-oarg` form */
-                               opt_arg = &short_opt_ch[1];
-                       } else {
-                               /* `-o arg` form */
-                               opt_arg = next_orig_arg;
-                               *used_next_orig_arg = true;
-                       }
-
-                       /*
-                        * We accept `-o ''` (empty option's argument),
-                        * but not `-o` alone if an option's argument is
-                        * expected.
-                        */
-                       if (!opt_arg || (short_opt_ch[1] && strlen(opt_arg) == 0)) {
-                               argpar_string_append_printf(&parse_ret->error,
-                                       "Missing required argument for option `-%c`",
-                                       *short_opt_ch);
-                               *used_next_orig_arg = false;
-                               goto error;
-                       }
-               }
-
-               /* Create and append option argument */
-               opt_item = create_opt_item(descr, opt_arg);
-               if (!opt_item) {
-                       goto error;
-               }
-
-               if (!push_item(parse_ret->items, &opt_item->base)) {
-                       goto error;
-               }
-
-               if (descr->with_arg) {
-                       /* Option has an argument: no more options */
-                       break;
-               }
-
-               /* Go to next short option */
-               short_opt_ch++;
-       }
-
-       goto end;
+    parse_orig_arg_opt_ret_t ret = PARSE_ORIG_ARG_OPT_RET_OK;
+    bool used_next_orig_arg = false;
+    const char *opt_arg = NULL;
+    const argpar_opt_descr_t *descr;
+    argpar_item_opt_t *opt_item;
+
+    ARGPAR_ASSERT(strlen(short_opt_group) != 0);
+
+    if (!iter->short_opt_group_ch) {
+        iter->short_opt_group_ch = short_opt_group;
+    }
+
+    /* Find corresponding option descriptor */
+    descr = find_descr(descrs, *iter->short_opt_group_ch, NULL);
+    if (!descr) {
+        const char unknown_opt_name[] = {*iter->short_opt_group_ch, '\0'};
+
+        ret = PARSE_ORIG_ARG_OPT_RET_ERROR;
+
+        if (set_error(error, ARGPAR_ERROR_TYPE_UNKNOWN_OPT, unknown_opt_name, NULL, true)) {
+            ret = PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY;
+        }
+
+        goto error;
+    }
+
+    if (descr->with_arg) {
+        if (iter->short_opt_group_ch[1]) {
+            /* `-oarg` form */
+            opt_arg = &iter->short_opt_group_ch[1];
+        } else {
+            /* `-o arg` form */
+            opt_arg = next_orig_arg;
+            used_next_orig_arg = true;
+        }
+
+        /*
+         * We accept `-o ''` (empty option argument), but not
+         * `-o` alone if an option argument is expected.
+         */
+        if (!opt_arg || (iter->short_opt_group_ch[1] && strlen(opt_arg) == 0)) {
+            ret = PARSE_ORIG_ARG_OPT_RET_ERROR;
+
+            if (set_error(error, ARGPAR_ERROR_TYPE_MISSING_OPT_ARG, NULL, descr, true)) {
+                ret = PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY;
+            }
+
+            goto error;
+        }
+    }
+
+    /* Create and append option argument */
+    opt_item = create_opt_item(descr, opt_arg);
+    if (!opt_item) {
+        ret = PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY;
+        goto error;
+    }
+
+    *item = &opt_item->base;
+    iter->short_opt_group_ch++;
+
+    if (descr->with_arg || !*iter->short_opt_group_ch) {
+        /* Option has an argument: no more options */
+        iter->short_opt_group_ch = NULL;
+
+        if (used_next_orig_arg) {
+            iter->i += 2;
+        } else {
+            iter->i++;
+        }
+    }
+
+    goto end;
 
 error:
-       if (ret == PARSE_ORIG_ARG_OPT_RET_OK) {
-               ret = PARSE_ORIG_ARG_OPT_RET_ERROR;
-       }
+    ARGPAR_ASSERT(ret != PARSE_ORIG_ARG_OPT_RET_OK);
 
 end:
-       return ret;
+    return ret;
 }
 
-static
-enum parse_orig_arg_opt_ret parse_long_opt(const char * const long_opt_arg,
-               const char * const next_orig_arg,
-               const struct argpar_opt_descr * const descrs,
-               struct argpar_parse_ret * const parse_ret,
-               bool * const used_next_orig_arg)
+/*
+ * Parses the long option argument `long_opt_arg`.
+ *
+ * On success, sets `*item`.
+ *
+ * On error (except for `PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY`), sets
+ * `*error`.
+ */
+static parse_orig_arg_opt_ret_t
+parse_long_opt(const char * const long_opt_arg, const char * const next_orig_arg,
+               const argpar_opt_descr_t * const descrs, argpar_iter_t * const iter,
+               argpar_error_t ** const error, argpar_item_t ** const item)
 {
-       const size_t max_len = 127;
-       enum parse_orig_arg_opt_ret ret = PARSE_ORIG_ARG_OPT_RET_OK;
-       const struct argpar_opt_descr *descr;
-       struct argpar_item_opt *opt_item;
-
-       /* Option's argument, if any */
-       const char *opt_arg = NULL;
-
-       /* Position of first `=`, if any */
-       const char *eq_pos;
-
-       /* Buffer holding option name when `long_opt_arg` contains `=` */
-       char buf[max_len + 1];
-
-       /* Option name */
-       const char *long_opt_name = long_opt_arg;
-
-       if (strlen(long_opt_arg) == 0) {
-               argpar_string_append_printf(&parse_ret->error,
-                       "Invalid argument");
-               goto error;
-       }
-
-       /* Find the first `=` in original argument */
-       eq_pos = strchr(long_opt_arg, '=');
-       if (eq_pos) {
-               const size_t long_opt_name_size = eq_pos - long_opt_arg;
-
-               /* Isolate the option name */
-               if (long_opt_name_size > max_len) {
-                       argpar_string_append_printf(&parse_ret->error,
-                               "Invalid argument `--%s`", long_opt_arg);
-                       goto error;
-               }
-
-               memcpy(buf, long_opt_arg, long_opt_name_size);
-               buf[long_opt_name_size] = '\0';
-               long_opt_name = buf;
-       }
-
-       /* Find corresponding option descriptor */
-       descr = find_descr(descrs, '\0', long_opt_name);
-       if (!descr) {
-               argpar_string_append_printf(&parse_ret->error,
-                       "Unknown option `--%s`", long_opt_name);
-               ret = PARSE_ORIG_ARG_OPT_RET_ERROR_UNKNOWN_OPT;
-               goto error;
-       }
-
-       /* Find option's argument if any */
-       if (descr->with_arg) {
-               if (eq_pos) {
-                       /* `--long-opt=arg` style */
-                       opt_arg = eq_pos + 1;
-               } else {
-                       /* `--long-opt arg` style */
-                       if (!next_orig_arg) {
-                               argpar_string_append_printf(&parse_ret->error,
-                                       "Missing required argument for option `--%s`",
-                                       long_opt_name);
-                               goto error;
-                       }
-
-                       opt_arg = next_orig_arg;
-                       *used_next_orig_arg = true;
-               }
-       } else if (eq_pos) {
-               /*
-                * Unexpected `--opt=arg` style for a long option which
-                * doesn't accept an argument.
-                */
-               argpar_string_append_printf(&parse_ret->error,
-                       "Unexpected argument for option `--%s`",
-                       long_opt_name);
-               goto error;
-       }
-
-       /* Create and append option argument */
-       opt_item = create_opt_item(descr, opt_arg);
-       if (!opt_item) {
-               goto error;
-       }
-
-       if (!push_item(parse_ret->items, &opt_item->base)) {
-               goto error;
-       }
-
-       goto end;
+    parse_orig_arg_opt_ret_t ret = PARSE_ORIG_ARG_OPT_RET_OK;
+    const argpar_opt_descr_t *descr;
+    argpar_item_opt_t *opt_item;
+    bool used_next_orig_arg = false;
+
+    /* Option's argument, if any */
+    const char *opt_arg = NULL;
+
+    /* Position of first `=`, if any */
+    const char *eq_pos;
+
+    /* Option name */
+    const char *long_opt_name = long_opt_arg;
+
+    ARGPAR_ASSERT(strlen(long_opt_arg) != 0);
+
+    /* Find the first `=` in original argument */
+    eq_pos = strchr(long_opt_arg, '=');
+    if (eq_pos) {
+        const size_t long_opt_name_size = eq_pos - long_opt_arg;
+
+        /* Isolate the option name */
+        while (long_opt_name_size > iter->tmp_buf.size - 1) {
+            const size_t new_size = iter->tmp_buf.size * 2;
+            char * const new_data = ARGPAR_REALLOC(iter->tmp_buf.data, char, new_size);
+
+            if (!new_data) {
+                ret = PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY;
+                goto error;
+            }
+
+            iter->tmp_buf.size = new_size;
+            iter->tmp_buf.data = new_data;
+        }
+
+        memcpy(iter->tmp_buf.data, long_opt_arg, long_opt_name_size);
+        iter->tmp_buf.data[long_opt_name_size] = '\0';
+        long_opt_name = iter->tmp_buf.data;
+    }
+
+    /* Find corresponding option descriptor */
+    descr = find_descr(descrs, '\0', long_opt_name);
+    if (!descr) {
+        ret = PARSE_ORIG_ARG_OPT_RET_ERROR;
+
+        if (set_error(error, ARGPAR_ERROR_TYPE_UNKNOWN_OPT, long_opt_name, NULL, false)) {
+            ret = PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY;
+        }
+
+        goto error;
+    }
+
+    /* Find option's argument if any */
+    if (descr->with_arg) {
+        if (eq_pos) {
+            /* `--long-opt=arg` style */
+            opt_arg = eq_pos + 1;
+        } else {
+            /* `--long-opt arg` style */
+            if (!next_orig_arg) {
+                ret = PARSE_ORIG_ARG_OPT_RET_ERROR;
+
+                if (set_error(error, ARGPAR_ERROR_TYPE_MISSING_OPT_ARG, NULL, descr, false)) {
+                    ret = PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY;
+                }
+
+                goto error;
+            }
+
+            opt_arg = next_orig_arg;
+            used_next_orig_arg = true;
+        }
+    } else if (eq_pos) {
+        /*
+         * Unexpected `--opt=arg` style for a long option which
+         * doesn't accept an argument.
+         */
+        ret = PARSE_ORIG_ARG_OPT_RET_ERROR;
+
+        if (set_error(error, ARGPAR_ERROR_TYPE_UNEXPECTED_OPT_ARG, NULL, descr, false)) {
+            ret = PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY;
+        }
+
+        goto error;
+    }
+
+    /* Create and append option argument */
+    opt_item = create_opt_item(descr, opt_arg);
+    if (!opt_item) {
+        goto error;
+    }
+
+    if (used_next_orig_arg) {
+        iter->i += 2;
+    } else {
+        iter->i++;
+    }
+
+    *item = &opt_item->base;
+    goto end;
 
 error:
-       if (ret == PARSE_ORIG_ARG_OPT_RET_OK) {
-               ret = PARSE_ORIG_ARG_OPT_RET_ERROR;
-       }
+    ARGPAR_ASSERT(ret != PARSE_ORIG_ARG_OPT_RET_OK);
 
 end:
-       return ret;
+    return ret;
 }
 
-static
-enum parse_orig_arg_opt_ret parse_orig_arg_opt(const char * const orig_arg,
-               const char * const next_orig_arg,
-               const struct argpar_opt_descr * const descrs,
-               struct argpar_parse_ret * const parse_ret,
-               bool * const used_next_orig_arg)
+/*
+ * Parses the original argument `orig_arg`.
+ *
+ * On success, sets `*item`.
+ *
+ * On error (except for `PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY`), sets
+ * `*error`.
+ */
+static parse_orig_arg_opt_ret_t
+parse_orig_arg_opt(const char * const orig_arg, const char * const next_orig_arg,
+                   const argpar_opt_descr_t * const descrs, argpar_iter_t * const iter,
+                   argpar_error_t ** const error, argpar_item_t ** const item)
 {
-       enum parse_orig_arg_opt_ret ret = PARSE_ORIG_ARG_OPT_RET_OK;
-
-       ARGPAR_ASSERT(orig_arg[0] == '-');
-
-       if (orig_arg[1] == '-') {
-               /* Long option */
-               ret = parse_long_opt(&orig_arg[2],
-                       next_orig_arg, descrs, parse_ret,
-                       used_next_orig_arg);
-       } else {
-               /* Short option */
-               ret = parse_short_opts(&orig_arg[1],
-                       next_orig_arg, descrs, parse_ret,
-                       used_next_orig_arg);
-       }
-
-       return ret;
-}
+    parse_orig_arg_opt_ret_t ret = PARSE_ORIG_ARG_OPT_RET_OK;
 
-static
-bool prepend_while_parsing_arg_to_error(char **error,
-               const unsigned int i, const char * const arg)
-{
-       char *new_error;
-       bool success;
+    ARGPAR_ASSERT(orig_arg[0] == '-');
 
-       ARGPAR_ASSERT(error);
-       ARGPAR_ASSERT(*error);
+    if (orig_arg[1] == '-') {
+        /* Long option */
+        ret = parse_long_opt(&orig_arg[2], next_orig_arg, descrs, iter, error, item);
+    } else {
+        /* Short option */
+        ret = parse_short_opt_group(&orig_arg[1], next_orig_arg, descrs, iter, error, item);
+    }
 
-       new_error = argpar_asprintf("While parsing argument #%u (`%s`): %s",
-               i + 1, arg, *error);
-       if (!new_error) {
-               success = false;
-               goto end;
-       }
+    return ret;
+}
 
-       free(*error);
-       *error = new_error;
-       success = true;
+ARGPAR_HIDDEN argpar_iter_t *argpar_iter_create(const unsigned int argc,
+                                                const char * const * const argv,
+                                                const argpar_opt_descr_t * const descrs)
+{
+    argpar_iter_t *iter = ARGPAR_ZALLOC(argpar_iter_t);
+
+    if (!iter) {
+        goto end;
+    }
+
+    iter->user.argc = argc;
+    iter->user.argv = argv;
+    iter->user.descrs = descrs;
+    iter->tmp_buf.size = 128;
+    iter->tmp_buf.data = ARGPAR_CALLOC(char, iter->tmp_buf.size);
+    if (!iter->tmp_buf.data) {
+        argpar_iter_destroy(iter);
+        iter = NULL;
+        goto end;
+    }
 
 end:
-       return success;
+    return iter;
 }
 
-ARGPAR_HIDDEN
-struct argpar_parse_ret argpar_parse(unsigned int argc,
-               const char * const *argv,
-               const struct argpar_opt_descr * const descrs,
-               bool fail_on_unknown_opt)
+ARGPAR_HIDDEN void argpar_iter_destroy(argpar_iter_t * const iter)
 {
-       struct argpar_parse_ret parse_ret = { 0 };
-       unsigned int i;
-       unsigned int non_opt_index = 0;
-
-       parse_ret.items = new_item_array();
-       if (!parse_ret.items) {
-               goto error;
-       }
-
-       for (i = 0; i < argc; i++) {
-               enum parse_orig_arg_opt_ret parse_orig_arg_opt_ret;
-               bool used_next_orig_arg = false;
-               const char * const orig_arg = argv[i];
-               const char * const next_orig_arg =
-                       i < argc - 1 ? argv[i + 1] : NULL;
-
-               if (orig_arg[0] != '-') {
-                       /* Non-option argument */
-                       struct argpar_item_non_opt *non_opt_item =
-                               create_non_opt_item(orig_arg, i, non_opt_index);
-
-                       if (!non_opt_item) {
-                               goto error;
-                       }
-
-                       non_opt_index++;
-
-                       if (!push_item(parse_ret.items, &non_opt_item->base)) {
-                               goto error;
-                       }
-
-                       continue;
-               }
-
-               /* Option argument */
-               parse_orig_arg_opt_ret = parse_orig_arg_opt(orig_arg,
-                       next_orig_arg, descrs, &parse_ret, &used_next_orig_arg);
-               switch (parse_orig_arg_opt_ret) {
-               case PARSE_ORIG_ARG_OPT_RET_OK:
-                       break;
-               case PARSE_ORIG_ARG_OPT_RET_ERROR_UNKNOWN_OPT:
-                       ARGPAR_ASSERT(!used_next_orig_arg);
-
-                       if (fail_on_unknown_opt) {
-                               prepend_while_parsing_arg_to_error(
-                                       &parse_ret.error, i, orig_arg);
-                               goto error;
-                       }
-
-                       /*
-                        * The current original argument is not
-                        * considered ingested because it triggered an
-                        * unknown option.
-                        */
-                       parse_ret.ingested_orig_args = i;
-                       free(parse_ret.error);
-                       parse_ret.error = NULL;
-                       goto end;
-               case PARSE_ORIG_ARG_OPT_RET_ERROR:
-                       prepend_while_parsing_arg_to_error(
-                               &parse_ret.error, i, orig_arg);
-                       goto error;
-               default:
-                       abort();
-               }
-
-               if (used_next_orig_arg) {
-                       i++;
-               }
-       }
-
-       parse_ret.ingested_orig_args = argc;
-       free(parse_ret.error);
-       parse_ret.error = NULL;
-       goto end;
+    if (iter) {
+        free(iter->tmp_buf.data);
+        free(iter);
+    }
+}
 
-error:
-       /* That's how we indicate that an error occured */
-       destroy_item_array(parse_ret.items);
-       parse_ret.items = NULL;
+ARGPAR_HIDDEN argpar_iter_next_status_t argpar_iter_next(argpar_iter_t * const iter,
+                                                         const argpar_item_t ** const item,
+                                                         const argpar_error_t ** const error)
+{
+    argpar_iter_next_status_t status;
+    parse_orig_arg_opt_ret_t parse_orig_arg_opt_ret;
+    const char *orig_arg;
+    const char *next_orig_arg;
+    argpar_error_t ** const nc_error = (argpar_error_t **) error;
+
+    ARGPAR_ASSERT(iter->i <= iter->user.argc);
+
+    if (error) {
+        *nc_error = NULL;
+    }
+
+    if (iter->i == iter->user.argc) {
+        status = ARGPAR_ITER_NEXT_STATUS_END;
+        goto end;
+    }
+
+    orig_arg = iter->user.argv[iter->i];
+    next_orig_arg = iter->i < (iter->user.argc - 1) ? iter->user.argv[iter->i + 1] : NULL;
+
+    if (strcmp(orig_arg, "-") == 0 || strcmp(orig_arg, "--") == 0 || orig_arg[0] != '-') {
+        /* Non-option argument */
+        const argpar_item_non_opt_t * const non_opt_item =
+            create_non_opt_item(orig_arg, iter->i, iter->non_opt_index);
+
+        if (!non_opt_item) {
+            status = ARGPAR_ITER_NEXT_STATUS_ERROR_MEMORY;
+            goto end;
+        }
+
+        iter->non_opt_index++;
+        iter->i++;
+        *item = &non_opt_item->base;
+        status = ARGPAR_ITER_NEXT_STATUS_OK;
+        goto end;
+    }
+
+    /* Option argument */
+    parse_orig_arg_opt_ret = parse_orig_arg_opt(orig_arg, next_orig_arg, iter->user.descrs, iter,
+                                                nc_error, (argpar_item_t **) item);
+    switch (parse_orig_arg_opt_ret) {
+    case PARSE_ORIG_ARG_OPT_RET_OK:
+        status = ARGPAR_ITER_NEXT_STATUS_OK;
+        break;
+    case PARSE_ORIG_ARG_OPT_RET_ERROR:
+        if (error) {
+            ARGPAR_ASSERT(*error);
+            (*nc_error)->orig_index = iter->i;
+        }
+        status = ARGPAR_ITER_NEXT_STATUS_ERROR;
+        break;
+    case PARSE_ORIG_ARG_OPT_RET_ERROR_MEMORY:
+        status = ARGPAR_ITER_NEXT_STATUS_ERROR_MEMORY;
+        break;
+    default:
+        abort();
+    }
 
 end:
-       return parse_ret;
+    return status;
 }
 
-ARGPAR_HIDDEN
-void argpar_parse_ret_fini(struct argpar_parse_ret *ret)
+ARGPAR_HIDDEN unsigned int argpar_iter_ingested_orig_args(const argpar_iter_t * const iter)
 {
-       ARGPAR_ASSERT(ret);
-
-       destroy_item_array(ret->items);
-       ret->items = NULL;
-
-       free(ret->error);
-       ret->error = NULL;
+    return iter->i;
 }
This page took 0.034124 seconds and 4 git commands to generate.