63 return anyNumberParameterEntryValidator(
65 xmlObj.
getRequired(getPrefferedTypeAttributeName())),
78 getAllowIntAttributeName(), castedValidator->isIntAllowed());
80 getAllowDoubleAttributeName(), castedValidator->isDoubleAllowed());
82 getAllowStringAttributeName(), castedValidator->isStringAllowed());
84 castedValidator->getPrefferedTypeString(
85 castedValidator->getPreferredType()));
88 #ifdef HAVE_TEUCHOS_DEBUG 90 AnyNumberValidatorXMLConverter::getDummyValidator()
const{
102 getFileMustExistAttributeName(),
118 getFileMustExistAttributeName(), castedValidator->
fileMustExist());
122 #ifdef HAVE_TEUCHOS_DEBUG 124 FileNameValidatorXMLConverter::getDummyValidator()
const{
140 "Error converting xmlObject to StringValidator." << std::endl <<
141 "Unrecognized tag: " << currentChild.
getTag());
142 strings[i] = (currentChild.
getRequired(getStringValueAttributeName()));
157 if(!
is_null(validator->validStringValues())){
159 validator->validStringValues()->begin();
160 for(; it != validator->validStringValues()->end(); ++it){
162 stringTag.
addAttribute(getStringValueAttributeName(), *it);
169 #ifdef HAVE_TEUCHOS_DEBUG 171 StringValidatorXMLConverter::getDummyValidator()
const{
static bool mustAlreadyExistDefault()
The default value of the mustAlreadyExist parameter in the constructor.
A collection of standard ValidatorXMLConverters.
const std::string & getTag() const
Return the tag of the current node.
Maps Validators to integers.
static RCP< T > getDummyObject()
Retrieves a dummy object of type T.
void addBool(const std::string &name, bool val)
Add a bool as an attribute.
RCP< ParameterEntryValidator > convertXML(const XMLObject &xmlObj, const IDtoValidatorMap &validatorIDsMap) const
bool is_null(const std::shared_ptr< T > &p)
Returns true if p.get()==NULL.
void convertValidator(const RCP< const ParameterEntryValidator > validator, XMLObject &xmlObj, const ValidatortoIDMap &validatorIDsMap) const
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.
void addChild(const XMLObject &child)
Add a child node to the node.
AcceptedTypes & allowString(bool _allowString)
Set allow an std::string value or not.
RCP< ParameterEntryValidator > convertXML(const XMLObject &xmlObj, const IDtoValidatorMap &validatorIDsMap) const
const std::string & getRequired(const std::string &name) const
Get an attribute, throwing an std::exception if it is not found.
static EPreferredType getPrefferedTypeStringEnum(const std::string &enumString)
Gets the preferred type enum associated with a give string.
AcceptedTypes & allowInt(bool _allowInt)
Set allow an int value or not.
Determines the types that are accepted.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Deprecated.
Representation of an XML data tree. XMLObject is a ref-counted handle to a XMLObjectImplem object...
void convertValidator(const RCP< const ParameterEntryValidator > validator, XMLObject &xmlObj, const ValidatortoIDMap &validatorIDsMap) const
void convertValidator(const RCP< const ParameterEntryValidator > validator, XMLObject &xmlObj, const ValidatortoIDMap &validatorIDsMap) const
Validate a file name entry.
A class for mapping validators to integers.
void addAttribute(const std::string &name, T value)
Lookup whether or not Doubles are allowed.
A simple validator that only allows certain string values to be choosen or simply enforces that a par...
bool getRequiredBool(const std::string &name) const
Get a required attribute, returning it as a bool.
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos, as well as a number of utility routines.
int numChildren() const
Return the number of child nodes owned by this node.
AcceptedTypes & allowDouble(bool _allowDouble)
Set allow a double value or not.
Smart reference counting pointer class for automatic garbage collection.
bool fileMustExist() const
Gets the variable describing whether or not this validator wants the file that is specified to alread...
Thrown when xml tag is encountered that is either unrecognized or inappropriate for a given context...
const XMLObject & getChild(int i) const
Return the i-th child node.
Standard implementation of a ParameterEntryValidator that accepts numbers from a number of different ...
T getWithDefault(const std::string &name, const T &defaultValue) const
Get an attribute, assigning a default value if the requested attribute does not exist.
RCP< ParameterEntryValidator > convertXML(const XMLObject &xmlObj, const IDtoValidatorMap &validatorIDsMap) const
Reference-counted pointer class and non-member templated function implementations.