"README.md" did not exist on "a84c028f5ccae99fb65f7c1478441a2df30214f8"
Newer
Older
#include "MantidKernel/DateTimeValidator.h"
#include "MantidKernel/DateAndTimeHelpers.h"
#include <boost/make_shared.hpp>
namespace Mantid {
namespace Kernel {
using namespace DateAndTimeHelpers;
/**
* @return A clone of the current state of the validator
*/
IValidator_sptr DateTimeValidator::clone() const {
return boost::make_shared<DateTimeValidator>(*this);
}
DateTimeValidator::DateTimeValidator() { m_allowedEmpty = false; }
/**
* Sets the value of the m_allowEmpty variable
* @param allow The new value of m_allowEmpty
*/
void DateTimeValidator::allowEmpty(const bool &allow) {
m_allowedEmpty = allow;
}
/**
* @param value A string to check for an ISO formatted timestamp
* @return An empty string if the value is valid or an string containing
* a description of the error otherwise
*/
std::string DateTimeValidator::checkValidity(const std::string &value) const {
// simply pass off the work DateAndTime constructor
// the DateAndTimeHelpers::stringIsISO8601 does not seem strict enough, it
// accepts empty strings & strings of letters!
if (m_allowedEmpty && value.empty()) {
return "";
} else {
DateAndTime timestamp(value);
UNUSED_ARG(timestamp);
} catch (std::invalid_argument &exc) {
error = exc.what();
}
return error;
} // namespace Kernel
} // namespace Mantid