Blame view

src/Info/ParamTableNode.cc 12.7 KB
fbe3c2bb   Benjamin Renard   First commit
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
/**
 * ParamTableNode.cc
 *
 *  Created on: 10 oct. 2014
 *      Author: AKKA
 */

#include <sstream>
#include <algorithm>
#include <boost/shared_ptr.hpp>

#include "ParamTableNode.hh"

#include "Config.hh"
#include "Parameter.hh"
#include "ParamTable.hh"
#include "ParamInfo.hh"
#include "Constant.hh"

using namespace log4cxx;
using namespace AMDA::Parameters;
using namespace AMDA::XMLConfigurator;

namespace AMDA {
namespace Info {

/*
 * @brief Bounds table node
 */
class BoundsTable: public AMDA::XMLConfigurator::NodeCfg {
public:
	void proceed( xmlNodePtr pNode, const AMDA::Parameters::CfgContext& context) {
		LOG4CXX_DEBUG(gLogger, "BoundsTable::proceed");

		ParamInfo* pParamInfo =  context.get<ParamInfo*>();

		std::string paramId =  pParamInfo->getId();

		//Get name
		xmlChar* value = xmlGetProp(pNode, (const xmlChar *) "name");
		std::string name;
		if (value != NULL)
		{
			name = (char *)value;
			xmlFree(value);
		}

		//Get units
		value = xmlGetProp(pNode, (const xmlChar *) "units");
		std::string units;
		if (value != NULL)
		{
			units = (char *)value;
			xmlFree(value);
		}

		//Get dim
		value = xmlGetProp(pNode, (const xmlChar *) "dim");
		int dim = 0;
		if (value != NULL)
		{
			dim = atoi((char *)value);
			xmlFree(value);
		}

f2db3c16   Benjamin Renard   Support variable ...
66
67
68
69
70
71
72
73
74
		//Get variable
		value = xmlGetProp(pNode, (const xmlChar *) "variable");
		bool variable = false;
		if (value != NULL)
		{
			variable = (strcmp((char*)value,"true") == 0);
			xmlFree(value);
		}

fbe3c2bb   Benjamin Renard   First commit
75
76
77
78
79
80
81
82
83
84
		xmlChar* lboundsName  = NULL;
		try {
			if (!(lboundsName = xmlGetProp(pNode, (const xmlChar *) "boundsName"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@boundsName")
			}

			LOG4CXX_DEBUG(gLogger, "BoundsTable::proceed - Bounds name : " << lboundsName);

			boost::shared_ptr<ParamTable> table(new ParamBoundsTable(
f2db3c16   Benjamin Renard   Support variable ...
85
					paramId.c_str()));
fbe3c2bb   Benjamin Renard   First commit
86

f2db3c16   Benjamin Renard   Support variable ...
87
			table->addTableParam(ParamBoundsTable::_boundsParamKey, (const char*)lboundsName);
fbe3c2bb   Benjamin Renard   First commit
88
89
			table->setName(name);
			table->setUnits(units);
f2db3c16   Benjamin Renard   Support variable ...
90
			table->setIsVariable(variable);
fbe3c2bb   Benjamin Renard   First commit
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
141
142
143

			pParamInfo->addTable(dim, table);
		} catch (...) {
			if (lboundsName) {
				xmlFree(lboundsName);
			}
			throw;
		}
		if (lboundsName) {
			xmlFree(lboundsName);
		}
	}
};

/*
 * @brief Min / Max table node
 */
class MinMaxTable: public AMDA::XMLConfigurator::NodeCfg {
public:
	void proceed( xmlNodePtr pNode, const AMDA::Parameters::CfgContext& context) {
		LOG4CXX_DEBUG(gLogger, "MinMaxTable::proceed")

		ParamInfo* pParamInfo =  context.get<ParamInfo*>();

		std::string paramId =  pParamInfo->getId();

		//Get name
		xmlChar* value = xmlGetProp(pNode, (const xmlChar *) "name");
		std::string name;
		if (value != NULL)
		{
			name = (char *)value;
			xmlFree(value);
		}

		//Get units
		value = xmlGetProp(pNode, (const xmlChar *) "units");
		std::string units;
		if (value != NULL)
		{
			units = (char *)value;
			xmlFree(value);
		}

		//Get dim
		value = xmlGetProp(pNode, (const xmlChar *) "dim");
		int dim = 0;
		if (value != NULL)
		{
			dim = atoi((char *)value);
			xmlFree(value);
		}

f2db3c16   Benjamin Renard   Support variable ...
144
145
146
147
148
149
150
151
152
		//Get variable
		value = xmlGetProp(pNode, (const xmlChar *) "variable");
		bool variable = false;
		if (value != NULL)
		{
			variable = (strcmp((char*)value,"true") == 0);
			xmlFree(value);
		}

fbe3c2bb   Benjamin Renard   First commit
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
		xmlChar* lminTableName = NULL;
		xmlChar* lmaxTableName = NULL;

		try {
			if (!(lminTableName = xmlGetProp(pNode, (const xmlChar *) "minName"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@minName")
			}

			if (!(lmaxTableName = xmlGetProp(pNode, (const xmlChar *) "maxName"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@maxName")
			}

			LOG4CXX_DEBUG(gLogger, "MinMaxTable::proceed - Min Table name : " << lminTableName << " - Max Table name : " << lmaxTableName);

			boost::shared_ptr<ParamTable> table(new ParamMinMaxTable(
f2db3c16   Benjamin Renard   Support variable ...
170
					paramId.c_str()));
fbe3c2bb   Benjamin Renard   First commit
171

f2db3c16   Benjamin Renard   Support variable ...
172
173
			table->addTableParam(ParamMinMaxTable::_minParamKey, (const char*)lminTableName);
			table->addTableParam(ParamMinMaxTable::_maxParamKey, (const char*)lmaxTableName);
fbe3c2bb   Benjamin Renard   First commit
174
175
			table->setName(name);
			table->setUnits(units);
f2db3c16   Benjamin Renard   Support variable ...
176
			table->setIsVariable(variable);
fbe3c2bb   Benjamin Renard   First commit
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232

			pParamInfo->addTable(dim,table);

		} catch (...) {
			if (lminTableName)
				xmlFree(lminTableName);
			if (lmaxTableName)
				xmlFree(lmaxTableName);
			throw;
		}
		if (lminTableName)
			xmlFree(lminTableName);
		if (lmaxTableName)
			xmlFree(lmaxTableName);
	}
};

/*
 * @brief Center table node
 */
class CenterTable: public AMDA::XMLConfigurator::NodeCfg {
public:
	void proceed( xmlNodePtr pNode, const AMDA::Parameters::CfgContext& context) {
		LOG4CXX_DEBUG(gLogger, "CenterTable::proceed");

		ParamInfo* pParamInfo =  context.get<ParamInfo*>();

		std::string paramId =  pParamInfo->getId();

		//Get name
		xmlChar* value = xmlGetProp(pNode, (const xmlChar *) "name");
		std::string name;
		if (value != NULL)
		{
			name = (char *)value;
			xmlFree(value);
		}

		//Get units
		value = xmlGetProp(pNode, (const xmlChar *) "units");
		std::string units;
		if (value != NULL)
		{
			units = (char *)value;
			xmlFree(value);
		}

		//Get dim
		value = xmlGetProp(pNode, (const xmlChar *) "dim");
		int dim = 0;
		if (value != NULL)
		{
			dim = atoi((char *)value);
			xmlFree(value);
		}

f2db3c16   Benjamin Renard   Support variable ...
233
234
235
236
237
238
239
240
241
		//Get variable
		value = xmlGetProp(pNode, (const xmlChar *) "variable");
		bool variable = false;
		if (value != NULL)
		{
			variable = (strcmp((char*)value,"true") == 0);
			xmlFree(value);
		}

fbe3c2bb   Benjamin Renard   First commit
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
		xmlChar* lcenterName  = NULL;
		xmlChar* lsize = NULL;
		try {
			if (!(lcenterName = xmlGetProp(pNode, (const xmlChar *) "centerName"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@centerName")
			}

			LOG4CXX_DEBUG(gLogger, "BoundsTable::proceed - Center name : " << lcenterName);

			if (!(lsize = xmlGetProp(pNode, (const xmlChar *) "size"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@size")
			}

			boost::shared_ptr<ParamTable> table(new ParamCenterTable(
f2db3c16   Benjamin Renard   Support variable ...
258
					paramId.c_str(), atof((const char*)lsize)));
fbe3c2bb   Benjamin Renard   First commit
259

f2db3c16   Benjamin Renard   Support variable ...
260
			table->addTableParam(ParamCenterTable::_centersParamKey, (const char*)lcenterName);
fbe3c2bb   Benjamin Renard   First commit
261
262
			table->setName(name);
			table->setUnits(units);
f2db3c16   Benjamin Renard   Support variable ...
263
			table->setIsVariable(variable);
fbe3c2bb   Benjamin Renard   First commit
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284

			pParamInfo->addTable(dim, table);
		} catch (...) {
			if (lcenterName) {
				xmlFree(lcenterName);
			}
			if (lsize) {
				xmlFree(lsize);
			}
			throw;
		}
		if (lcenterName) {
			xmlFree(lcenterName);
		}
		if (lsize) {
			xmlFree(lsize);
		}
	}
};

/*
f5c53312   Benjamin Renard   Get calib info in...
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
 * @brief Center table node with band width
 */
class CenterWidthTable: public AMDA::XMLConfigurator::NodeCfg {
public:
	void proceed( xmlNodePtr pNode, const AMDA::Parameters::CfgContext& context) {
		LOG4CXX_DEBUG(gLogger, "CenterWidthTable::proceed");

		ParamInfo* pParamInfo =  context.get<ParamInfo*>();

		std::string paramId =  pParamInfo->getId();

		//Get name
		xmlChar* value = xmlGetProp(pNode, (const xmlChar *) "name");
		std::string name;
		if (value != NULL)
		{
			name = (char *)value;
			xmlFree(value);
		}

		//Get units
		value = xmlGetProp(pNode, (const xmlChar *) "units");
		std::string units;
		if (value != NULL)
		{
			units = (char *)value;
			xmlFree(value);
		}

		//Get dim
		value = xmlGetProp(pNode, (const xmlChar *) "dim");
		int dim = 0;
		if (value != NULL)
		{
			dim = atoi((char *)value);
			xmlFree(value);
		}

f2db3c16   Benjamin Renard   Support variable ...
323
324
325
326
327
328
329
330
331
		//Get variable
		value = xmlGetProp(pNode, (const xmlChar *) "variable");
		bool variable = false;
		if (value != NULL)
		{
			variable = (strcmp((char*)value,"true") == 0);
			xmlFree(value);
		}

f5c53312   Benjamin Renard   Get calib info in...
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
		xmlChar* lcenterName  = NULL;
		xmlChar* lwidthName   = NULL;
		try {
			if (!(lcenterName = xmlGetProp(pNode, (const xmlChar *) "centerName"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@centerName")
			}

			LOG4CXX_DEBUG(gLogger, "CenterWidthTable::proceed - Center name : " << lcenterName);

			if (!(lwidthName = xmlGetProp(pNode, (const xmlChar *) "widthName"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@centerName")
			}

			LOG4CXX_DEBUG(gLogger, "CenterWidthTable::proceed - Width name : " << lwidthName);

			boost::shared_ptr<ParamTable> table(new ParamCenterWidthTable(
f2db3c16   Benjamin Renard   Support variable ...
350
					paramId.c_str()));
f5c53312   Benjamin Renard   Get calib info in...
351

f2db3c16   Benjamin Renard   Support variable ...
352
353
			table->addTableParam(ParamCenterWidthTable::_centersParamKey, (const char*)lcenterName);
			table->addTableParam(ParamCenterWidthTable::_widthsParamKey, (const char*)lwidthName);
f5c53312   Benjamin Renard   Get calib info in...
354
355
			table->setName(name);
			table->setUnits(units);
f2db3c16   Benjamin Renard   Support variable ...
356
			table->setIsVariable(variable);
f5c53312   Benjamin Renard   Get calib info in...
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377

			pParamInfo->addTable(dim, table);
		} catch (...) {
			if (lcenterName) {
				xmlFree(lcenterName);
			}
			if (lwidthName) {
				xmlFree(lwidthName);
			}
			throw;
		}
		if (lcenterName) {
			xmlFree(lcenterName);
		}
		if (lwidthName) {
			xmlFree(lwidthName);
		}
	}
};

/*
65c661e8   Benjamin Renard   Table definition ...
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
 * @brief Center table node - Bounds automatically computed to be at the center of two consecutive channels
 */
class CenterAutoTable: public AMDA::XMLConfigurator::NodeCfg {
public:
	void proceed( xmlNodePtr pNode, const AMDA::Parameters::CfgContext& context) {
		LOG4CXX_DEBUG(gLogger, "CenterAutoTable::proceed");

		ParamInfo* pParamInfo =  context.get<ParamInfo*>();

		std::string paramId =  pParamInfo->getId();

		//Get name
		xmlChar* value = xmlGetProp(pNode, (const xmlChar *) "name");
		std::string name;
		if (value != NULL)
		{
			name = (char *)value;
			xmlFree(value);
		}

		//Get units
		value = xmlGetProp(pNode, (const xmlChar *) "units");
		std::string units;
		if (value != NULL)
		{
			units = (char *)value;
			xmlFree(value);
		}

		//Get dim
		value = xmlGetProp(pNode, (const xmlChar *) "dim");
		int dim = 0;
		if (value != NULL)
		{
			dim = atoi((char *)value);
			xmlFree(value);
		}

f2db3c16   Benjamin Renard   Support variable ...
416
417
418
419
420
421
422
423
424
		//Get variable
		value = xmlGetProp(pNode, (const xmlChar *) "variable");
		bool variable = false;
		if (value != NULL)
		{
			variable = (strcmp((char*)value,"true") == 0);
			xmlFree(value);
		}

65c661e8   Benjamin Renard   Table definition ...
425
		xmlChar* lcenterName  = NULL;
65c661e8   Benjamin Renard   Table definition ...
426
		try {
c6a67968   Benjamin Renard   Fix some violatio...
427
			xmlChar* llog  = NULL;
65c661e8   Benjamin Renard   Table definition ...
428
429
430
431
432
433
434
435
436
437
438
439
440
441
			if (!(lcenterName = xmlGetProp(pNode, (const xmlChar *) "centerName"))) {
				ERROR_EXCEPTION(
						ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@centerName")
			}

			LOG4CXX_DEBUG(gLogger, "CenterAutoTable::proceed - Center name : " << lcenterName);

			bool isLog = false;
			if ((llog = xmlGetProp(pNode, (const xmlChar *) "log"))) {
				isLog = (strcmp((char*)llog, "true") == 0);
				xmlFree(llog);
			}

			boost::shared_ptr<ParamTable> table(new ParamCenterAutoTable(
f2db3c16   Benjamin Renard   Support variable ...
442
					paramId.c_str(), isLog));
65c661e8   Benjamin Renard   Table definition ...
443

f2db3c16   Benjamin Renard   Support variable ...
444
			table->addTableParam(ParamCenterAutoTable::_centersParamKey, (const char*)lcenterName);
65c661e8   Benjamin Renard   Table definition ...
445
446
			table->setName(name);
			table->setUnits(units);
f2db3c16   Benjamin Renard   Support variable ...
447
			table->setIsVariable(variable);
65c661e8   Benjamin Renard   Table definition ...
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462

			pParamInfo->addTable(dim, table);
		} catch (...) {
			if (lcenterName) {
				xmlFree(lcenterName);
			}
			throw;
		}
		if (lcenterName) {
			xmlFree(lcenterName);
		}
	}
};

/*
e7ea756d   Benjamin Renard   Implements tables...
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
 * @brief Link table node - Link to a table defined for another parameter
 */
class LinkTableNode: public AMDA::XMLConfigurator::NodeCfg {
public:
	void proceed( xmlNodePtr pNode, const AMDA::Parameters::CfgContext& context) {
		LOG4CXX_DEBUG(gLogger, "LinkTable::proceed");

		ParamInfo* pParamInfo =  context.get<ParamInfo*>();

		std::string paramId =  pParamInfo->getId();

		//Get origin parameter Id
		xmlChar* value = xmlGetProp(pNode, (const xmlChar *) "originParamId");
		std::string originParamId;
		if (value != NULL)
		{
			originParamId = (char *)value;
			xmlFree(value);
		}
		else {
			xmlFree(value);
			ERROR_EXCEPTION(
					ERROR_MANDATORY_ATTRIBUTE_MISSING << pNode->name << "@originParamId")
		}

		//Get origin table dim
		value = xmlGetProp(pNode, (const xmlChar *) "originTableDim");
		int originTableDim = 0;
		if (value != NULL)
		{
			originTableDim = atoi((char *)value);
			xmlFree(value);
		}

		//Get dim
		value = xmlGetProp(pNode, (const xmlChar *) "dim");
		int dim = 0;
		if (value != NULL)
		{
			dim = atoi((char *)value);
			xmlFree(value);
		}

		boost::shared_ptr<ParamTable> table(new LinkTable(paramId.c_str(), originParamId.c_str()));
		(reinterpret_cast<LinkTable*>(table.get()))->setOriginTableDim(originTableDim);

		pParamInfo->addTable(dim, table);
	}
};

/*
fbe3c2bb   Benjamin Renard   First commit
514
515
516
517
518
519
520
 * @brief table node
 */
ParamTableNode::ParamTableNode() : AMDA::XMLConfigurator::NodeGrpCfg()
{
	getChildList()["boundsTable"]=NodeCfgSPtr(new BoundsTable);
	getChildList()["minMaxTable"]=NodeCfgSPtr(new MinMaxTable);
	getChildList()["centerTable"]=NodeCfgSPtr(new CenterTable);
f5c53312   Benjamin Renard   Get calib info in...
521
	getChildList()["centerWidthTable"]=NodeCfgSPtr(new CenterWidthTable);
65c661e8   Benjamin Renard   Table definition ...
522
	getChildList()["centerAutoTable"]=NodeCfgSPtr(new CenterAutoTable);
e7ea756d   Benjamin Renard   Implements tables...
523
	getChildList()["linkTable"]=NodeCfgSPtr(new LinkTableNode);
fbe3c2bb   Benjamin Renard   First commit
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
}

ParamTableNode::~ParamTableNode()
{
}

void ParamTableNode::proceed(xmlNodePtr pNode, const AMDA::Parameters::CfgContext& pContext)
{
	LOG4CXX_DEBUG(gLogger, "ParamTableNode::proceed");

	AMDA::Parameters::CfgContext lContext(pContext);
	ParamInfo* pParamInfo =  pContext.get<ParamInfo*>();
	lContext.push<ParamInfo *>(pParamInfo);

	NodeGrpCfg::proceed(pNode, lContext);
}

}/* namespace Info */
} /* namespace AMDA */