123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif /* HAVE_CONFIG_H */
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <errno.h>
- #include <assert.h>
- #if WITH_INTERNAL_GETOPT
- #include "libc/getopt.h"
- #else
- #ifdef HAVE_GETOPT_H
- #include <getopt.h>
- #endif
- #endif
- #include "lub/types.h"
- #include "lub/argv.h"
- #include "lub/string.h"
- #include "private.h"
- /*-------------------------------------------------------- */
- konf_query_t *konf_query_new(void)
- {
- konf_query_t *this;
- if (!(this = malloc(sizeof(*this))))
- return NULL;
- this->op = KONF_QUERY_OP_NONE;
- this->pattern = NULL;
- this->priority = 0;
- this->seq = BOOL_FALSE;
- this->seq_num = 0;
- this->pwdc = 0;
- this->pwd = NULL;
- this->line = NULL;
- this->path = NULL;
- this->splitter = BOOL_TRUE;
- this->unique = BOOL_TRUE;
- this->depth = -1;
- return this;
- }
- /*-------------------------------------------------------- */
- void konf_query_add_pwd(konf_query_t *this, char *str)
- {
- size_t new_size;
- char **tmp;
- if (!this)
- return;
- new_size = ((this->pwdc + 1) * sizeof(char *));
- /* resize the pwd vector */
- tmp = realloc(this->pwd, new_size);
- assert(tmp);
- this->pwd = tmp;
- /* insert reference to the pwd component */
- this->pwd[this->pwdc++] = strdup(str);
- }
- /*-------------------------------------------------------- */
- void konf_query_free(konf_query_t *this)
- {
- unsigned i;
- free(this->pattern);
- free(this->line);
- free(this->path);
- if (this->pwdc > 0) {
- for (i = 0; i < this->pwdc; i++)
- free(this->pwd[i]);
- free(this->pwd);
- }
- free(this);
- }
- /*-------------------------------------------------------- */
- /* Parse query */
- int konf_query_parse(konf_query_t *this, int argc, char **argv)
- {
- int i = 0;
- int pwdc = 0;
- static const char *shortopts = "suoedtp:q:r:l:f:inh:";
- #ifdef HAVE_GETOPT_LONG
- static const struct option longopts[] = {
- {"set", 0, NULL, 's'},
- {"unset", 0, NULL, 'u'},
- {"ok", 0, NULL, 'o'},
- {"error", 0, NULL, 'e'},
- {"dump", 0, NULL, 'd'},
- {"stream", 0, NULL, 't'},
- {"priority", 1, NULL, 'p'},
- {"seq", 1, NULL, 'q'},
- {"pattern", 1, NULL, 'r'},
- {"line", 1, NULL, 'l'},
- {"file", 1, NULL, 'f'},
- {"splitter", 0, NULL, 'i'},
- {"non-unique", 0, NULL, 'n'},
- {"depth", 1, NULL, 'h'},
- {NULL, 0, NULL, 0}
- };
- #endif
- optind = 0; /* It must be 1 for QNX6. This system has no getopt.h */
- while(1) {
- int opt;
- #ifdef HAVE_GETOPT_LONG
- opt = getopt_long(argc, argv, shortopts, longopts, NULL);
- #else
- opt = getopt(argc, argv, shortopts);
- #endif
- if (-1 == opt)
- break;
- switch (opt) {
- case 'o':
- this->op = KONF_QUERY_OP_OK;
- break;
- case 'e':
- this->op = KONF_QUERY_OP_ERROR;
- break;
- case 's':
- this->op = KONF_QUERY_OP_SET;
- break;
- case 'u':
- this->op = KONF_QUERY_OP_UNSET;
- break;
- case 'd':
- this->op = KONF_QUERY_OP_DUMP;
- break;
- case 't':
- this->op = KONF_QUERY_OP_STREAM;
- break;
- case 'p':
- {
- long val = 0;
- char *endptr;
- val = strtol(optarg, &endptr, 0);
- if (endptr == optarg)
- break;
- if ((val > 0xffff) || (val < 0))
- break;
- this->priority = (unsigned short)val;
- break;
- }
- case 'q':
- {
- long val = 0;
- char *endptr;
- this->seq = BOOL_TRUE;
- val = strtol(optarg, &endptr, 0);
- if (endptr == optarg)
- break;
- if ((val > 0xffff) || (val < 0))
- break;
- this->seq_num = (unsigned short)val;
- break;
- }
- case 'r':
- this->pattern = strdup(optarg);
- break;
- case 'l':
- this->line = strdup(optarg);
- break;
- case 'f':
- this->path = strdup(optarg);
- break;
- case 'i':
- this->splitter = BOOL_FALSE;
- break;
- case 'n':
- this->unique = BOOL_FALSE;
- break;
- case 'h':
- {
- long val = 0;
- char *endptr;
- val = strtol(optarg, &endptr, 0);
- if (endptr == optarg)
- break;
- if ((val > 0xffff) || (val < 0))
- break;
- this->depth = (unsigned short)val;
- break;
- }
- default:
- break;
- }
- }
- /* Check options */
- if (KONF_QUERY_OP_NONE == this->op)
- return -1;
- if (KONF_QUERY_OP_SET == this->op) {
- if (!this->pattern)
- return -1;
- if (!this->line)
- return -1;
- }
- if ((pwdc = argc - optind) < 0)
- return -1;
- for (i = 0; i < pwdc; i++)
- konf_query_add_pwd(this, argv[optind + i]);
- return 0;
- }
- /*-------------------------------------------------------- */
- /* Parse query string */
- int konf_query_parse_str(konf_query_t *this, char *str)
- {
- int res;
- lub_argv_t *lub_argv;
- char **str_argv;
- int str_argc;
- /* Make args from string */
- lub_argv = lub_argv_new(str, 0);
- str_argv = lub_argv__get_argv(lub_argv, "");
- str_argc = lub_argv__get_count(lub_argv) + 1;
- /* Parse query */
- res = konf_query_parse(this, str_argc, str_argv);
- lub_argv__free_argv(str_argv);
- lub_argv_delete(lub_argv);
- return res;
- }
- /*-------------------------------------------------------- */
- char * konf_query__get_pwd(konf_query_t *this, unsigned index)
- {
- if (!this)
- return NULL;
- if (index >= this->pwdc)
- return NULL;
- return this->pwd[index];
- }
- /*-------------------------------------------------------- */
- int konf_query__get_pwdc(konf_query_t *this)
- {
- return this->pwdc;
- }
- /*-------------------------------------------------------- */
- konf_query_op_t konf_query__get_op(konf_query_t *this)
- {
- return this->op;
- }
- /*-------------------------------------------------------- */
- char * konf_query__get_path(konf_query_t *this)
- {
- return this->path;
- }
- /*-------------------------------------------------------- */
- const char * konf_query__get_pattern(konf_query_t *this)
- {
- return this->pattern;
- }
- /*-------------------------------------------------------- */
- const char * konf_query__get_line(konf_query_t *this)
- {
- return this->line;
- }
- /*-------------------------------------------------------- */
- unsigned short konf_query__get_priority(konf_query_t *this)
- {
- return this->priority;
- }
- /*-------------------------------------------------------- */
- bool_t konf_query__get_splitter(konf_query_t *this)
- {
- return this->splitter;
- }
- /*-------------------------------------------------------- */
- bool_t konf_query__get_seq(konf_query_t *this)
- {
- return this->seq;
- }
- /*-------------------------------------------------------- */
- unsigned short konf_query__get_seq_num(konf_query_t *this)
- {
- return this->seq_num;
- }
- /*-------------------------------------------------------- */
- bool_t konf_query__get_unique(konf_query_t *this)
- {
- return this->unique;
- }
- /*-------------------------------------------------------- */
- int konf_query__get_depth(konf_query_t *this)
- {
- return this->depth;
- }
|