Newer
Older
#ifndef VATES_KNOWLEDGE_SERIALIZER_H
#define VATES_KNOWLEDGE_SERIALIZER_H
#include <boost/shared_ptr.hpp>
#include <string>
namespace Mantid
{
/// Forward Declarations;
namespace Geometry
{
class MDImplicitFunction;
}
namespace API
{
class IMDWorkspace;
}
namespace VATES
{
//The workspace location may or may not be required. This type defines the options.
enum LocationPolicy{LocationMandatory, LocationNotRequired};
/**
This type assists with the generation of well-formed xml meeting the xsd scehema. The individual components utilised here may not be able to form well-formed
xml in their own right and therefore do not have a toXMLString method.
This implementation is based on a builder pattern using the create mechanism for xml string generation.
@author Owen Arnold, Tessella plc
@date 14/12/2010
Copyright © 2010 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 DLLExport VatesKnowledgeSerializer
{
private:
boost::shared_ptr<const Mantid::Geometry::MDImplicitFunction> m_spFunction;
std::string m_wsLocationXML;
std::string m_wsNameXML;
std::string m_wsName;
std::string m_geomXML;
LocationPolicy m_locationPolicy;
public:
VatesKnowledgeSerializer(LocationPolicy locationPolicy=LocationMandatory);
/// Set the implicit function to use called.
void setImplicitFunction(boost::shared_ptr<const Mantid::Geometry::MDImplicitFunction> spFunction);
/// Set the workspace name to apply.
void setWorkspace(boost::shared_ptr<const Mantid::API::IMDWorkspace> workspace);
/// Set the workspace name to apply.
void setWorkspaceName(std::string wsName);
/// Set the geometry xml to apply.
void setGeometryXML(std::string geomXML);
/// Create the xml string correponding to the set values.
std::string createXMLString() const;
/// Get the underlying workspace name.
const std::string& getWorkspaceName() const;
/// Get the underlying workspace geometry.
const std::string& getWorkspaceGeometry() const;
/// Determine if function information is available/set.
bool hasFunctionInfo() const;
/// Determine if gemetry information is available/set.
bool hasGeometryInfo() const;
};
}
}
#endif