Menu

[r192]: / trunk / src / CmdLineParser.cpp  Maximize  Restore  History

Download this file

206 lines (174 with data), 4.8 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// CommitMonitor - simple checker for new commits in svn repositories
// Copyright (C) 2007 - Stefan Kueng
// 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 2
// 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, write to the Free Software Foundation,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
#include "stdafx.h"
#include "CmdLineParser.h"
#include <locale>
#include <algorithm>
const TCHAR CCmdLineParser::m_sDelims[] = _T("-/");
const TCHAR CCmdLineParser::m_sQuotes[] = _T("\"");
const TCHAR CCmdLineParser::m_sValueSep[] = _T(" :"); // don't forget space!!
CCmdLineParser::CCmdLineParser(LPCTSTR sCmdLine)
{
if(sCmdLine)
{
Parse(sCmdLine);
}
}
CCmdLineParser::~CCmdLineParser()
{
m_valueMap.clear();
}
BOOL CCmdLineParser::Parse(LPCTSTR sCmdLine)
{
const stdstring sEmpty = _T(""); //use this as a value if no actual value is given in commandline
int nArgs = 0;
if(!sCmdLine)
return false;
m_valueMap.clear();
m_sCmdLine = sCmdLine;
LPCTSTR sCurrent = sCmdLine;
for(;;)
{
//format is -Key:"arg"
if (_tcslen(sCurrent) == 0)
break; // no more data, leave loop
LPCTSTR sArg = _tcspbrk(sCurrent, m_sDelims);
if(!sArg)
break; // no (more) delimiters found
sArg = _tcsinc(sArg);
if(_tcslen(sArg) == 0)
break; // ends with delim
LPCTSTR sVal = _tcspbrk(sArg, m_sValueSep);
if(sVal == NULL)
{
stdstring Key(sArg);
std::transform(Key.begin(), Key.end(), Key.begin(), ::tolower);
m_valueMap.insert(CValsMap::value_type(Key, sEmpty));
break;
}
else if (sVal[0] == _T(' ') || _tcslen(sVal) == 1 )
{
// cmdline ends with /Key: or a key with no value
stdstring Key(sArg, (int)(sVal - sArg));
if(!Key.empty())
{
std::transform(Key.begin(), Key.end(), Key.begin(), ::tolower);
m_valueMap.insert(CValsMap::value_type(Key, sEmpty));
}
sCurrent = _tcsinc(sVal);
continue;
}
else
{
// key has value
stdstring Key(sArg, (int)(sVal - sArg));
std::transform(Key.begin(), Key.end(), Key.begin(), ::tolower);
sVal = _tcsinc(sVal);
LPCTSTR sQuote = _tcspbrk(sVal, m_sQuotes), sEndQuote(NULL);
if(sQuote == sVal)
{
// string with quotes (defined in m_sQuotes, e.g. '")
sQuote = _tcsinc(sVal);
sEndQuote = _tcspbrk(sQuote, m_sQuotes);
}
else
{
sQuote = sVal;
sEndQuote = _tcschr(sQuote, _T(' '));
}
if(sEndQuote == NULL)
{
// no end quotes or terminating space, take the rest of the string to its end
stdstring csVal(sQuote);
if(!Key.empty())
{
m_valueMap.insert(CValsMap::value_type(Key, csVal));
}
break;
}
else
{
// end quote
if(!Key.empty())
{
stdstring csVal(sQuote, (int)(sEndQuote - sQuote));
m_valueMap.insert(CValsMap::value_type(Key, csVal));
}
sCurrent = _tcsinc(sEndQuote);
continue;
}
}
}
return (nArgs > 0); //TRUE if arguments were found
}
CCmdLineParser::CValsMap::const_iterator CCmdLineParser::findKey(LPCTSTR sKey) const
{
stdstring s(sKey);
std::transform(s.begin(), s.end(), s.begin(), ::tolower);
return m_valueMap.find(s);
}
BOOL CCmdLineParser::HasKey(LPCTSTR sKey) const
{
CValsMap::const_iterator it = findKey(sKey);
if(it == m_valueMap.end())
return false;
return true;
}
BOOL CCmdLineParser::HasVal(LPCTSTR sKey) const
{
CValsMap::const_iterator it = findKey(sKey);
if(it == m_valueMap.end())
return false;
if(it->second.empty())
return false;
return true;
}
LPCTSTR CCmdLineParser::GetVal(LPCTSTR sKey) const
{
CValsMap::const_iterator it = findKey(sKey);
if (it == m_valueMap.end())
return 0;
return it->second.c_str();
}
LONG CCmdLineParser::GetLongVal(LPCTSTR sKey) const
{
CValsMap::const_iterator it = findKey(sKey);
if (it == m_valueMap.end())
return 0;
return _tstol(it->second.c_str());
}
CCmdLineParser::ITERPOS CCmdLineParser::begin() const
{
return m_valueMap.begin();
}
CCmdLineParser::ITERPOS CCmdLineParser::getNext(ITERPOS& pos, stdstring& sKey, stdstring& sValue) const
{
if (m_valueMap.end() == pos)
{
sKey.clear();
return pos;
}
else
{
sKey = pos->first;
sValue = pos->second;
pos ++;
return pos;
}
}
BOOL CCmdLineParser::isLast(const ITERPOS& pos) const
{
return (pos == m_valueMap.end());
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.