ROSE  0.11.145.0
Command line parser factories

Description

Factories for creating instances of Sawyer::CommandLine::ValueParser subclasses.

A factory function is a more terse and convenient way of calling the instance allocating constructors for the various subclasses of ValueParser, and they sometimes alleviate the user from having to specify template arguments. They take the same arguments as the instance method(s) and have the same name as the class they return, except their initial letter is lower case. These two calls are equivalent:

ValueParser::Ptr parser1 = IntegerParser::instance<short>(storage);
ValueParser::Ptr parser2 = integerParser(storage);

Most parser factories come in three varieties:

The integerParser factory is an example for all three of these varieties:

integerParser() // saves an int value in ParserResult
integerParser<short>() // saves a short value in ParserResult
long result;
integerParser(result); // saves a long value in ParserResult and in result
std::vector<int> results;
integerParser(results); // saves more than one integer

Factories

Collaboration diagram for Command line parser factories:
template<typename T >
AnyParser< T >::Ptr Sawyer::CommandLine::anyParser (T &storage)
 Factory for value parsers. More...
 
template<typename T >
AnyParser< T >::Ptr Sawyer::CommandLine::anyParser ()
 Factory for value parsers. More...
 
template<typename T >
IntegerParser< T >::Ptr Sawyer::CommandLine::integerParser (T &storage)
 Factory for value parsers. More...
 
template<typename T >
IntegerParser< T >::Ptr Sawyer::CommandLine::integerParser ()
 Factory for value parsers. More...
 
template<typename T >
NonNegativeIntegerParser< T >::Ptr Sawyer::CommandLine::nonNegativeIntegerParser (T &storage)
 Factory for value parsers. More...
 
template<typename T >
NonNegativeIntegerParser< T >::Ptr Sawyer::CommandLine::nonNegativeIntegerParser ()
 Factory for value parsers. More...
 
template<typename T >
PositiveIntegerParser< T >::Ptr Sawyer::CommandLine::positiveIntegerParser (T &storage)
 Factory for value parsers. More...
 
template<typename T >
PositiveIntegerParser< T >::Ptr Sawyer::CommandLine::positiveIntegerParser ()
 Factory for value parsers. More...
 
template<typename T >
RealNumberParser< T >::Ptr Sawyer::CommandLine::realNumberParser (T &storage)
 Factory for value parsers. More...
 
template<typename T >
RealNumberParser< T >::Ptr Sawyer::CommandLine::realNumberParser ()
 Factory for value parsers. More...
 
template<typename T >
BooleanParser< T >::Ptr Sawyer::CommandLine::booleanParser (T &storage)
 Factory for value parsers. More...
 
template<typename T >
BooleanParser< T >::Ptr Sawyer::CommandLine::booleanParser ()
 Factory for value parsers. More...
 
template<typename T >
EnumParser< T >::Ptr Sawyer::CommandLine::enumParser (T &storage)
 Factory for value parsers. More...
 
template<typename T >
EnumParser< T >::Ptr Sawyer::CommandLine::enumParser (std::vector< T > &storage)
 Factory for value parsers. More...
 
template<typename T >
EnumParser< T >::Ptr Sawyer::CommandLine::enumParser (Optional< T > &storage)
 Factory for value parsers. More...
 
template<typename T >
EnumParser< T >::Ptr Sawyer::CommandLine::enumParser (BitFlags< T > &storage)
 Factory for value parsers. More...
 
template<typename T >
EnumParser< T >::Ptr Sawyer::CommandLine::enumParser ()
 Factory for value parsers. More...
 
StringSetParser::Ptr Sawyer::CommandLine::stringSetParser (std::string &storage)
 Factory for value parsers. More...
 
StringSetParser::Ptr Sawyer::CommandLine::stringSetParser ()
 Factory for value parsers. More...
 
ListParser::Ptr Sawyer::CommandLine::listParser (const ValueParser::Ptr &, const std::string &sepRe="[,;:]\\s*")
 Factory for value parsers. More...
 

Function Documentation

template<typename T >
AnyParser<T>::Ptr Sawyer::CommandLine::anyParser ( T &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1430 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::AnyParser< T >::instance().

Referenced by Sawyer::CommandLine::Switch::intrinsicValue().

template<typename T >
AnyParser< std::string >::Ptr Sawyer::CommandLine::anyParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1434 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::AnyParser< T >::instance().

template<typename T >
IntegerParser<T>::Ptr Sawyer::CommandLine::integerParser ( T &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1440 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::IntegerParser< T >::instance().

template<typename T >
IntegerParser< int >::Ptr Sawyer::CommandLine::integerParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1444 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::IntegerParser< T >::instance().

template<typename T >
NonNegativeIntegerParser<T>::Ptr Sawyer::CommandLine::nonNegativeIntegerParser ( T &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1450 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::NonNegativeIntegerParser< T >::instance().

template<typename T >
NonNegativeIntegerParser< unsigned >::Ptr Sawyer::CommandLine::nonNegativeIntegerParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1454 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::NonNegativeIntegerParser< T >::instance().

template<typename T >
PositiveIntegerParser<T>::Ptr Sawyer::CommandLine::positiveIntegerParser ( T &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1460 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::PositiveIntegerParser< T >::instance().

template<typename T >
PositiveIntegerParser< unsigned >::Ptr Sawyer::CommandLine::positiveIntegerParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1464 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::PositiveIntegerParser< T >::instance().

template<typename T >
RealNumberParser<T>::Ptr Sawyer::CommandLine::realNumberParser ( T &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1470 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::RealNumberParser< T >::instance().

template<typename T >
RealNumberParser< double >::Ptr Sawyer::CommandLine::realNumberParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1474 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::RealNumberParser< T >::instance().

template<typename T >
BooleanParser<T>::Ptr Sawyer::CommandLine::booleanParser ( T &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1480 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::BooleanParser< T >::instance().

template<typename T >
BooleanParser< bool >::Ptr Sawyer::CommandLine::booleanParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1484 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::BooleanParser< T >::instance().

template<typename T >
EnumParser<T>::Ptr Sawyer::CommandLine::enumParser ( T &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1490 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::EnumParser< T >::instance().

template<typename T >
EnumParser<T>::Ptr Sawyer::CommandLine::enumParser ( std::vector< T > &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1494 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::EnumParser< T >::instance().

template<typename T >
EnumParser<T>::Ptr Sawyer::CommandLine::enumParser ( Optional< T > &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1498 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::EnumParser< T >::instance().

template<typename T >
EnumParser<T>::Ptr Sawyer::CommandLine::enumParser ( BitFlags< T > &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1502 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::EnumParser< T >::instance().

template<typename T >
EnumParser<T>::Ptr Sawyer::CommandLine::enumParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also

Definition at line 1506 of file util/Sawyer/CommandLine.h.

References Sawyer::CommandLine::EnumParser< T >::instance().

StringSetParser::Ptr Sawyer::CommandLine::stringSetParser ( std::string &  storage)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also
StringSetParser::Ptr Sawyer::CommandLine::stringSetParser ( )

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also
ListParser::Ptr Sawyer::CommandLine::listParser ( const ValueParser::Ptr ,
const std::string &  sepRe = "[,;:]\\s*" 
)

Factory for value parsers.

A factory function is a more terse and convenient way of calling the instance allocating constructors for ValueParser subclasses and often alleviates the user from having to specify template arguments. Most parser factories come in two varieties, and some in three varieties.

See also