- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.cpp
More file actions
Latest commit
143 lines (130 loc) · 5.9 KB
/
Copy pathcli.cpp
File metadata and controls
143 lines (130 loc) · 5.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#include<assert.h>
#include<limits.h>
#include<stdio.h>
#include"cli.h"
#defineis_alpha(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
#defineis_identchr(c) (is_alpha(c) || (c >= '0' && c <= '9') || c == '-' || c == '_')
#defineMAX_POS_ARGS10
staticbool
is_identifier(constchar* val)
{
u32 i = cstrlen(val);
while (i--) {
if ((i == 0 && !is_alpha(val[i])) || (i > 0 && !is_identchr(val[i]))) {
returnfalse;
}
}
returntrue;
}
ParseResult
parse_cli_args(CommandLineOptions* options, int num_args, char** args)
{
if (num_args < 1) {
return ParseResult_Invalid;
} elseif (num_args < 2) {
// Need at least one argument
options->no_arguments_given = true;
return ParseResult_Ok;
}
u8 num_pos_args = 0;
int arg_index = 1; // Skip binary name
char* current_arg = args[arg_index];
while (arg_index < num_args) {
// Parse --arguments
if (string_starts_with(current_arg, "--")) {
/*** Parse option flags for qs itself ***/
if (string_eq(current_arg, "--dry-run")) {
options->dry_run = true;
} elseif (string_eq(current_arg, "--verbose")) {
options->verbose = true;
} elseif (string_eq(current_arg, "--config")) {
// Make sure we have a path value
if (++arg_index < num_args) {
current_arg = args[arg_index];
} else {
fprintf(stdout, "Argument --config should be followed by a file path.\n");
return ParseResult_Invalid;
}
if (char* resolved_path = realpath(current_arg, 0)) {
options->config_files = string_list_add_front_dup(options->config_files, resolved_path);
free(resolved_path);
} else {
fprintf(stdout, "Warning: could not read the config file '%s'. Ignoring.\n", current_arg);
}
} elseif (string_eq(current_arg, "--help")) {
if (options->action_name) {
// --help came after the action name. Set the flag for displaying the auto-generated
// help string for the command (done when parsing the template).
options->print_action_help = true;
// Don't stop here, because we need to collect any additional --config files.
} else {
options->print_help = true;
// Exit since printing the help is exclusive
return ParseResult_Ok;
}
} elseif (string_eq(current_arg, "--version")) {
options->print_version = true;
// Exit since printing the version is exclusive
return ParseResult_Ok;
} elseif (string_eq(current_arg, "--template")) {
// Make sure we have a template value
if (++arg_index < num_args) {
current_arg = args[arg_index];
} else {
fprintf(stdout, "--template should be followed by a template string.\n");
return ParseResult_Invalid;
}
// Set or overwrite the template string
if (options->action_template) {
options->action_template = string_copy(options->action_template, current_arg);
} else {
options->action_template = string_new(current_arg);
}
} elseif (string_eq(current_arg, "--actions")) {
options->print_available_actions = true;
} else {
/*** Parse as named varible ***/
char* varname = (current_arg + 2); // skip '--'
if (!is_identifier(varname)) {
fprintf(stdout, "Variable name '%s' is not a valid name. Variables must start with a letter, and consist only of letters, numbers and '-' and '_' (e.g. --some-variable_1, --NAME1).\n", varname);
return ParseResult_Invalid;
}
// Advance one argument to get the value
if (++arg_index < num_args) {
options->variables = template_set(options->variables, varname, args[arg_index]);
} else {
fprintf(stdout, "Missing value for variable '%s'\n", varname);
return ParseResult_Invalid;
}
}
} elseif (options->action_name) {
// We've got an action name, and have already checked for any other known argument.
// Treat this as a positional argument.
if (num_pos_args >= MAX_POS_ARGS) {
fprintf(stdout, "At most %d positional arguments can be given. Wrap arguments containing spaces in double quotes (\").\n", MAX_POS_ARGS);
return ParseResult_Invalid;
}
char varname[2] = { (char)('0' + num_pos_args++), 0 };
options->variables = template_set(options->variables, varname, args[arg_index]);
} else {
//
// If it's not a valid identifier, treat it as an error.
if (!is_identifier(current_arg)) {
fprintf(stdout, "'%s' is not a valid action name. Action names must start with a letter, followed by letters, numbers, a a dash (-) or an underscore (_)\n", current_arg);
return ParseResult_Invalid;
}
options->action_name = string_new(current_arg);
}
current_arg = args[++arg_index];
}
return ParseResult_Ok;
}
voidfree_cli_options_resources(CommandLineOptions options)
{
if (options.action_name)
string_free(options.action_name);
if (options.action_template)
string_free(options.action_template);
string_list_free(options.config_files);
template_free(options.variables);
}