2004-09-14 00:15:02 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: KWSys - Kitware System Library
|
|
|
|
Module: $RCSfile$
|
|
|
|
|
|
|
|
Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "kwsysPrivate.h"
|
|
|
|
#include KWSYS_HEADER(CommandLineArguments.hxx)
|
|
|
|
|
|
|
|
#include KWSYS_HEADER(Configure.hxx)
|
|
|
|
|
|
|
|
#include KWSYS_HEADER(stl/vector)
|
|
|
|
#include KWSYS_HEADER(stl/map)
|
|
|
|
#include KWSYS_HEADER(stl/set)
|
|
|
|
#include KWSYS_HEADER(ios/sstream)
|
2004-09-14 03:06:19 +04:00
|
|
|
#include KWSYS_HEADER(ios/iostream)
|
2004-09-14 00:15:02 +04:00
|
|
|
|
2005-04-14 00:46:09 +04:00
|
|
|
// Work-around CMake dependency scanning limitation. This must
|
|
|
|
// duplicate the above list of headers.
|
|
|
|
#if 0
|
|
|
|
# include "CommandLineArguments.hxx.in"
|
|
|
|
# include "Configure.hxx.in"
|
|
|
|
# include "kwsys_stl.hxx.in"
|
|
|
|
# include "kwsys_ios_sstream.h.in"
|
|
|
|
# include "kwsys_ios_iostream.h.in"
|
|
|
|
#endif
|
|
|
|
|
2004-09-14 00:15:02 +04:00
|
|
|
#include <stdio.h>
|
2004-09-14 19:39:04 +04:00
|
|
|
#include <stdlib.h>
|
2005-03-11 18:07:36 +03:00
|
|
|
#include <string.h>
|
2004-09-14 00:15:02 +04:00
|
|
|
|
2004-09-15 17:22:34 +04:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
# pragma warning (disable: 4786)
|
|
|
|
#endif
|
|
|
|
|
2005-05-03 22:58:13 +04:00
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
|
|
|
# pragma set woff 1375 /* base class destructor not virtual */
|
|
|
|
#endif
|
|
|
|
|
2004-09-14 00:15:02 +04:00
|
|
|
namespace KWSYS_NAMESPACE
|
|
|
|
{
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
//============================================================================
|
|
|
|
class CommandLineArgumentsString : public kwsys_stl::string
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef kwsys_stl::string StdString;
|
|
|
|
CommandLineArgumentsString(): StdString() {}
|
|
|
|
CommandLineArgumentsString(const value_type* s): StdString(s) {}
|
|
|
|
CommandLineArgumentsString(const value_type* s, size_type n): StdString(s, n) {}
|
|
|
|
CommandLineArgumentsString(const StdString& s, size_type pos=0, size_type n=npos):
|
|
|
|
StdString(s, pos, n) {}
|
|
|
|
};
|
|
|
|
|
2004-09-15 17:22:34 +04:00
|
|
|
struct CommandLineArgumentsCallbackStructure
|
|
|
|
{
|
|
|
|
const char* Argument;
|
|
|
|
int ArgumentType;
|
|
|
|
CommandLineArguments::CallbackType Callback;
|
|
|
|
void* CallData;
|
|
|
|
void* Variable;
|
|
|
|
int VariableType;
|
|
|
|
const char* Help;
|
|
|
|
};
|
|
|
|
|
2004-09-14 00:15:02 +04:00
|
|
|
class CommandLineArgumentsVectorOfStrings :
|
|
|
|
public kwsys_stl::vector<CommandLineArgumentsString> {};
|
|
|
|
class CommandLineArgumentsSetOfStrings :
|
|
|
|
public kwsys_stl::set<CommandLineArgumentsString> {};
|
|
|
|
class CommandLineArgumentsMapOfStrucs :
|
|
|
|
public kwsys_stl::map<CommandLineArgumentsString,
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure> {};
|
2004-09-14 00:15:02 +04:00
|
|
|
|
|
|
|
class CommandLineArgumentsInternal
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CommandLineArgumentsInternal()
|
|
|
|
{
|
|
|
|
this->UnknownArgumentCallback = 0;
|
|
|
|
this->ClientData = 0;
|
|
|
|
this->LastArgument = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef CommandLineArgumentsVectorOfStrings VectorOfStrings;
|
|
|
|
typedef CommandLineArgumentsMapOfStrucs CallbacksMap;
|
|
|
|
typedef CommandLineArgumentsString String;
|
|
|
|
typedef CommandLineArgumentsSetOfStrings SetOfStrings;
|
|
|
|
|
|
|
|
VectorOfStrings Argv;
|
2004-09-23 19:45:02 +04:00
|
|
|
String Argv0;
|
2004-09-14 00:15:02 +04:00
|
|
|
CallbacksMap Callbacks;
|
|
|
|
|
|
|
|
CommandLineArguments::ErrorCallbackType UnknownArgumentCallback;
|
|
|
|
void* ClientData;
|
|
|
|
|
|
|
|
VectorOfStrings::size_type LastArgument;
|
|
|
|
};
|
|
|
|
//============================================================================
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
CommandLineArguments::CommandLineArguments()
|
|
|
|
{
|
|
|
|
this->Internals = new CommandLineArguments::Internal;
|
|
|
|
this->Help = "";
|
|
|
|
this->LineLength = 80;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
CommandLineArguments::~CommandLineArguments()
|
|
|
|
{
|
|
|
|
delete this->Internals;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2004-09-14 18:34:10 +04:00
|
|
|
void CommandLineArguments::Initialize(int argc, const char* const argv[])
|
2004-09-14 00:15:02 +04:00
|
|
|
{
|
|
|
|
int cc;
|
|
|
|
|
|
|
|
this->Initialize();
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->Argv0 = argv[0];
|
2004-09-14 00:15:02 +04:00
|
|
|
for ( cc = 1; cc < argc; cc ++ )
|
|
|
|
{
|
|
|
|
this->ProcessArgument(argv[cc]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-14 19:48:34 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::Initialize(int argc, char* argv[])
|
|
|
|
{
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Initialize(argc, static_cast<const char* const*>(argv));
|
2004-09-14 19:48:34 +04:00
|
|
|
}
|
|
|
|
|
2004-09-14 00:15:02 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::Initialize()
|
|
|
|
{
|
|
|
|
this->Internals->Argv.clear();
|
|
|
|
this->Internals->LastArgument = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::ProcessArgument(const char* arg)
|
|
|
|
{
|
|
|
|
this->Internals->Argv.push_back(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
int CommandLineArguments::Parse()
|
|
|
|
{
|
|
|
|
CommandLineArguments::Internal::VectorOfStrings::size_type cc;
|
|
|
|
CommandLineArguments::Internal::VectorOfStrings matches;
|
|
|
|
for ( cc = 0; cc < this->Internals->Argv.size(); cc ++ )
|
|
|
|
{
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->LastArgument = cc;
|
2004-09-14 00:15:02 +04:00
|
|
|
matches.clear();
|
|
|
|
CommandLineArguments::Internal::String& arg = this->Internals->Argv[cc];
|
|
|
|
CommandLineArguments::Internal::CallbacksMap::iterator it;
|
|
|
|
|
|
|
|
// Does the argument match to any we know about?
|
|
|
|
for ( it = this->Internals->Callbacks.begin();
|
|
|
|
it != this->Internals->Callbacks.end();
|
|
|
|
it ++ )
|
|
|
|
{
|
|
|
|
const CommandLineArguments::Internal::String& parg = it->first;
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure *cs = &it->second;
|
2004-09-14 00:15:02 +04:00
|
|
|
if (cs->ArgumentType == CommandLineArguments::NO_ARGUMENT ||
|
|
|
|
cs->ArgumentType == CommandLineArguments::SPACE_ARGUMENT)
|
|
|
|
{
|
|
|
|
if ( arg == parg )
|
|
|
|
{
|
|
|
|
matches.push_back(parg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( arg.find( parg ) == 0 )
|
|
|
|
{
|
|
|
|
matches.push_back(parg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( matches.size() > 0 )
|
|
|
|
{
|
|
|
|
// Ok, we found one or more arguments that match what user specified.
|
|
|
|
// Let's find the longest one.
|
|
|
|
CommandLineArguments::Internal::VectorOfStrings::size_type kk;
|
|
|
|
CommandLineArguments::Internal::VectorOfStrings::size_type maxidx = 0;
|
|
|
|
CommandLineArguments::Internal::String::size_type maxlen = 0;
|
|
|
|
for ( kk = 0; kk < matches.size(); kk ++ )
|
|
|
|
{
|
|
|
|
if ( matches[kk].size() > maxlen )
|
|
|
|
{
|
|
|
|
maxlen = matches[kk].size();
|
|
|
|
maxidx = kk;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// So, the longest one is probably the right one. Now see if it has any
|
|
|
|
// additional value
|
|
|
|
const char* value = 0;
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure *cs
|
2004-09-14 00:15:02 +04:00
|
|
|
= &this->Internals->Callbacks[matches[maxidx]];
|
|
|
|
const CommandLineArguments::Internal::String& sarg = matches[maxidx];
|
|
|
|
if ( cs->ArgumentType == NO_ARGUMENT )
|
|
|
|
{
|
|
|
|
// No value
|
|
|
|
}
|
|
|
|
else if ( cs->ArgumentType == SPACE_ARGUMENT )
|
|
|
|
{
|
|
|
|
if ( cc == this->Internals->Argv.size()-1 )
|
|
|
|
{
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->LastArgument --;
|
2004-09-14 00:15:02 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Value is the next argument
|
|
|
|
value = this->Internals->Argv[cc+1].c_str();
|
|
|
|
cc ++;
|
|
|
|
}
|
|
|
|
else if ( cs->ArgumentType == EQUAL_ARGUMENT )
|
|
|
|
{
|
|
|
|
if ( arg.size() == sarg.size() || *(arg.c_str() + sarg.size()) != '=' )
|
|
|
|
{
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->LastArgument --;
|
2004-09-14 00:15:02 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Value is everythng followed the '=' sign
|
|
|
|
value = arg.c_str() + sarg.size()+1;
|
|
|
|
}
|
|
|
|
else if ( cs->ArgumentType == CONCAT_ARGUMENT )
|
|
|
|
{
|
|
|
|
// Value is whatever follows the argument
|
|
|
|
value = arg.c_str() + sarg.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the callback
|
|
|
|
if ( cs->Callback )
|
|
|
|
{
|
|
|
|
if ( !cs->Callback(sarg.c_str(), value, cs->CallData) )
|
|
|
|
{
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->LastArgument --;
|
2004-09-14 00:15:02 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( cs->Variable )
|
|
|
|
{
|
|
|
|
kwsys_stl::string var = "1";
|
|
|
|
if ( value )
|
|
|
|
{
|
|
|
|
var = value;
|
|
|
|
}
|
|
|
|
if ( cs->VariableType == CommandLineArguments::INT_TYPE )
|
|
|
|
{
|
|
|
|
int* variable = static_cast<int*>(cs->Variable);
|
|
|
|
char* res = 0;
|
|
|
|
*variable = strtol(var.c_str(), &res, 10);
|
|
|
|
//if ( res && *res )
|
|
|
|
// {
|
|
|
|
// Can handle non-int
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
else if ( cs->VariableType == CommandLineArguments::DOUBLE_TYPE )
|
|
|
|
{
|
|
|
|
double* variable = static_cast<double*>(cs->Variable);
|
|
|
|
char* res = 0;
|
|
|
|
*variable = strtod(var.c_str(), &res);
|
|
|
|
//if ( res && *res )
|
|
|
|
// {
|
|
|
|
// Can handle non-int
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
else if ( cs->VariableType == CommandLineArguments::STRING_TYPE )
|
|
|
|
{
|
|
|
|
char** variable = static_cast<char**>(cs->Variable);
|
|
|
|
if ( *variable )
|
|
|
|
{
|
|
|
|
delete [] *variable;
|
|
|
|
*variable = 0;
|
|
|
|
}
|
|
|
|
*variable = new char[ strlen(var.c_str()) + 1 ];
|
|
|
|
strcpy(*variable, var.c_str());
|
|
|
|
}
|
|
|
|
else if ( cs->VariableType == CommandLineArguments::STL_STRING_TYPE )
|
|
|
|
{
|
|
|
|
kwsys_stl::string* variable = static_cast<kwsys_stl::string*>(cs->Variable);
|
|
|
|
*variable = var;
|
|
|
|
}
|
|
|
|
else if ( cs->VariableType == CommandLineArguments::BOOL_TYPE )
|
|
|
|
{
|
|
|
|
bool* variable = static_cast<bool*>(cs->Variable);
|
|
|
|
if ( var == "1" || var == "ON" || var == "TRUE" || var == "true" || var == "on" ||
|
|
|
|
var == "True" || var == "yes" || var == "Yes" || var == "YES" )
|
|
|
|
{
|
|
|
|
*variable = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*variable = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-09-14 02:57:28 +04:00
|
|
|
kwsys_ios::cerr << "Got unknown argument type: \"" << cs->VariableType << "\"" << kwsys_ios::endl;
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->LastArgument --;
|
2004-09-14 00:15:02 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Handle unknown arguments
|
|
|
|
if ( this->Internals->UnknownArgumentCallback )
|
|
|
|
{
|
|
|
|
if ( !this->Internals->UnknownArgumentCallback(arg.c_str(),
|
|
|
|
this->Internals->ClientData) )
|
|
|
|
{
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->LastArgument --;
|
2004-09-14 00:15:02 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-09-14 02:57:28 +04:00
|
|
|
kwsys_ios::cerr << "Got unknown argument: \"" << arg.c_str() << "\"" << kwsys_ios::endl;
|
2004-09-23 19:45:02 +04:00
|
|
|
this->Internals->LastArgument --;
|
2004-09-14 00:15:02 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::GetRemainingArguments(int* argc, char*** argv)
|
|
|
|
{
|
|
|
|
CommandLineArguments::Internal::VectorOfStrings::size_type size
|
2004-09-23 23:02:22 +04:00
|
|
|
= this->Internals->Argv.size() - this->Internals->LastArgument + 1;
|
2004-09-14 00:15:02 +04:00
|
|
|
CommandLineArguments::Internal::VectorOfStrings::size_type cc;
|
|
|
|
|
2004-09-23 19:45:02 +04:00
|
|
|
// Copy Argv0 as the first argument
|
2004-09-14 00:15:02 +04:00
|
|
|
char** args = new char*[ size ];
|
2004-09-23 19:45:02 +04:00
|
|
|
args[0] = new char[ this->Internals->Argv0.size() + 1 ];
|
|
|
|
strcpy(args[0], this->Internals->Argv0.c_str());
|
2004-09-14 00:15:02 +04:00
|
|
|
int cnt = 1;
|
2004-09-23 19:45:02 +04:00
|
|
|
|
|
|
|
// Copy everything after the LastArgument, since that was not parsed.
|
|
|
|
for ( cc = this->Internals->LastArgument+1;
|
2004-09-14 00:15:02 +04:00
|
|
|
cc < this->Internals->Argv.size(); cc ++ )
|
|
|
|
{
|
|
|
|
args[cnt] = new char[ this->Internals->Argv[cc].size() + 1];
|
|
|
|
strcpy(args[cnt], this->Internals->Argv[cc].c_str());
|
|
|
|
cnt ++;
|
|
|
|
}
|
|
|
|
*argc = cnt;
|
|
|
|
*argv = args;
|
|
|
|
}
|
|
|
|
|
2005-12-10 20:10:09 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::DeleteRemainingArguments(int argc, char*** argv)
|
|
|
|
{
|
|
|
|
int cc;
|
|
|
|
for ( cc = 0; cc < argc; ++ cc )
|
|
|
|
{
|
|
|
|
delete [] *argv[cc];
|
|
|
|
}
|
|
|
|
delete [] *argv;
|
|
|
|
}
|
|
|
|
|
2004-09-14 00:15:02 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddCallback(const char* argument, ArgumentTypeEnum type,
|
|
|
|
CallbackType callback, void* call_data, const char* help)
|
|
|
|
{
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure s;
|
2004-09-14 00:15:02 +04:00
|
|
|
s.Argument = argument;
|
|
|
|
s.ArgumentType = type;
|
|
|
|
s.Callback = callback;
|
|
|
|
s.CallData = call_data;
|
|
|
|
s.VariableType = CommandLineArguments::NO_VARIABLE_TYPE;
|
|
|
|
s.Variable = 0;
|
|
|
|
s.Help = help;
|
|
|
|
|
|
|
|
this->Internals->Callbacks[argument] = s;
|
|
|
|
this->GenerateHelp();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddArgument(const char* argument, ArgumentTypeEnum type,
|
|
|
|
VariableTypeEnum vtype, void* variable, const char* help)
|
|
|
|
{
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure s;
|
2004-09-14 00:15:02 +04:00
|
|
|
s.Argument = argument;
|
|
|
|
s.ArgumentType = type;
|
|
|
|
s.Callback = 0;
|
|
|
|
s.CallData = 0;
|
|
|
|
s.VariableType = vtype;
|
|
|
|
s.Variable = variable;
|
|
|
|
s.Help = help;
|
|
|
|
|
|
|
|
this->Internals->Callbacks[argument] = s;
|
|
|
|
this->GenerateHelp();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddArgument(const char* argument, ArgumentTypeEnum type,
|
|
|
|
int* variable, const char* help)
|
|
|
|
{
|
|
|
|
this->AddArgument(argument, type, CommandLineArguments::INT_TYPE, variable, help);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddArgument(const char* argument, ArgumentTypeEnum type,
|
|
|
|
double* variable, const char* help)
|
|
|
|
{
|
|
|
|
this->AddArgument(argument, type, CommandLineArguments::DOUBLE_TYPE, variable, help);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddArgument(const char* argument, ArgumentTypeEnum type,
|
|
|
|
char** variable, const char* help)
|
|
|
|
{
|
|
|
|
this->AddArgument(argument, type, CommandLineArguments::STRING_TYPE, variable, help);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddArgument(const char* argument, ArgumentTypeEnum type,
|
|
|
|
kwsys_stl::string* variable, const char* help)
|
|
|
|
{
|
|
|
|
this->AddArgument(argument, type, CommandLineArguments::STL_STRING_TYPE, variable, help);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddArgument(const char* argument, ArgumentTypeEnum type,
|
|
|
|
bool* variable, const char* help)
|
|
|
|
{
|
|
|
|
this->AddArgument(argument, type, CommandLineArguments::BOOL_TYPE, variable, help);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddBooleanArgument(const char* argument, bool*
|
|
|
|
variable, const char* help)
|
|
|
|
{
|
|
|
|
this->AddArgument(argument, CommandLineArguments::NO_ARGUMENT,
|
|
|
|
CommandLineArguments::BOOL_TYPE, variable, help);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::AddBooleanArgument(const char* argument, int*
|
|
|
|
variable, const char* help)
|
|
|
|
{
|
|
|
|
this->AddArgument(argument, CommandLineArguments::NO_ARGUMENT,
|
|
|
|
CommandLineArguments::INT_TYPE, variable, help);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::SetClientData(void* client_data)
|
|
|
|
{
|
|
|
|
this->Internals->ClientData = client_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::SetUnknownArgumentCallback(
|
|
|
|
CommandLineArguments::ErrorCallbackType callback)
|
|
|
|
{
|
|
|
|
this->Internals->UnknownArgumentCallback = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* CommandLineArguments::GetHelp(const char* arg)
|
|
|
|
{
|
|
|
|
CommandLineArguments::Internal::CallbacksMap::iterator it
|
|
|
|
= this->Internals->Callbacks.find(arg);
|
|
|
|
if ( it == this->Internals->Callbacks.end() )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since several arguments may point to the same argument, find the one this
|
|
|
|
// one point to if this one is pointing to another argument.
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure *cs = &(it->second);
|
2005-04-22 17:21:33 +04:00
|
|
|
for(;;)
|
2004-09-14 00:15:02 +04:00
|
|
|
{
|
|
|
|
CommandLineArguments::Internal::CallbacksMap::iterator hit
|
|
|
|
= this->Internals->Callbacks.find(cs->Help);
|
|
|
|
if ( hit == this->Internals->Callbacks.end() )
|
|
|
|
{
|
2004-10-20 20:37:39 +04:00
|
|
|
break;
|
2004-09-14 00:15:02 +04:00
|
|
|
}
|
|
|
|
cs = &(hit->second);
|
|
|
|
}
|
2004-10-20 20:37:39 +04:00
|
|
|
return cs->Help;
|
2004-09-14 00:15:02 +04:00
|
|
|
}
|
|
|
|
|
2004-09-16 18:27:17 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::SetLineLength(unsigned int ll)
|
|
|
|
{
|
|
|
|
if ( ll < 9 || ll > 1000 )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->LineLength = ll;
|
|
|
|
this->GenerateHelp();
|
|
|
|
}
|
|
|
|
|
2004-09-28 19:34:29 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* CommandLineArguments::GetArgv0()
|
|
|
|
{
|
|
|
|
return this->Internals->Argv0.c_str();
|
|
|
|
}
|
|
|
|
|
2004-09-29 15:56:25 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
unsigned int CommandLineArguments::GetLastArgument()
|
|
|
|
{
|
|
|
|
return this->Internals->LastArgument + 1;
|
|
|
|
}
|
|
|
|
|
2004-09-14 00:15:02 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void CommandLineArguments::GenerateHelp()
|
|
|
|
{
|
|
|
|
kwsys_ios::ostringstream str;
|
|
|
|
|
|
|
|
// Collapse all arguments into the map of vectors of all arguments that do
|
|
|
|
// the same thing.
|
|
|
|
CommandLineArguments::Internal::CallbacksMap::iterator it;
|
|
|
|
typedef kwsys_stl::map<CommandLineArguments::Internal::String,
|
|
|
|
CommandLineArguments::Internal::SetOfStrings > MapArgs;
|
|
|
|
MapArgs mp;
|
|
|
|
MapArgs::iterator mpit, smpit;
|
|
|
|
for ( it = this->Internals->Callbacks.begin();
|
|
|
|
it != this->Internals->Callbacks.end();
|
|
|
|
it ++ )
|
|
|
|
{
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure *cs = &(it->second);
|
2004-09-14 00:15:02 +04:00
|
|
|
mpit = mp.find(cs->Help);
|
|
|
|
if ( mpit != mp.end() )
|
|
|
|
{
|
|
|
|
mpit->second.insert(it->first);
|
|
|
|
mp[it->first].insert(it->first);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mp[it->first].insert(it->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for ( it = this->Internals->Callbacks.begin();
|
|
|
|
it != this->Internals->Callbacks.end();
|
|
|
|
it ++ )
|
|
|
|
{
|
2004-09-15 17:22:34 +04:00
|
|
|
CommandLineArgumentsCallbackStructure *cs = &(it->second);
|
2004-09-14 00:15:02 +04:00
|
|
|
mpit = mp.find(cs->Help);
|
|
|
|
if ( mpit != mp.end() )
|
|
|
|
{
|
|
|
|
mpit->second.insert(it->first);
|
|
|
|
smpit = mp.find(it->first);
|
|
|
|
CommandLineArguments::Internal::SetOfStrings::iterator sit;
|
|
|
|
for ( sit = smpit->second.begin(); sit != smpit->second.end(); sit++ )
|
|
|
|
{
|
|
|
|
mpit->second.insert(*sit);
|
|
|
|
}
|
|
|
|
mp.erase(smpit);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mp[it->first].insert(it->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the length of the longest string
|
|
|
|
CommandLineArguments::Internal::String::size_type maxlen = 0;
|
|
|
|
for ( mpit = mp.begin();
|
|
|
|
mpit != mp.end();
|
|
|
|
mpit ++ )
|
|
|
|
{
|
|
|
|
CommandLineArguments::Internal::SetOfStrings::iterator sit;
|
|
|
|
for ( sit = mpit->second.begin(); sit != mpit->second.end(); sit++ )
|
|
|
|
{
|
|
|
|
CommandLineArguments::Internal::String::size_type clen = sit->size();
|
|
|
|
switch ( this->Internals->Callbacks[*sit].ArgumentType )
|
|
|
|
{
|
|
|
|
case CommandLineArguments::NO_ARGUMENT: clen += 0; break;
|
2004-09-16 18:27:17 +04:00
|
|
|
case CommandLineArguments::CONCAT_ARGUMENT: clen += 3; break;
|
|
|
|
case CommandLineArguments::SPACE_ARGUMENT: clen += 4; break;
|
|
|
|
case CommandLineArguments::EQUAL_ARGUMENT: clen += 4; break;
|
2004-09-14 00:15:02 +04:00
|
|
|
}
|
|
|
|
if ( clen > maxlen )
|
|
|
|
{
|
|
|
|
maxlen = clen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create format for that string
|
|
|
|
char format[80];
|
2004-09-16 18:49:09 +04:00
|
|
|
sprintf(format, " %%-%ds ", static_cast<unsigned int>(maxlen));
|
2004-09-14 00:15:02 +04:00
|
|
|
|
2004-09-16 18:49:09 +04:00
|
|
|
maxlen += 4; // For the space before and after the option
|
2004-09-14 00:15:02 +04:00
|
|
|
|
|
|
|
// Print help for each option
|
|
|
|
for ( mpit = mp.begin();
|
|
|
|
mpit != mp.end();
|
|
|
|
mpit ++ )
|
|
|
|
{
|
|
|
|
CommandLineArguments::Internal::SetOfStrings::iterator sit;
|
|
|
|
for ( sit = mpit->second.begin(); sit != mpit->second.end(); sit++ )
|
|
|
|
{
|
2004-09-14 02:57:28 +04:00
|
|
|
str << kwsys_ios::endl;
|
2004-09-14 00:15:02 +04:00
|
|
|
char argument[100];
|
|
|
|
sprintf(argument, sit->c_str());
|
|
|
|
switch ( this->Internals->Callbacks[*sit].ArgumentType )
|
|
|
|
{
|
|
|
|
case CommandLineArguments::NO_ARGUMENT: break;
|
2004-09-16 18:27:17 +04:00
|
|
|
case CommandLineArguments::CONCAT_ARGUMENT: strcat(argument, "opt"); break;
|
|
|
|
case CommandLineArguments::SPACE_ARGUMENT: strcat(argument, " opt"); break;
|
|
|
|
case CommandLineArguments::EQUAL_ARGUMENT: strcat(argument, "=opt"); break;
|
2004-09-14 00:15:02 +04:00
|
|
|
}
|
|
|
|
char buffer[80];
|
|
|
|
sprintf(buffer, format, argument);
|
|
|
|
str << buffer;
|
|
|
|
}
|
|
|
|
const char* ptr = this->Internals->Callbacks[mpit->first].Help;
|
|
|
|
int len = strlen(ptr);
|
|
|
|
int cnt = 0;
|
|
|
|
while ( len > 0)
|
|
|
|
{
|
|
|
|
// If argument with help is longer than line length, split it on previous
|
|
|
|
// space (or tab) and continue on the next line
|
|
|
|
CommandLineArguments::Internal::String::size_type cc;
|
|
|
|
for ( cc = 0; ptr[cc]; cc ++ )
|
|
|
|
{
|
|
|
|
if ( *ptr == ' ' || *ptr == '\t' )
|
|
|
|
{
|
|
|
|
ptr ++;
|
|
|
|
len --;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( cnt > 0 )
|
|
|
|
{
|
|
|
|
for ( cc = 0; cc < maxlen; cc ++ )
|
|
|
|
{
|
|
|
|
str << " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CommandLineArguments::Internal::String::size_type skip = len;
|
|
|
|
if ( skip > this->LineLength - maxlen )
|
|
|
|
{
|
|
|
|
skip = this->LineLength - maxlen;
|
|
|
|
for ( cc = skip-1; cc > 0; cc -- )
|
|
|
|
{
|
|
|
|
if ( ptr[cc] == ' ' || ptr[cc] == '\t' )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( cc != 0 )
|
|
|
|
{
|
|
|
|
skip = cc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
str.write(ptr, skip);
|
2004-09-14 02:57:28 +04:00
|
|
|
str << kwsys_ios::endl;
|
2004-09-14 00:15:02 +04:00
|
|
|
ptr += skip;
|
|
|
|
len -= skip;
|
|
|
|
cnt ++;
|
|
|
|
}
|
|
|
|
}
|
2004-09-16 18:27:17 +04:00
|
|
|
/*
|
|
|
|
// This can help debugging help string
|
|
|
|
str << endl;
|
|
|
|
unsigned int cc;
|
|
|
|
for ( cc = 0; cc < this->LineLength; cc ++ )
|
|
|
|
{
|
|
|
|
str << cc % 10;
|
|
|
|
}
|
|
|
|
str << endl;
|
|
|
|
*/
|
2004-09-14 00:15:02 +04:00
|
|
|
this->Help = str.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace KWSYS_NAMESPACE
|