Blame view

src/ParamOutputImpl/Plot/IntervalsNode.hh 3.55 KB
e257cfb9   Benjamin Renard   First implementat...
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
/*
 * IntervalsNode.hh
 *
 *  Created on: Feb 4, 2019
 *      Author: AKKA
 */

#ifndef INTERVALSNODE_HH_
#define INTERVALSNODE_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 "IntervalsProperties.hh"

namespace plot {
/**
 * Class that handle a <intervals> xml node.
 * Template class that should be instanciated for each subclass of PanelOutputPanel.
 */

template<class PlotType>
class IntervalsNode: public plot::DrawingPropertiesNode<PlotType> {
public:
	IntervalsNode():
		DrawingPropertiesNode<PlotType>() {
	}
	virtual ~IntervalsNode() {
	}

	void proceed(xmlNodePtr pNode_,const AMDA::Parameters::CfgContext& pContext_) {
		LOG4CXX_DEBUG(gLogger, "IntervalsNode::proceed");
		PlotType* plotOutput = pContext_.get<PlotType*>();
		xmlChar* name = pContext_.get<xmlChar*>();

		// initialize intervals with default properties
		DrawingProperties defaultProps = plotOutput->getParameter(
				(const char*) name).getDefaultProperties();

		// read parent attributes
		DrawingPropertiesNode<PlotType>::parseAttributes(pNode_, defaultProps);

		// intervals properties
		std::shared_ptr<IntervalsProperties> intervalsPropsPtr =
				std::shared_ptr<IntervalsProperties>(new IntervalsProperties(defaultProps));

		// read index definition
		xmlChar * value = NULL;

		value = xmlGetProp(pNode_, (const xmlChar*) "index");
		if (value) {
			intervalsPropsPtr->setIndexDef((const char*) value);
			xmlFree(value);
		}
2c182978   Erdogan Furkan   First step
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
		// -- color
		Color color(255, 0, 0);
		value = xmlGetProp(pNode_, (const xmlChar *)"color");
		if (value)
		{
			try
			{
				std::string strValue((const char *)value);
				createColor(color, strValue);
			}
			catch (std::logic_error &e)
			{
				LOG4CXX_WARN(gLogger, "Intervals Color : " << e.what());
			}
			xmlFree(value);
		}
		intervalsPropsPtr->setColor(color);
e257cfb9   Benjamin Renard   First implementat...
77
78
		// add intervals definition to parameter
		plotOutput->getParameter((const char*)name).addIntervalsProperties(intervalsPropsPtr);
0fa2d990   Erdogan Furkan   7616 - Adding lab...
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140

		// -- Position
		value = xmlGetProp(pNode_, (const xmlChar *)"position");
		if (value)
		{
			try
			{
				std::string strValue((const char *)value);
				if (strValue == "POS_RIGHT" || strValue == "POS_LEFT" || strValue == "POS_TOP" || strValue == "POS_BOTTOM")
					intervalsPropsPtr->setPosition(strValue);
				else
					intervalsPropsPtr->setPosition("POS_RIGHT");
			}
			catch (std::logic_error &e)
			{
				LOG4CXX_WARN(gLogger, "Intervals Legend position : " << e.what());
			}
			xmlFree(value);
		}
		// -- text
		value = xmlGetProp(pNode_, (const xmlChar *)"text");
		if (value)
		{
			intervalsPropsPtr->setText((const char *)value);
			// label->_text = (const char *)value;
			xmlFree(value);
		}
		// -- font name
		Font labelFont("sans-serif", 12);
		value = xmlGetProp(pNode_, (const xmlChar *)"fontName");
		if (value)
		{
			labelFont.setName((const char *)value);
			xmlFree(value);
		}

		// -- font size
		value = xmlGetProp(pNode_, (const xmlChar *)"fontSize");
		if (value)
		{

			labelFont.setSize(atoi((const char *)value));
			xmlFree(value);
		}

		// -- font style
		value = xmlGetProp(pNode_, (const xmlChar *)"fontStyle");
		if (value)
		{
			labelFont.setStyle(Font::getStyleByStr((const char *)value));
			xmlFree(value);
		}

		// -- font weight
		value = xmlGetProp(pNode_, (const xmlChar *)"fontWeight");
		if (value)
		{
			labelFont.setWeight(Font::getWeightByStr((const char *)value));
			xmlFree(value);
		}

		intervalsPropsPtr->setFont(labelFont);
e257cfb9   Benjamin Renard   First implementat...
141
142
143
144
145
146
147
	}
};

}
/* namespace plot */

#endif /* INTERVALSNODE_HH_ */