XYPlotNode.hh 1.98 KB
/*
 * XYPlotNode.hh
 *
 *  Created on: Dec 6, 2013
 *      Author: amdadev
 */

#ifndef XYPLOTNODE_HH_
#define XYPLOTNODE_HH_

#include <boost/smart_ptr/shared_ptr.hpp>
#include <libxml/tree.h>

#include "AbstractPanelPlotNode.hh"
#include "PanelPlotOutput.hh"
#include "PlotOutput.hh"
#include "Panel.hh"
#include "ParamsNode.hh"
#include "SeriesNode.hh"

namespace plot {
/**
 * xml node name, this name is used in both config and request xml files.
 */
#define XYPLOT_NODENAME "xyPlot"

/**
 * Reads xyplot node.
 */
class XYPlotNode: public plot::AbstractPanelPlotNode {
public:
	XYPlotNode();
	virtual ~XYPlotNode();
protected:
	boost::shared_ptr<PanelPlotOutput> proceed(xmlNodePtr, PlotOutput*, Panel*);
private:
	/**
	 * constant to uniquely identify this node in the registry
	 */
	static const std::string NODENAME;
	/**
	 * artificial special attribute to force registering node.
	 */
	static std::string _key;
};

/**
 * Reads xyplot/params/param node.
 */
template<class PlotType>
class XYPlotParamNode: public ParamNode<PlotType> {
public:
	XYPlotParamNode() :
			ParamNode<PlotType>() {
		ParamNode<PlotType>::getChildList()["xserie"] =
				AMDA::XMLConfigurator::NodeCfgSPtr(new XSeriesNode<PlotType>());
		ParamNode<PlotType>::getChildList()["yserie"] =
				AMDA::XMLConfigurator::NodeCfgSPtr(new SeriesNode<PlotType>());
		ParamNode<PlotType>::getChildList()["orbitserie"] =
				AMDA::XMLConfigurator::NodeCfgSPtr(new OrbitSeriesNode<PlotType>());
		ParamNode<PlotType>::getChildList()["colorserie"] =
				AMDA::XMLConfigurator::NodeCfgSPtr(new ColorSeriesNode<PlotType>());
	}

	virtual ~XYPlotParamNode() {
	}
};

/**
 * Reads xyplot/params node.
 */
template<class PlotType>
class XYPlotParamsNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
	XYPlotParamsNode() :
			AMDA::XMLConfigurator::NodeGrpCfg() {
		getChildList()["param"] = AMDA::XMLConfigurator::NodeCfgSPtr(
				new XYPlotParamNode<PlotType>());
	}

	virtual ~XYPlotParamsNode() {
	}
};

} /* namespace plot */

#endif /* XYPLOTNODE_HH_ */