-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.cpp
139 lines (124 loc) · 3.83 KB
/
app.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
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
#include <getopt.h>
#include <dbs.hpp>
#include <default_params.hpp>
#include <fstream>
#include <iostream>
#include <pp.hpp>
#include <problem.hpp>
#include <random>
#include <regex>
#include <vector>
void printHelp();
std::unique_ptr<Solver> getSolver(const std::string solver_name, Problem* P,
bool verbose, int argc, char* argv[]);
int main(int argc, char* argv[])
{
std::string instance_file = "";
std::string output_file = DEFAULT_PLAN_OUTPUT_FILE;
std::string solver_name;
bool verbose = false;
char* argv_copy[argc + 1];
for (int i = 0; i < argc; ++i) argv_copy[i] = argv[i];
struct option longopts[] = {
{"instance", required_argument, 0, 'i'},
{"output", required_argument, 0, 'o'},
{"solver", required_argument, 0, 's'},
{"verbose", no_argument, 0, 'v'},
{"help", no_argument, 0, 'h'},
{"time-limit", required_argument, 0, 'T'},
{"make-scen", no_argument, 0, 'P'},
{0, 0, 0, 0},
};
bool make_scen = false;
int max_comp_time = -1;
// command line args
int opt, longindex;
opterr = 0; // ignore getopt error
while ((opt = getopt_long(argc, argv, "i:o:s:vhPT:", longopts, &longindex)) !=
-1) {
switch (opt) {
case 'i':
instance_file = std::string(optarg);
break;
case 'o':
output_file = std::string(optarg);
break;
case 's':
solver_name = std::string(optarg);
break;
case 'v':
verbose = true;
break;
case 'h':
printHelp();
return 0;
case 'P':
make_scen = true;
break;
case 'T':
max_comp_time = std::atoi(optarg);
break;
default:
break;
}
}
if (instance_file.length() == 0) {
std::cout << "specify instance file using -i [INSTANCE-FILE], e.g.,"
<< std::endl;
std::cout << "> ./app -i ../sample-instance.txt" << std::endl;
return 0;
}
// set problem
Problem P = Problem(instance_file);
// set max computation time (otherwise, use param in instance_file)
if (max_comp_time != -1) P.setMaxCompTime(max_comp_time);
// create scenario
if (make_scen) {
P.makeScenFile(output_file);
return 0;
}
// solve
auto solver = getSolver(solver_name, &P, verbose, argc, argv_copy);
solver->solve();
solver->printResult();
solver->makeLog(output_file);
if (verbose) {
std::cout << "save planning result as " << output_file << std::endl;
}
return 0;
}
std::unique_ptr<Solver> getSolver(const std::string solver_name, Problem* P,
bool verbose, int argc, char* argv[])
{
std::unique_ptr<Solver> solver;
if (solver_name == "PP") {
solver = std::make_unique<PP>(P);
} else if (solver_name == "DBS") {
solver = std::make_unique<DBS>(P);
} else {
std::cout << "warn@app: "
<< "unknown solver name, " + solver_name + ", continue by PP"
<< std::endl;
solver = std::make_unique<PP>(P);
}
solver->setParams(argc, argv);
solver->setVerbose(verbose);
return solver;
}
void printHelp()
{
std::cout << "\nUsage: ./app [OPTIONS] [SOLVER-OPTIONS]\n"
<< "\n**instance file is necessary to run MAPF simulator**\n\n"
<< " -i --instance [FILE_PATH] instance file path\n"
<< " -o --output [FILE_PATH] ouptut file path\n"
<< " -v --verbose print additional info\n"
<< " -h --help help\n"
<< " -s --solver [SOLVER_NAME] solver, choose from the below\n"
<< " -T --time-limit [INT] max computation time (ms)\n"
<< " -P --make-scen make scenario file using "
"random starts/goals"
<< "\n\nSolver Options:" << std::endl;
// each solver
PP::printHelp();
DBS::printHelp();
}