InstantSeriesNode.hh
2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
* InstantSeriesNode.hh
*
* Created on: Dec 9, 2013
* Author: amdadev
*/
#ifndef INSTANTSERIESNODE_HH_
#define INSTANTSERIESNODE_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 "InstantSeriesProperties.hh"
namespace plot {
template<class PlotType>
class InstantSeriesNode: public plot::DrawingPropertiesNode<PlotType> {
public:
InstantSeriesNode() :
DrawingPropertiesNode<PlotType>() {
}
virtual ~InstantSeriesNode() {
}
void proceed(xmlNodePtr pNode_, const AMDA::Parameters::CfgContext& pContext_) {
LOG4CXX_DEBUG(gLogger, "InstantSeriesNode::proceed");
PlotType* plotOutput = pContext_.get<PlotType*>();
xmlChar* name = pContext_.get<xmlChar*>();
// initialize series with default properties
DrawingProperties defaultProps = plotOutput->getParameter(
(const char*) name).getDefaultProperties();
boost::shared_ptr<InstantSeriesProperties> isp(new InstantSeriesProperties(defaultProps));
plotOutput->setOriginalParamId ((const char *) name);
plotOutput->setInstantSerieProperties (isp);
// parse attributes...
parseAttributes(pNode_, *isp);
// parse children nodes
AMDA::Parameters::CfgContext context;
context.push<xmlChar*>(name);
context.push<InstantSeriesProperties*>(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 series 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 ) {
((InstantSeriesProperties&) props_).setYAxisId((const char*)value);
xmlFree(value);
}
// -- tableOnXAxis
value = xmlGetProp(pNode_, (const xmlChar*) "tableOnXAxis");
if (value) {
((InstantSeriesProperties&) props_).setTableOnXAxis(strcasecmp ((const char*)value, "true") == 0);
xmlFree(value);
}
// -- id
value = xmlGetProp(pNode_, (const xmlChar*) "id");
if (value) {
((InstantSeriesProperties&) props_).setId(atoi ((const char*)value));
xmlFree(value);
}
}
};
}
/* namespace plot */
#endif /* INSTANTSERIESNODE_HH_ */