2018-10-11 16:48:46 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2017 Merlok
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Command line parser core commands
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2019-04-11 07:16:25 +08:00
|
|
|
#ifndef __CLIPARSER_H
|
|
|
|
#define __CLIPARSER_H
|
2018-10-11 16:48:46 +08:00
|
|
|
#include "argtable3.h"
|
2020-06-02 19:35:16 +08:00
|
|
|
#include <stdlib.h>
|
2018-10-11 16:48:46 +08:00
|
|
|
#include "util.h"
|
|
|
|
|
2020-09-30 05:55:51 +08:00
|
|
|
#define arg_param_begin arg_lit0("h", "help", "This help")
|
2018-10-11 16:48:46 +08:00
|
|
|
#define arg_param_end arg_end(20)
|
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
#define arg_getsize(a) (sizeof(a) / sizeof(a[0]))
|
|
|
|
#define arg_get_lit(ctx, n) (((struct arg_lit*)((ctx)->argtable)[(n)])->count)
|
2020-10-04 16:57:21 +08:00
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
#define arg_get_int_count(ctx, n) (((struct arg_int*)((ctx)->argtable)[(n)])->count)
|
|
|
|
#define arg_get_int(ctx, n) (((struct arg_int*)((ctx)->argtable)[(n)])->ival[0])
|
|
|
|
#define arg_get_int_def(ctx, n, def)(arg_get_int_count((ctx), (n)) ? (arg_get_int((ctx), (n))) : (def))
|
2020-10-04 16:57:21 +08:00
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
#define arg_get_dbl_count(ctx, n) (((struct arg_dbl*)((ctx)->argtable)[(n)])->count)
|
|
|
|
#define arg_get_dbl(ctx, n) (((struct arg_dbl*)((ctx)->argtable)[(n)])->dval[0])
|
|
|
|
#define arg_get_dbl_def(ctx, n, def)(arg_get_dbl_count((ctx), (n)) ? (arg_get_dbl((ctx), (n))) : (def))
|
2020-10-04 16:57:21 +08:00
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
#define arg_get_u32(ctx, n) (uint32_t)(((struct arg_u64*)((ctx)->argtable)[(n)])->uval[0])
|
|
|
|
#define arg_get_u32_def(ctx, n, def) (arg_get_u64_count((ctx), (n)) ? (arg_get_u32((ctx), (n))) : (uint32_t)(def))
|
2020-10-04 22:13:17 +08:00
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
#define arg_get_u64_count(ctx, n) (((struct arg_u64*)((ctx)->argtable)[(n)])->count)
|
|
|
|
#define arg_get_u64(ctx, n) (((struct arg_u64*)((ctx)->argtable)[(n)])->uval[0])
|
|
|
|
#define arg_get_u64_def(ctx, n, def) (arg_get_u64_count((ctx), (n)) ? (arg_get_u64((ctx), (n))) : (uint64_t)(def))
|
|
|
|
|
|
|
|
#define arg_get_str(ctx, n) ((struct arg_str*)((ctx)->argtable)[(n)])
|
|
|
|
#define arg_get_str_len(ctx, n) (strlen(((struct arg_str*)((ctx)->argtable)[(n)])->sval[0]))
|
2018-10-11 16:48:46 +08:00
|
|
|
|
|
|
|
#define arg_strx1(shortopts, longopts, datatype, glossary) (arg_strn((shortopts), (longopts), (datatype), 1, 250, (glossary)))
|
|
|
|
#define arg_strx0(shortopts, longopts, datatype, glossary) (arg_strn((shortopts), (longopts), (datatype), 0, 250, (glossary)))
|
|
|
|
|
2020-10-04 23:41:04 +08:00
|
|
|
#define CLIParserFree(ctx) if ((ctx)) {arg_freetable((ctx)->argtable, (ctx)->argtableLen); free((ctx)); (ctx)=NULL;}
|
|
|
|
|
|
|
|
#define CLIExecWithReturn(ctx, cmd, atbl, ifempty) if (CLIParserParseString((ctx), (cmd), (atbl), arg_getsize((atbl)), (ifempty))) {CLIParserFree((ctx)); return PM3_ESOFT;}
|
|
|
|
|
|
|
|
#define CLIGetHexBLessWithReturn(ctx, paramnum, data, datalen, delta) if (CLIParamHexToBuf(arg_get_str((ctx), (paramnum)), (data), sizeof((data)) - (delta), (datalen))) {CLIParserFree((ctx)); return PM3_ESOFT;}
|
|
|
|
|
|
|
|
#define CLIGetHexWithReturn(ctx, paramnum, data, datalen) if (CLIParamHexToBuf(arg_get_str((ctx), (paramnum)), (data), sizeof((data)), (datalen))) {CLIParserFree((ctx)); return PM3_ESOFT;}
|
2020-10-04 22:13:17 +08:00
|
|
|
|
2020-10-17 06:20:33 +08:00
|
|
|
#define CLIGetStrWithReturn(ctx, paramnum, data, datalen) if (CLIParamStrToBuf(arg_get_str((ctx), (paramnum)), (data), (*datalen), (datalen))) {CLIParserFree((ctx)); return PM3_ESOFT;}
|
2018-10-11 16:48:46 +08:00
|
|
|
|
2020-06-01 23:30:33 +08:00
|
|
|
typedef struct {
|
|
|
|
void **argtable;
|
|
|
|
size_t argtableLen;
|
|
|
|
const char *programName;
|
|
|
|
const char *programHint;
|
|
|
|
const char *programHelp;
|
2020-06-10 19:31:57 +08:00
|
|
|
char buf[1024 + 60];
|
2020-06-01 23:30:33 +08:00
|
|
|
} CLIParserContext;
|
2020-06-02 15:24:23 +08:00
|
|
|
int CLIParserInit(CLIParserContext **ctx, const char *vprogramName, const char *vprogramHint, const char *vprogramHelp);
|
|
|
|
int CLIParserParseString(CLIParserContext *ctx, const char *str, void *vargtable[], size_t vargtableLen, bool allowEmptyExec);
|
|
|
|
int CLIParserParseStringEx(CLIParserContext *ctx, const char *str, void *vargtable[], size_t vargtableLen, bool allowEmptyExec, bool clueData);
|
|
|
|
int CLIParserParseArg(CLIParserContext *ctx, int argc, char **argv, void *vargtable[], size_t vargtableLen, bool allowEmptyExec);
|
2018-10-11 16:48:46 +08:00
|
|
|
|
2019-04-06 06:52:55 +08:00
|
|
|
int CLIParamHexToBuf(struct arg_str *argstr, uint8_t *data, int maxdatalen, int *datalen);
|
|
|
|
int CLIParamStrToBuf(struct arg_str *argstr, uint8_t *data, int maxdatalen, int *datalen);
|
2020-10-21 14:42:33 +08:00
|
|
|
|
|
|
|
uint64_t arg_get_u64_hexstr_def(CLIParserContext *ctx, uint8_t paramnum, uint64_t def);
|
2019-04-11 07:16:25 +08:00
|
|
|
#endif
|