Newer
Older
Russell Taylor
committed
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
Russell Taylor
committed
#include "MantidKernel/PropertyHistory.h"
Roman Tolchenov
committed
#include "MantidKernel/Property.h"
#include "MantidKernel/Strings.h"
#include <boost/lexical_cast.hpp>
#include <algorithm>
#include <stdint.h>
#include <ostream>
namespace Mantid {
namespace Kernel {
Russell Taylor
committed
/// Constructor
PropertyHistory::PropertyHistory(const std::string &name,
const std::string &value,
const std::string &type, const bool isdefault,
const unsigned int direction)
: m_name(name), m_value(value), m_type(type), m_isDefault(isdefault),
m_direction(direction) {}
Russell Taylor
committed
PropertyHistory::PropertyHistory(Property const *const prop)
: m_name(prop->name()), m_value(prop->valueAsPrettyStr(0, true)),
m_type(prop->type()), m_isDefault(prop->isDefault()),
m_direction(prop->direction()) {}
Russell Taylor
committed
/** Prints a text representation of itself
* @param os :: The output stream to write to
* @param indent :: an indentation value to make pretty printing of object and
* sub-objects
* @param maxPropertyLength :: the max length for any property value string (0
* = full length)
Russell Taylor
committed
*/
void PropertyHistory::printSelf(std::ostream &os, const int indent,
os << std::string(indent, ' ') << "Name: " << m_name;
if ((maxPropertyLength > 0) && (m_value.size() > maxPropertyLength)) {
os << ", Value: " << Strings::shorten(m_value, maxPropertyLength);
} else {
os << ", Value: " << m_value;
}
os << ", Default?: " << (m_isDefault ? "Yes" : "No");
os << ", Direction: " << Kernel::Direction::asText(m_direction) << '\n';
Russell Taylor
committed
}
/** Prints a text representation
* @param os :: The output stream to write to
Janik Zikovsky
committed
* @param AP :: The PropertyHistory to output
* @returns The output stream
Russell Taylor
committed
*/
std::ostream &operator<<(std::ostream &os, const PropertyHistory &AP) {
Russell Taylor
committed
AP.printSelf(os);
return os;
}
/** Returns whether algorithm parameter was left as default EMPTY_INT,LONG,DBL
* @returns True if param was unset and value = EMPTY_XXX, else false
*/
bool PropertyHistory::isEmptyDefault() const {
bool emptyDefault = false;
// Static lists to be initialised on first call
static std::vector<std::string> numberTypes, emptyValues;
// Type strings corresponding to numbers
if (numberTypes.empty()) {
numberTypes.push_back(getUnmangledTypeName(typeid(int)));
numberTypes.push_back(getUnmangledTypeName(typeid(int64_t)));
numberTypes.push_back(getUnmangledTypeName(typeid(double)));
}
// Empty values
if (emptyValues.empty()) {
emptyValues.push_back(std::to_string(EMPTY_INT()));
emptyValues.push_back(boost::lexical_cast<std::string>(EMPTY_DBL()));
emptyValues.push_back(std::to_string(EMPTY_LONG()));
}
// If default, input, number type and matches empty value then return true
if (m_isDefault && m_direction != Direction::Output) {
if (std::find(numberTypes.begin(), numberTypes.end(), m_type) !=
numberTypes.end()) {
if (std::find(emptyValues.begin(), emptyValues.end(), m_value) !=
emptyValues.end()) {
emptyDefault = true;
}
}
}
return emptyDefault;
}
Russell Taylor
committed
} // namespace Kernel
} // namespace Mantid