-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCommandline.cpp
More file actions
136 lines (121 loc) · 3.54 KB
/
Commandline.cpp
File metadata and controls
136 lines (121 loc) · 3.54 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
/*
Copyright 2010, 2011, 2012 Erich A. Peterson
This file is part of PFCIM.
PFCIM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PFCIM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PFCIM. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Commandline.h"
// Set static variables
double Commandline::tau = -1;
unsigned int Commandline::eta = -1;
string Commandline::output;
string Commandline::input;
string Commandline::exec;
unsigned int Commandline::print = 0;
//----------------------------------------------------------------------
// Method
// Commandline::commandline()
//
// Used to print out legal command line arguments to screen.
//----------------------------------------------------------------------
void
Commandline::commandLine() {
cerr << "Command Line Options:\n";
cerr << " -eta Eta min support: [1-Size of DB] (Required)\n";
cerr << " -tau Tau frequent probability threshold: (0-1] (Required)\n";
cerr << " -input Input file name (Required)\n";
cerr << " -output Output file name default: none\n";
cerr << " -exec Execution stats file name default: none\n";
cerr << " -print Print found clusters: {0 | 1} (0 = false, 1 = true) default 0\n";
}
//----------------------------------------------------------------------
// Method:
// Commandline::getArgs(int argc, char ** const argv)
//
// Parses through the provided arguments and validates the values
//
// Arguments:
// "argc" is the number of arguments passed at the command line.
// "argv" is the char array of strings containing the actual command
// line argument.
//
// Return value:
// 0 - Success
// -1 - Failure
//----------------------------------------------------------------------
int
Commandline::getArgs(int argc, char ** const argv) {
int argPos = 1;
while (argPos < argc) {
if (strcmp(argv[argPos], "-tau") == 0) {
tau = atof(argv[++argPos]);
argPos++;
if (tau < 0.0 || tau > 1.0) {
Util::errorMsg("tau must be >= 0 and <= 1\n");
return -1;
}
continue;
}
else if (strcmp(argv[argPos], "-eta") == 0) {
eta = (unsigned int)atoi(argv[++argPos]);
argPos++;
if (eta <= 0) {
Util::errorMsg("eta must be > 0\n");
return -1;
}
continue;
}
else if (strcmp(argv[argPos], "-input") == 0) {
input = argv[++argPos];
argPos++;
continue;
}
else if (strcmp(argv[argPos], "-output") == 0) {
output = argv[++argPos];
argPos++;
continue;
}
else if (strcmp(argv[argPos], "-exec") == 0) {
exec = argv[++argPos];
argPos++;
continue;
}
else if (strcmp(argv[argPos], "-print") == 0) {
print = atoi(argv[++argPos]);
argPos++;
continue;
}
else if (strcmp(argv[argPos], "-calc") == 0) {
calc = argv[++argPos];
argPos++;
continue;
}
else {
commandLine();
return -1;
}
} // end while
if (input == "") {
Util::errorMsg("-input is required\n");
return -1;
}
if (eta == -1) {
Util::errorMsg("-eta must be >= 1\n");
commandLine();
return -1;
}
if (tau == -1) {
Util::errorMsg("-tau must be between 0 and 1\n");
commandLine();
return -1;
}
return 0;
}