-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.cpp
97 lines (91 loc) · 2.35 KB
/
options.cpp
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
#include "options.hpp"
#include <iostream>
#include <fstream>
#include <cstring>
void
Options::display_help()
{
std::cout <<
"Usage: parser [options] [file]\n"
" -o specify output filename\n"
"\n"
" -l display only the lexer states\n"
" -p display only the parser table\n"
" -s display only the parser states\n"
"\n"
" -v display version and license\n"
"\n"
"DESCRIPTION\n"
" This program generates parse tables for languages that are defined by a\n"
" context free grammar."
"\n";
}
void
Options::display_license()
{
std::cout <<
"\n"
"IslandParser version 0.9.0\n"
"\n"
"The software is provided \"as is\", without warranty of any kind, express or\n"
"implied, including but not limited to the warranties of merchantability, \n"
"fitness for a particular purpose and noninfringement. In no event shall the\n"
"authors or copyright holders be liable for any claim, damages or other\n"
"liability, whether in an action of contract, tort or otherwise, arising from, \n"
"out of or in connection with the software or the use or other dealings in the\n"
"software.\n"
"\n"
"Copyright(c) 2023 Island Numerics\n\n";
}
bool
Options::parse(int argc, char *argv[])
{
int idx = 1;
while (idx < argc) {
if (strlen(argv[idx]) == 2 && argv[idx][0] == '-') {
char c = argv[idx++][1];
parse_option(c, argc, argv, &idx);
}
else if ((idx + 1) == argc) {
inpath = argv[idx++];
}
else {
return false;
}
}
return true;
}
bool
Options::parse_option(char c, int argc, char *argv[], int* idx)
{
switch (c) {
case 'o': {
if (*idx < argc) {
outpath = argv[(*idx)++];
return true;
}
break;
}
case 'h': {
show_help = true;
return true;
}
case 'v': {
show_version = true;
return true;
}
case 'l': {
show_lexer = true;
return true;
}
case 'p': {
show_parser = true;
return true;
}
case 's': {
show_states = true;
return true;
}
}
return false;
}