2013-02-12 07:30:37 +00:00
|
|
|
/*
|
|
|
|
Serval command line parsing and processing.
|
|
|
|
Copyright (C) 2012,2013 Serval Project, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2012-09-25 04:01:34 +00:00
|
|
|
#ifndef __SERVALD_CLI_H
|
|
|
|
#define __SERVALD_CLI_H
|
|
|
|
|
2013-03-25 01:35:26 +00:00
|
|
|
#include "xprintf.h"
|
2013-02-12 07:30:37 +00:00
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
#define COMMAND_LINE_MAX_LABELS (32)
|
|
|
|
|
2013-02-13 07:13:24 +00:00
|
|
|
struct cli_parsed;
|
2013-02-12 07:30:37 +00:00
|
|
|
|
2013-02-13 07:13:24 +00:00
|
|
|
struct cli_schema {
|
|
|
|
int (*function)(const struct cli_parsed *parsed, void *context);
|
2013-02-12 07:30:37 +00:00
|
|
|
const char *words[COMMAND_LINE_MAX_LABELS];
|
2012-09-25 04:01:34 +00:00
|
|
|
unsigned long long flags;
|
2013-04-02 07:19:56 +00:00
|
|
|
#define CLIFLAG_PERMISSIVE_CONFIG (1<<0) /* Accept defective configuration file */
|
2012-09-25 04:01:34 +00:00
|
|
|
const char *description; // describe this invocation
|
2013-02-12 07:30:37 +00:00
|
|
|
};
|
2012-09-25 04:01:34 +00:00
|
|
|
|
2013-02-13 07:13:24 +00:00
|
|
|
struct cli_parsed {
|
2013-03-25 01:35:26 +00:00
|
|
|
const struct cli_schema *commands;
|
|
|
|
unsigned int cmdi;
|
2013-02-12 07:30:37 +00:00
|
|
|
struct labelv {
|
|
|
|
const char *label;
|
|
|
|
unsigned int len;
|
2013-02-13 05:25:00 +00:00
|
|
|
const char *text;
|
2013-02-12 07:30:37 +00:00
|
|
|
} labelv[COMMAND_LINE_MAX_LABELS];
|
|
|
|
unsigned labelc;
|
|
|
|
const char *const *args;
|
|
|
|
unsigned argc;
|
2013-04-12 07:46:50 +00:00
|
|
|
int varargi; // -1 means no var args
|
2013-02-12 07:30:37 +00:00
|
|
|
};
|
2012-09-25 04:01:34 +00:00
|
|
|
|
2013-02-13 07:13:24 +00:00
|
|
|
void _debug_cli_parsed(struct __sourceloc __whence, const struct cli_parsed *parsed);
|
2013-02-12 07:30:37 +00:00
|
|
|
|
2013-02-13 07:13:24 +00:00
|
|
|
#define DEBUG_cli_parsed(parsed) _debug_cli_parsed(__WHENCE__, parsed)
|
2013-02-12 07:30:37 +00:00
|
|
|
|
2013-03-25 01:35:26 +00:00
|
|
|
int cli_usage(const struct cli_schema *commands, XPRINTF xpf);
|
|
|
|
int cli_usage_args(const int argc, const char *const *args, const struct cli_schema *commands, XPRINTF xpf);
|
|
|
|
int cli_usage_parsed(const struct cli_parsed *parsed, XPRINTF xpf);
|
2013-02-13 07:13:24 +00:00
|
|
|
int cli_parse(const int argc, const char *const *args, const struct cli_schema *commands, struct cli_parsed *parsed);
|
|
|
|
int cli_invoke(const struct cli_parsed *parsed, void *context);
|
2013-02-14 05:30:47 +00:00
|
|
|
int _cli_arg(struct __sourceloc __whence, const struct cli_parsed *parsed, char *label, const char **dst, int (*validator)(const char *arg), char *defaultvalue);
|
|
|
|
|
|
|
|
#define cli_arg(parsed, label, dst, validator, defaultvalue) _cli_arg(__WHENCE__, parsed, label, dst, validator, defaultvalue)
|
2012-09-25 04:01:34 +00:00
|
|
|
|
|
|
|
int cli_lookup_did(const char *text);
|
2013-04-30 07:59:06 +00:00
|
|
|
int cli_path_regular(const char *arg);
|
2012-09-25 04:01:34 +00:00
|
|
|
int cli_absolute_path(const char *arg);
|
|
|
|
int cli_optional_sid(const char *arg);
|
|
|
|
int cli_optional_bundle_key(const char *arg);
|
|
|
|
int cli_manifestid(const char *arg);
|
|
|
|
int cli_fileid(const char *arg);
|
|
|
|
int cli_optional_bundle_crypt_key(const char *arg);
|
2013-04-22 06:31:38 +00:00
|
|
|
int cli_interval_ms(const char *arg);
|
2012-09-25 04:01:34 +00:00
|
|
|
int cli_uint(const char *arg);
|
|
|
|
int cli_optional_did(const char *text);
|
|
|
|
|
2013-02-12 07:30:37 +00:00
|
|
|
#endif // __SERVALD_CLI_H
|