123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- /*
- * param.c
- *
- * This file provides the implementation of the "param" class
- */
- #include "private.h"
- #include "lub/string.h"
- #include "clish/types.h"
- #include <assert.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- /*---------------------------------------------------------
- * PRIVATE METHODS
- *--------------------------------------------------------- */
- static void clish_param_init(clish_param_t *this, const char *name,
- const char *text, const char *ptype_name)
- {
- this->name = lub_string_dup(name);
- this->text = lub_string_dup(text);
- this->ptype_name = lub_string_dup(ptype_name);
- /* Set up defaults */
- this->ptype = NULL;
- this->defval = NULL;
- this->mode = CLISH_PARAM_COMMON;
- this->optional = BOOL_FALSE;
- this->order = BOOL_FALSE;
- this->value = NULL;
- this->hidden = BOOL_FALSE;
- this->test = NULL;
- this->completion = NULL;
- this->access = NULL;
- this->paramv = clish_paramv_new();
- }
- /*--------------------------------------------------------- */
- static void clish_param_fini(clish_param_t * this)
- {
- /* deallocate the memory for this instance */
- lub_string_free(this->defval);
- lub_string_free(this->name);
- lub_string_free(this->text);
- lub_string_free(this->ptype_name);
- lub_string_free(this->value);
- lub_string_free(this->test);
- lub_string_free(this->completion);
- lub_string_free(this->access);
- clish_paramv_delete(this->paramv);
- }
- /*---------------------------------------------------------
- * PUBLIC META FUNCTIONS
- *--------------------------------------------------------- */
- clish_param_t *clish_param_new(const char *name, const char *text,
- const char *ptype_name)
- {
- clish_param_t *this = malloc(sizeof(clish_param_t));
- if (this)
- clish_param_init(this, name, text, ptype_name);
- return this;
- }
- /*---------------------------------------------------------
- * PUBLIC METHODS
- *--------------------------------------------------------- */
- void clish_param_delete(clish_param_t * this)
- {
- clish_param_fini(this);
- free(this);
- }
- /*--------------------------------------------------------- */
- void clish_param_insert_param(clish_param_t * this, clish_param_t * param)
- {
- return clish_paramv_insert(this->paramv, param);
- }
- /*---------------------------------------------------------
- * PUBLIC ATTRIBUTES
- *--------------------------------------------------------- */
- void clish_param__set_ptype_name(clish_param_t *this, const char *ptype_name)
- {
- if (this->ptype_name)
- lub_string_free(this->ptype_name);
- this->ptype_name = lub_string_dup(ptype_name);
- }
- /*--------------------------------------------------------- */
- const char * clish_param__get_ptype_name(const clish_param_t *this)
- {
- return this->ptype_name;
- }
- /*--------------------------------------------------------- */
- const char *clish_param__get_name(const clish_param_t * this)
- {
- if (!this)
- return NULL;
- return this->name;
- }
- /*--------------------------------------------------------- */
- const char *clish_param__get_text(const clish_param_t * this)
- {
- return this->text;
- }
- /*--------------------------------------------------------- */
- const char *clish_param__get_range(const clish_param_t * this)
- {
- return clish_ptype__get_range(this->ptype);
- }
- /*--------------------------------------------------------- */
- clish_ptype_t *clish_param__get_ptype(const clish_param_t * this)
- {
- return this->ptype;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_ptype(clish_param_t *this, clish_ptype_t *ptype)
- {
- this->ptype = ptype;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_default(clish_param_t * this, const char *defval)
- {
- assert(!this->defval);
- this->defval = lub_string_dup(defval);
- }
- /*--------------------------------------------------------- */
- const char *clish_param__get_default(const clish_param_t * this)
- {
- return this->defval;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_mode(clish_param_t * this, clish_param_mode_e mode)
- {
- assert(this);
- this->mode = mode;
- }
- /*--------------------------------------------------------- */
- clish_param_mode_e clish_param__get_mode(const clish_param_t * this)
- {
- return this->mode;
- }
- /*--------------------------------------------------------- */
- char *clish_param_validate(const clish_param_t * this, const char *text)
- {
- if (CLISH_PARAM_SUBCOMMAND == clish_param__get_mode(this)) {
- if (lub_string_nocasecmp(clish_param__get_value(this), text))
- return NULL;
- }
- return clish_ptype_translate(this->ptype, text);
- }
- /*--------------------------------------------------------- */
- void clish_param_help(const clish_param_t * this, clish_help_t *help)
- {
- const char *range = clish_ptype__get_range(this->ptype);
- const char *name;
- char *str = NULL;
- if (CLISH_PARAM_SWITCH == clish_param__get_mode(this)) {
- unsigned rec_paramc = clish_param__get_param_count(this);
- clish_param_t *cparam;
- unsigned i;
- for (i = 0; i < rec_paramc; i++) {
- cparam = clish_param__get_param(this, i);
- if (!cparam)
- break;
- clish_param_help(cparam, help);
- }
- return;
- }
- if (CLISH_PARAM_SUBCOMMAND == clish_param__get_mode(this))
- name = clish_param__get_value(this);
- else
- if (!(name = clish_ptype__get_text(this->ptype)))
- name = clish_ptype__get_name(this->ptype);
- lub_string_cat(&str, this->text);
- if (range) {
- lub_string_cat(&str, " (");
- lub_string_cat(&str, range);
- lub_string_cat(&str, ")");
- }
- lub_argv_add(help->name, name);
- lub_argv_add(help->help, str);
- lub_string_free(str);
- lub_argv_add(help->detail, NULL);
- }
- /*--------------------------------------------------------- */
- void clish_param_help_arrow(const clish_param_t * this, size_t offset)
- {
- fprintf(stderr, "%*c\n", (int)offset, '^');
- this = this; /* Happy compiler */
- }
- /*--------------------------------------------------------- */
- clish_param_t *clish_param__get_param(const clish_param_t * this,
- unsigned index)
- {
- return clish_paramv__get_param(this->paramv, index);
- }
- /*--------------------------------------------------------- */
- clish_paramv_t *clish_param__get_paramv(clish_param_t * this)
- {
- return this->paramv;
- }
- /*--------------------------------------------------------- */
- unsigned int clish_param__get_param_count(const clish_param_t * this)
- {
- return clish_paramv__get_count(this->paramv);
- }
- /*--------------------------------------------------------- */
- void clish_param__set_optional(clish_param_t * this, bool_t optional)
- {
- this->optional = optional;
- }
- /*--------------------------------------------------------- */
- bool_t clish_param__get_optional(const clish_param_t * this)
- {
- return this->optional;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_order(clish_param_t * this, bool_t order)
- {
- this->order = order;
- }
- /*--------------------------------------------------------- */
- bool_t clish_param__get_order(const clish_param_t * this)
- {
- return this->order;
- }
- /*--------------------------------------------------------- */
- /* paramv methods */
- /*--------------------------------------------------------- */
- static void clish_paramv_init(clish_paramv_t * this)
- {
- this->paramc = 0;
- this->paramv = NULL;
- }
- /*--------------------------------------------------------- */
- static void clish_paramv_fini(clish_paramv_t * this)
- {
- unsigned i;
- /* finalize each of the parameter instances */
- for (i = 0; i < this->paramc; i++) {
- clish_param_delete(this->paramv[i]);
- }
- /* free the parameter vector */
- free(this->paramv);
- this->paramc = 0;
- }
- /*--------------------------------------------------------- */
- clish_paramv_t *clish_paramv_new(void)
- {
- clish_paramv_t *this = malloc(sizeof(clish_paramv_t));
- if (this)
- clish_paramv_init(this);
- return this;
- }
- /*--------------------------------------------------------- */
- void clish_paramv_delete(clish_paramv_t * this)
- {
- clish_paramv_fini(this);
- free(this);
- }
- /*--------------------------------------------------------- */
- void clish_paramv_insert(clish_paramv_t * this, clish_param_t * param)
- {
- size_t new_size = ((this->paramc + 1) * sizeof(clish_param_t *));
- clish_param_t **tmp;
- /* resize the parameter vector */
- tmp = realloc(this->paramv, new_size);
- if (tmp) {
- this->paramv = tmp;
- /* insert reference to the parameter */
- this->paramv[this->paramc++] = param;
- }
- }
- /*--------------------------------------------------------- */
- int clish_paramv_remove(clish_paramv_t *this, unsigned int index)
- {
- size_t new_size;
- clish_param_t **tmp;
- clish_param_t **dst, **src;
- size_t n;
- if (this->paramc < 1)
- return -1;
- if (index >= this->paramc)
- return -1;
- new_size = ((this->paramc - 1) * sizeof(clish_param_t *));
- dst = this->paramv + index;
- src = dst + 1;
- n = this->paramc - index - 1;
- if (n)
- memmove(dst, src, n * sizeof(clish_param_t *));
- /* Resize the parameter vector */
- if (new_size) {
- tmp = realloc(this->paramv, new_size);
- if (!tmp)
- return -1;
- this->paramv = tmp;
- } else {
- free(this->paramv);
- this->paramv = NULL;
- }
- this->paramc--;
- return 0;
- }
- /*--------------------------------------------------------- */
- clish_param_t *clish_paramv__get_param(const clish_paramv_t * this,
- unsigned int index)
- {
- clish_param_t *result = NULL;
- if (index < this->paramc)
- result = this->paramv[index];
- return result;
- }
- /*--------------------------------------------------------- */
- clish_param_t *clish_paramv_find_param(const clish_paramv_t * this,
- const char *name)
- {
- clish_param_t *res = NULL;
- unsigned int i;
- for (i = 0; i < this->paramc; i++) {
- if (!strcmp(clish_param__get_name(this->paramv[i]), name))
- return this->paramv[i];
- if ((res = clish_paramv_find_param(
- clish_param__get_paramv(this->paramv[i]), name)))
- return res;
- }
- return res;
- }
- /*--------------------------------------------------------- */
- const char *clish_paramv_find_default(const clish_paramv_t * this,
- const char *name)
- {
- clish_param_t *res = clish_paramv_find_param(this, name);
- if (res)
- return clish_param__get_default(res);
- return NULL;
- }
- /*--------------------------------------------------------- */
- unsigned int clish_paramv__get_count(const clish_paramv_t * this)
- {
- return this->paramc;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_value(clish_param_t * this, const char * value)
- {
- assert(!this->value);
- this->value = lub_string_dup(value);
- }
- /*--------------------------------------------------------- */
- char *clish_param__get_value(const clish_param_t * this)
- {
- if (this->value)
- return this->value;
- return this->name;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_hidden(clish_param_t * this, bool_t hidden)
- {
- this->hidden = hidden;
- }
- /*--------------------------------------------------------- */
- bool_t clish_param__get_hidden(const clish_param_t * this)
- {
- return this->hidden;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_test(clish_param_t * this, const char *test)
- {
- assert(!this->test);
- this->test = lub_string_dup(test);
- }
- /*--------------------------------------------------------- */
- char *clish_param__get_test(const clish_param_t *this)
- {
- return this->test;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_completion(clish_param_t *this, const char *completion)
- {
- assert(!this->completion);
- this->completion = lub_string_dup(completion);
- }
- /*--------------------------------------------------------- */
- char *clish_param__get_completion(const clish_param_t *this)
- {
- return this->completion;
- }
- /*--------------------------------------------------------- */
- void clish_param__set_access(clish_param_t *this, const char *access)
- {
- if (this->access)
- lub_string_free(this->access);
- this->access = lub_string_dup(access);
- }
- /*--------------------------------------------------------- */
- char *clish_param__get_access(const clish_param_t *this)
- {
- return this->access;
- }
|