-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.cpp
49 lines (40 loc) · 1.16 KB
/
cli.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
#include "cli.h"
CLI::CLI(int &argc, char *argv[], QObject *parent) : QObject(parent)
{
// Check argument count
if (argc != 3) {
printHelp();
return;
}
// Check if arguments have "--help" switch
for (int i = 0; i < argc; i++) {
if (!qstrcmp(argv[i], "--help")) {
printHelp();
break;
}
}
// If not, make callsign check
doLookup(QString(argv[2]));
}
void CLI::printHelp() {
QTextStream(stdout) << "ituprefix - tool for checking callsign country\n"
<< "Usage: ituprefix [--no-gui CALLSIGN]\n";
}
void CLI::doLookup(QString callsign) {
// Create object
Lookup lookupObj(this);
// Load file
if (!lookupObj.loadFile()) {
QTextStream(stderr) << "Could not load prefix list file!";
return;
}
// Perform search
TEntriesList sResult = lookupObj.searchByCallsign(callsign);
// Output stream
QTextStream output(stdout);
// Print result
for (auto it = sResult.begin(); it != sResult.end(); it++) {
output << it->first.first + "-" + it->first.second << "\t\t"
<< it->second << "\n";
}
}