Skip to content
Snippets Groups Projects
PropertyHistory.cpp 3.36 KiB
Newer Older
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidKernel/EmptyValues.h"
#include "MantidKernel/PropertyHistory.h"
#include "MantidKernel/Strings.h"
#include <boost/lexical_cast.hpp>
#include <algorithm>
#include <stdint.h>
#include <ostream>
namespace Mantid {
namespace Kernel {
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) {}
PropertyHistory::PropertyHistory(Property const *const prop)
Nick Draper's avatar
Nick Draper committed
    : m_name(prop->name()), m_value(prop->valueAsPrettyStr(0, true)),
      m_type(prop->type()), m_isDefault(prop->isDefault()),
      m_direction(prop->direction()) {}
/** 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
Nick Draper's avatar
Nick Draper committed
 *  @param maxPropertyLength :: the max length for any property value string (0
 * = full length)
void PropertyHistory::printSelf(std::ostream &os, const int indent,
Nick Draper's avatar
Nick Draper committed
                                const size_t maxPropertyLength) const {
  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';
 *  @param os :: The output stream to write to
 *  @param AP :: The PropertyHistory to output
 *  @returns The output stream
std::ostream &operator<<(std::ostream &os, const PropertyHistory &AP) {
/** 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;
}

} // namespace Kernel
} // namespace Mantid