-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandLine.C
More file actions
76 lines (54 loc) · 1.5 KB
/
CommandLine.C
File metadata and controls
76 lines (54 loc) · 1.5 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
/***********************************************************************
CommandLine.C
BOOM : Bioinformatics Object Oriented Modules
Copyright (C)2012 William H. Majoros (martiandna@gmail.com).
This is OPEN SOURCE SOFTWARE governed by the Gnu General Public
License (GPL) version 3, as described at www.opensource.org.
***********************************************************************/
#include <unistd.h>
#include <stdio.h>
#include "CommandLine.H"
using namespace std;
BOOM::CommandLine::CommandLine(int argc,char *argv[],const char *options)
: argc(argc), argv(&argv[0])
{
loopThroughOptions(options);
}
BOOM::String BOOM::CommandLine::arg(int i)
{
return args[i];
}
BOOM::String BOOM::CommandLine::optParm(char c)
{
//if(optionParm.find(c)==optionParm.end())
if(!optionParm.isDefined(c))
return BOOM::String("");
return optionParm[c];
}
bool BOOM::CommandLine::option(char c)
{
return usedOption.find(c)==usedOption.end() ? false : usedOption[c];
}
bool BOOM::CommandLine::takesParameter(char c,const char *options)
{
for(int i=0 ; options[i] ; ++i)
if(options[i]==c)
return options[i+1]==':';
return false;
}
int BOOM::CommandLine::numArgs()
{
return args.size();
}
void BOOM::CommandLine::loopThroughOptions(const char *options)
{
int c;
while((c=getopt(argc,argv,options))!=EOF)
{
usedOption[c]=true;
if(takesParameter(c,options))
optionParm[c]=BOOM::String(optarg);
}
for(int i=optind ; i<argc ; ++i)
args.push_back(argv[i]);
}