"git@code.ornl.gov:mantidproject/mantid.git" did not exist on "e45891f5ff7e45fa9571885bede84de50512db40"
Newer
Older
#ifndef MANTID_KERNEL_PROPERTYMANAGEROWNER_H_
#define MANTID_KERNEL_PROPERTYMANAGEROWNER_H_
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include <vector>
#include "MantidKernel/IPropertyManager.h"
namespace Mantid {
namespace Kernel {
//----------------------------------------------------------------------
// Forward Declaration
//----------------------------------------------------------------------
class PropertyManager;
/** @class PropertyManagerOwner PropertyManagerOwner.h
Kernel/PropertyManagerOwner.h
Implementation of IPropertyManager which allows sharing the same set of
Properties
between several instances.
@author Roman Tolchenov, Tessella plc
@date 03/03/2009
Copyright © 2007-8 ISIS Rutherford Appleton Laboratory, NScD Oak Ridge
National Laboratory & European Spallation Source
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>.
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class MANTID_KERNEL_DLL PropertyManagerOwner : virtual public IPropertyManager {
public:
PropertyManagerOwner();
PropertyManagerOwner(const PropertyManagerOwner &);
PropertyManagerOwner &operator=(const PropertyManagerOwner &);
// Function to declare properties (i.e. store them)
void declareProperty(std::unique_ptr<Property> p,
const std::string &doc = "") override;
using IPropertyManager::declareProperty;
// Sets all the declared properties from
void setProperties(const std::string &propertiesJson,
const std::unordered_set<std::string> &ignoreProperties =
// Sets all the declared properties from a json object
void setProperties(const ::Json::Value &jsonValue,
const std::unordered_set<std::string> &ignoreProperties =
// sets all the declared properties using a simple string format
void setPropertiesWithString(
const std::string &propertiesString,
const std::unordered_set<std::string> &ignoreProperties =
std::unordered_set<std::string>()) override;
void setPropertyValue(const std::string &name,
const std::string &value) override;
void setPropertyOrdinal(const int &index, const std::string &value) override;
/// Make m_properties point to the same PropertyManager as po.
virtual void copyPropertiesFrom(const PropertyManagerOwner &po) {
*this = po;
}
bool existsProperty(const std::string &name) const override;
bool validateProperties() const override;
size_t propertyCount() const override;
std::string getPropertyValue(const std::string &name) const override;
const std::vector<Property *> &getProperties() const override;
/// Get the value of a property
TypedValue getProperty(const std::string &name) const override;
/// Return the property manager serialized as a string.
std::string asString(bool withDefaultValues = false) const override;
/// Return the property manager serialized as a json object.
::Json::Value asJson(bool withDefaultValues = false) const override;
bool isDefault(const std::string &name) const;
/// Removes the property from management
void removeProperty(const std::string &name,
const bool delproperty = true) override;
/// Clears all properties under management
void clear() override;
/// Override this method to perform a custom action right after a property was
/// set.
/// The argument is the property name. Default - do nothing.
void afterPropertySet(const std::string &) override;
void filterByTime(const Types::Core::DateAndTime & /*start*/,
const Types::Core::DateAndTime & /*stop*/) override {
throw(std::runtime_error("Not yet implmented"));
}
void splitByTime(std::vector<SplittingInterval> & /*splitter*/,
std::vector<PropertyManager *> /* outputs*/) const override {
throw(std::runtime_error("Not yet implmented"));
}
void filterByProperty(const TimeSeriesProperty<bool> & /*filte*/) override {
throw(std::runtime_error("Not yet implmented"));
}
Janik Zikovsky
committed
public:
Property *getPointerToProperty(const std::string &name) const override;
Property *getPointerToPropertyOrdinal(const int &index) const override;
private:
/// Shared pointer to the 'real' property manager
boost::shared_ptr<PropertyManager> m_properties;
};
} // namespace Kernel
} // namespace Mantid
#endif /*MANTID_KERNEL_PROPERTYMANAGEROWNER_H_*/