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
|
#include "cli.h"
#include "definitions.h"
#include "logger.h"
#include <getopt.h>
#include <iostream>
static Logger *global_log = Logger::getInstance();
static std::string version_number = "v0.1";
static std::string banner =
" _/_/_/ _/_/_/ _/_/_/ _/_/_/ \n"
" _/ _/ _/ _/ _/ \n"
" _/_/_/ _/ _/_/ _/ \n"
" _/ _/ _/ _/ _/ \n"
"_/ _/ _/_/_/ _/_/_/ _/_/_/ \n"
" \n"
" \n"
" _/_/ _/_/ \n"
" _/ _/ _/ _/_/_/_/ _/_/_/ _/_/_/_/_/ _/_/ _/_/_/ _/ \n"
" _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ \n"
"_/ _/ _/ _/_/_/ _/ _/ _/ _/ _/_/_/ _/ \n"
" _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ \n"
" _/ _/ _/_/_/_/ _/_/_/ _/ _/_/ _/ _/ _/ \n"
" _/_/ _/_/ ";
static void print_version_number()
{
std::cout << banner << version_number << '\n';
}
static void err()
{
std::cerr << "Usage:\n\trisc_vector [OPTIONS]\nOptions:\n\t--debug,\t-d: "
"turn on verbose output\n\t--memory-only,\t-m: run the memory "
"simulator only, without a GUI.\n\t--version,\t-v: print the "
"version information and exit\n"
<< std::endl;
}
static void
parseArguments(int argc, char **argv, bool &memory_only)
{
struct option long_options[] = {
{"debug", no_argument, 0, 'd'},
{"memory-only", no_argument, 0, 'm'},
{0, 0, 0, 0}};
int opt;
while ((opt = getopt_long(argc, argv, "d:m", long_options, NULL)) != -1) {
switch (opt) {
case 'd':
global_log->setLevel(DEBUG);
global_log->log(DEBUG, "DEBUG output enabled.");
break;
case 'm':
global_log->log(INFO, "Starting the storage CLI interface...");
memory_only = true;
break;
default:
err();
exit(EXIT_FAILURE);
}
}
}
int main(int argc, char **argv)
{
print_version_number();
global_log->log(INFO, "Initializing...");
bool memory_only = false;
parseArguments(argc, argv, memory_only);
if (memory_only) {
Cli cli;
cli.run();
}
// fork off python here
global_log->log(INFO, "Python started.");
global_log->log(INFO, "Cleaning up...");
global_log->log(INFO, "Goodbye!");
return EXIT_SUCCESS;
}
|