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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
|
/*============================================================================
MetaIO
Copyright 2000-2010 Insight Software Consortium
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
#include "metaTypes.h"
#ifndef ITKMetaIO_METACOMMAND_H
# define ITKMetaIO_METACOMMAND_H
# ifdef _MSC_VER
# pragma warning(disable : 4786)
# pragma warning(disable : 4251)
# endif
# include <cstdlib>
# include <string>
# include <vector>
# include <list>
# include <map>
# if (METAIO_USE_NAMESPACE)
namespace METAIO_NAMESPACE
{
# endif
class METAIO_EXPORT MetaCommand
{
public:
typedef enum
{
DATA_NONE,
DATA_IN,
DATA_OUT
} DataEnumType;
typedef enum
{
INT,
FLOAT,
CHAR,
STRING,
LIST,
FLAG,
BOOL,
IMAGE,
ENUM,
FILE
} TypeEnumType;
struct Field
{
std::string name;
std::string description;
std::string value;
TypeEnumType type;
DataEnumType externaldata;
std::string rangeMin;
std::string rangeMax;
bool required;
bool userDefined;
};
struct Option
{
std::string name;
std::string description;
std::string tag;
std::string longtag;
std::string label;
std::vector<Field> fields;
bool required;
bool userDefined;
bool complete;
};
struct ParameterGroup
{
std::string name;
std::string description;
std::vector<std::string> options;
bool advanced;
};
typedef std::vector<Option> OptionVector;
typedef std::vector<ParameterGroup> ParameterGroupVector;
MetaCommand();
~MetaCommand() = default;
bool
SetOption(const Option& option);
bool
SetOption(std::string name, const std::string& shortTag, bool required, std::string description, std::vector<Field> fields);
bool
SetOption(const std::string& name,
const std::string& shortTag,
bool required,
std::string description,
TypeEnumType type = TypeEnumType::FLAG,
std::string defVal = "",
DataEnumType externalData = DataEnumType::DATA_NONE);
/** Fields are added in order */
bool
AddField(const std::string& name,
std::string description,
TypeEnumType type,
DataEnumType externalData = DATA_NONE,
std::string rangeMin = "",
std::string rangeMax = "");
/** For backward compatibility */
bool
AddField(const std::string& name, const std::string& description, TypeEnumType type, bool externalData);
/** Add a field to an option */
bool
AddOptionField(const std::string& optionName,
const std::string& name,
TypeEnumType type,
bool required = true,
const std::string& defVal = "",
const std::string& description = "",
DataEnumType externalData = DATA_NONE);
/** Set the range of value as an option */
bool
SetOptionRange(const std::string& optionName, const std::string& name, const std::string& rangeMin, const std::string& rangeMax);
/** Set the list of values that can be used with an option */
bool
SetOptionEnumerations(const std::string& optionName, const std::string& name, const std::string& optionEnums);
/** Set the long tag for the option */
bool
SetOptionLongTag(const std::string& optionName, const std::string& longTag);
/** Set the label for the option */
bool
SetOptionLabel(const std::string& optionName, const std::string& label);
/** Set the group for a field or an option
* If the group doesn't exist it is automatically created. */
bool
SetParameterGroup(const std::string& optionName,
const std::string& groupName,
std::string groupDescription = "",
bool advanced = false);
/** Collect all the information until the next tag
* \warning this function works only if the field is of type String */
void
SetOptionComplete(const std::string& optionName, bool complete);
/** Get the values given the option name */
bool
GetValueAsBool(const std::string& optionName, const std::string& fieldName = "");
static bool
GetValueAsBool(Option option, const std::string& fieldName = "");
float
GetValueAsFloat(const std::string& optionName, const std::string& fieldName = "");
static float
GetValueAsFloat(Option option, const std::string& fieldName = "");
int
GetValueAsInt(const std::string& optionName, const std::string& fieldName = "");
static int
GetValueAsInt(Option option, const std::string& fieldName = "");
std::string
GetValueAsString(const std::string& optionName, const std::string& fieldName = "");
static std::string
GetValueAsString(Option option, const std::string& fieldName = "");
std::list<std::string>
GetValueAsList(const std::string& optionName);
static std::list<std::string>
GetValueAsList(Option option);
bool
GetOptionWasSet(const std::string& optionName);
static bool
GetOptionWasSet(const Option& option);
/** List the options */
void
ListOptions();
void
ListOptionsXML();
void
ListOptionsSlicerXML();
void
ListOptionsSimplified(bool extended = true);
Option *
GetOptionByMinusTag(const std::string& minusTag);
Option *
GetOptionByTag(const std::string& tag);
bool
OptionExistsByMinusTag(const std::string& minusTag);
bool
Parse(int argc, char ** argv);
/** Given an XML buffer fill in the command line arguments */
bool
ParseXML(const char * buffer);
/** Export the current command line arguments to a Grid Application
* Description file */
bool
ExportGAD(bool dynamic = false);
/** Extract the date from cvs date */
static std::string
ExtractDateFromCVS(std::string date);
void
SetDateFromCVS(std::string cvsDate);
/** Extract the version from cvs date */
static std::string
ExtractVersionFromCVS(std::string version);
void
SetVersionFromCVS(std::string cvsVersion);
/** Set the version of the app */
std::string
GetVersion()
{
return m_Version;
}
void
SetVersion(const char * version)
{
m_Version = version;
}
/** Get the name of the application */
std::string
GetApplicationName()
{
return m_ExecutableName;
}
/** Set the date of the app */
std::string
GetDate()
{
return m_Date;
}
void
SetDate(const char * date)
{
m_Date = date;
}
void
SetName(const char * name)
{
m_Name = name;
}
/** Set the description */
void
SetDescription(const char * description)
{
m_Description = description;
}
std::string
GetDescription() const
{
return m_Description;
}
/** Set the author */
void
SetAuthor(const char * author)
{
m_Author = author;
}
std::string
GetAuthor() const
{
return m_Author;
}
/** Set the acknowledgments */
void
SetAcknowledgments(const char * acknowledgments)
{
m_Acknowledgments = acknowledgments;
}
std::string
GetAcknowledgments() const
{
return m_Acknowledgments;
}
/** Set the category */
void
SetCategory(const char * category)
{
m_Category = category;
}
std::string
GetCategory() const
{
return m_Category;
}
long
GetOptionId(Option * option);
/** Return the list of options */
const OptionVector &
GetOptions()
{
return m_OptionVector;
}
/** Return the list of parse options */
const OptionVector &
GetParsedOptions()
{
return m_ParsedOptionVector;
}
void
SetHelpCallBack(void (*newHelpCallBack)())
{
m_HelpCallBack = newHelpCallBack;
}
static std::string
TypeToString(TypeEnumType type);
static TypeEnumType
StringToType(const char * type);
void
SetVerbose(bool verbose)
{
m_Verbose = verbose;
}
void
SetParseFailureOnUnrecognizedOption(bool fail)
{
m_FailOnUnrecognizedOption = fail;
}
/** Return true if we got the --xml */
bool
GotXMLFlag() const
{
return m_GotXMLFlag;
}
/** Disable the deprecated warnings */
void
DisableDeprecatedWarnings();
/** Load arguments from XML file.
* The second argument when set to true allows
* external classes to use this function to parse XML
* arguments. */
static bool
LoadArgumentsFromXML(const char * filename, bool createMissingArguments = false);
protected:
/** Small XML helper */
static std::string
GetXML(const char * buffer, const char * desc, unsigned long pos);
std::string m_Version;
std::string m_Date;
std::string m_Name;
std::string m_Description;
std::string m_Author;
std::string m_ExecutableName;
std::string m_Acknowledgments;
std::string m_Category;
ParameterGroupVector m_ParameterGroup;
private:
void (*m_HelpCallBack)();
/** Set the value of an option or a field
* This is used when importing command line arguments
* from XML */
bool
SetOptionValue(const char * optionName, const char * name, const char * value, bool createMissingArgument = false);
OptionVector m_OptionVector;
OptionVector m_ParsedOptionVector; // We store the parsed option in
// case we have multiple options
bool m_Verbose;
bool m_FailOnUnrecognizedOption;
bool m_GotXMLFlag;
bool m_DisableDeprecatedWarnings;
// Use when write --xml
void
WriteXMLOptionToCout(const std::string& optionName, unsigned int & index);
}; // end of class
# if (METAIO_USE_NAMESPACE)
};
# endif
#endif
|