/* * InstantSpectroNode.hh * * Created on: Dec 18, 2014 * Author: AKKA */ #ifndef INSTANTSPECTRONODE_HH_ #define INSTANTSPECTRONODE_HH_ #include <libxml/globals.h> #include <libxml/tree.h> #include <libxml/xmlstring.h> #include <iosfwd> #include "FileConfigurator.hh" #include "DrawingPropertiesNode.hh" #include "PlotLogger.hh" #include "InstantSpectroProperties.hh" namespace plot { template<class PlotType> class InstantSpectroNode: public plot::DrawingPropertiesNode<PlotType> { public: InstantSpectroNode() : DrawingPropertiesNode<PlotType>() { } virtual ~InstantSpectroNode() { } void proceed(xmlNodePtr pNode_, const AMDA::Parameters::CfgContext& pContext_) { LOG4CXX_DEBUG(gLogger, "InstantSpectroNode::proceed"); PlotType* plotOutput = pContext_.get<PlotType*>(); xmlChar* name = pContext_.get<xmlChar*>(); // initialize spectro with default properties DrawingProperties defaultProps = plotOutput->getParameter( (const char*) name).getDefaultProperties(); boost::shared_ptr<InstantSpectroProperties> isp(new InstantSpectroProperties(defaultProps)); plotOutput->setOriginalParamId ((const char *) name); plotOutput->setInstantSpectroProperties (isp); // parse attributes... parseAttributes(pNode_, *isp); // parse children nodes AMDA::Parameters::CfgContext context; context.push<xmlChar*>(name); context.push<InstantSpectroProperties*>(isp.get()); context.push<DrawingProperties*>(isp.get()); AMDA::XMLConfigurator::NodeGrpCfg::proceed(pNode_, context); } protected: void parseAttributes(xmlNodePtr pNode_, DrawingProperties& props_) { // read parent attributes DrawingPropertiesNode<PlotType>::parseAttributes(pNode_, props_); // specific spectro node attributes : xmlChar * value = NULL; // -- xAxis identifier value = xmlGetProp(pNode_, (const xmlChar *) "xAxis"); if( value ) { ((InstantSeriesProperties&) props_).setXAxisId((const char*)value); xmlFree(value); } // -- yAxis identifier value = xmlGetProp(pNode_, (const xmlChar *) "yAxis"); if( value ) { ((InstantSpectroProperties&) props_).setYAxisId((const char*)value); xmlFree(value); } // -- dimOnXAxis value = xmlGetProp(pNode_, (const xmlChar*) "dimOnXAxis"); if (value) { ((InstantSpectroProperties&) props_).setDimOnXAxis(atoi((const char*)value)); xmlFree(value); } } }; } /* namespace plot */ #endif /* INSTANTSPECTRONODE_HH_ */