forked from Ritu-Kundu/Superbubbles
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhelper.cpp
101 lines (88 loc) · 2.67 KB
/
helper.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
/**
Superbubbles
Copyright (C) 2016 Ritu Kundu, Fatima Vayani, Manal Mohamed, Solon P. Pissis
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
**/
/** Defines some helper functions */
#include "helperDefs.hpp"
namespace supbub{
static struct option long_options[] =
{
{ "input-file", required_argument, NULL, 'i' },
{ "output-file", required_argument, NULL, 'o' },
{ "help", no_argument, NULL, 'h' },
{ NULL, 0, NULL, 0 }
};
/** Decode the input flags
*/
int
decodeFlags(int argc, char* argv [], struct InputFlags* flags){
int oi;
int opt;
int val;
char* ep;
int args;
/* initialisation */
flags -> input_filename = NULL;
flags -> output_filename = NULL;
while ((opt = getopt_long(argc, argv, "i:o:h", long_options, &oi)) != - 1) {
switch (opt) {
case 'i':
{
std::string inFile(optarg);
flags->input_filename = new char[inFile.size() + 1];
inFile.copy(flags->input_filename, inFile.size());
args ++;
break;
}
case 'o':
{
std::string outFile(optarg);
flags->output_filename = new char[outFile.size() + 1];
outFile.copy(flags->output_filename, outFile.size());
args ++;
break;
}
case 'h':
return (0);
}
}
if ( args < 2 ){
return (0);
}
else{
return (optind);
}
}
/*
* Usage of the tool
*/
void
usage(void){
fprintf ( stdout, " Usage: supbub <options>\n" );
fprintf ( stdout, " Standard (Mandatory):\n" );
fprintf ( stdout, " -i, --input-file <str> Input file name.\n" );
fprintf ( stdout, " -o, --output-file <str> Output filename.\n" );
}
double
gettime(void){
struct timeval ttime;
gettimeofday( &ttime , 0 );
return ttime.tv_sec + ttime.tv_usec * 0.000001;
}
void log(std::string s, int64_t x){
std::cerr << s << x << std::endl;
}
void log(std::string s, int64_t x, int64_t y){
std::cerr << s << x << " " << y << std::endl;
}
} // end namespace