mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-08-04 18:27:19 -04:00

The various getValue functions should not modify the underlying class, so they have been turned into const. The only exception is ValueArg where a non-const version is kept for backward compatibility (it should be removed if we allow an API break). The other instances are safe since the return value is not changed and the new function signature is less restrictive.
215 lines
5.5 KiB
C++
215 lines
5.5 KiB
C++
|
|
/******************************************************************************
|
|
*
|
|
* file: MultiSwitchArg.h
|
|
*
|
|
* Copyright (c) 2003, Michael E. Smoot .
|
|
* Copyright (c) 2004, Michael E. Smoot, Daniel Aarno.
|
|
* Copyright (c) 2005, Michael E. Smoot, Daniel Aarno, Erik Zeek.
|
|
* All rights reverved.
|
|
*
|
|
* See the file COPYING in the top directory of this distribution for
|
|
* more information.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
|
|
#ifndef TCLAP_MULTI_SWITCH_ARG_H
|
|
#define TCLAP_MULTI_SWITCH_ARG_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <tclap/SwitchArg.h>
|
|
|
|
namespace TCLAP {
|
|
|
|
/**
|
|
* A multiple switch argument. If the switch is set on the command line, then
|
|
* the getValue method will return the number of times the switch appears.
|
|
*/
|
|
class MultiSwitchArg : public SwitchArg
|
|
{
|
|
protected:
|
|
|
|
/**
|
|
* The value of the switch.
|
|
*/
|
|
int _value;
|
|
|
|
/**
|
|
* Used to support the reset() method so that ValueArg can be
|
|
* reset to their constructed value.
|
|
*/
|
|
int _default;
|
|
|
|
public:
|
|
|
|
/**
|
|
* MultiSwitchArg constructor.
|
|
* \param flag - The one character flag that identifies this
|
|
* argument on the command line.
|
|
* \param name - A one word name for the argument. Can be
|
|
* used as a long flag on the command line.
|
|
* \param desc - A description of what the argument is for or
|
|
* does.
|
|
* \param init - Optional. The initial/default value of this Arg.
|
|
* Defaults to 0.
|
|
* \param v - An optional visitor. You probably should not
|
|
* use this unless you have a very good reason.
|
|
*/
|
|
MultiSwitchArg(const std::string& flag,
|
|
const std::string& name,
|
|
const std::string& desc,
|
|
int init = 0,
|
|
Visitor* v = NULL);
|
|
|
|
|
|
/**
|
|
* MultiSwitchArg constructor.
|
|
* \param flag - The one character flag that identifies this
|
|
* argument on the command line.
|
|
* \param name - A one word name for the argument. Can be
|
|
* used as a long flag on the command line.
|
|
* \param desc - A description of what the argument is for or
|
|
* does.
|
|
* \param parser - A CmdLine parser object to add this Arg to
|
|
* \param init - Optional. The initial/default value of this Arg.
|
|
* Defaults to 0.
|
|
* \param v - An optional visitor. You probably should not
|
|
* use this unless you have a very good reason.
|
|
*/
|
|
MultiSwitchArg(const std::string& flag,
|
|
const std::string& name,
|
|
const std::string& desc,
|
|
CmdLineInterface& parser,
|
|
int init = 0,
|
|
Visitor* v = NULL);
|
|
|
|
|
|
/**
|
|
* Handles the processing of the argument.
|
|
* This re-implements the SwitchArg version of this method to set the
|
|
* _value of the argument appropriately.
|
|
* \param i - Pointer the the current argument in the list.
|
|
* \param args - Mutable list of strings. Passed
|
|
* in from main().
|
|
*/
|
|
virtual bool processArg(int* i, std::vector<std::string>& args);
|
|
|
|
/**
|
|
* Returns int, the number of times the switch has been set.
|
|
*/
|
|
int getValue() const { return _value; }
|
|
|
|
/**
|
|
* Returns the shortID for this Arg.
|
|
*/
|
|
std::string shortID(const std::string& val) const;
|
|
|
|
/**
|
|
* Returns the longID for this Arg.
|
|
*/
|
|
std::string longID(const std::string& val) const;
|
|
|
|
void reset();
|
|
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
//BEGIN MultiSwitchArg.cpp
|
|
//////////////////////////////////////////////////////////////////////
|
|
inline MultiSwitchArg::MultiSwitchArg(const std::string& flag,
|
|
const std::string& name,
|
|
const std::string& desc,
|
|
int init,
|
|
Visitor* v )
|
|
: SwitchArg(flag, name, desc, false, v),
|
|
_value( init ),
|
|
_default( init )
|
|
{ }
|
|
|
|
inline MultiSwitchArg::MultiSwitchArg(const std::string& flag,
|
|
const std::string& name,
|
|
const std::string& desc,
|
|
CmdLineInterface& parser,
|
|
int init,
|
|
Visitor* v )
|
|
: SwitchArg(flag, name, desc, false, v),
|
|
_value( init ),
|
|
_default( init )
|
|
{
|
|
parser.add( this );
|
|
}
|
|
|
|
inline bool MultiSwitchArg::processArg(int *i, std::vector<std::string>& args)
|
|
{
|
|
if ( _ignoreable && Arg::ignoreRest() )
|
|
return false;
|
|
|
|
if ( argMatches( args[*i] ))
|
|
{
|
|
// so the isSet() method will work
|
|
_alreadySet = true;
|
|
|
|
// Matched argument: increment value.
|
|
++_value;
|
|
|
|
_checkWithVisitor();
|
|
|
|
return true;
|
|
}
|
|
else if ( combinedSwitchesMatch( args[*i] ) )
|
|
{
|
|
// so the isSet() method will work
|
|
_alreadySet = true;
|
|
|
|
// Matched argument: increment value.
|
|
++_value;
|
|
|
|
// Check for more in argument and increment value.
|
|
while ( combinedSwitchesMatch( args[*i] ) )
|
|
++_value;
|
|
|
|
_checkWithVisitor();
|
|
|
|
return false;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
|
|
inline std::string
|
|
MultiSwitchArg::shortID(const std::string& val) const
|
|
{
|
|
return Arg::shortID(val) + " ... ";
|
|
}
|
|
|
|
inline std::string
|
|
MultiSwitchArg::longID(const std::string& val) const
|
|
{
|
|
return Arg::longID(val) + " (accepted multiple times)";
|
|
}
|
|
|
|
inline void
|
|
MultiSwitchArg::reset()
|
|
{
|
|
MultiSwitchArg::_value = MultiSwitchArg::_default;
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
//END MultiSwitchArg.cpp
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
} //namespace TCLAP
|
|
|
|
#endif
|