Blame view

src/Info/ParamTable.cc 31.4 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
/**
 * ParamTable.cc
 *
 *  Created on: 10 oct. 2014
 *  Author: AKKA
 */
#include "ParamTable.hh"

#include "Parameter.hh"
f2db3c16   Benjamin Renard   Support variable ...
10
#include "ParamData.hh"
3fe8b83d   Benjamin Renard   Get parameter inf...
11
12
#include "ParamInfo.hh"
#include "ParamMgr.hh"
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
13
14
#include "Process.hh"
#include <algorithm>
fbe3c2bb   Benjamin Renard   First commit
15
16
17
18

using namespace log4cxx;

namespace AMDA {
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
19
20
    namespace Info {

0051287c   Hacene SI HADJ MOHAND   starting us
21
#define PUSHINFO(infoMap, key, value) if(!value.empty())infoMap.push_back(std::pair<std::string,std::string>(key,value))
fbe3c2bb   Benjamin Renard   First commit
22

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
23
        LoggerPtr ParamTable::_logger(Logger::getLogger("AMDA-Kernel.ParamTable"));
fbe3c2bb   Benjamin Renard   First commit
24

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
25
26
27
        ParamTable::ParamTable(const char *paramId) : _paramId(paramId),
        _tableName(""), _tableUnits(""), _variable("false") {
        }
fbe3c2bb   Benjamin Renard   First commit
28

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
29
30
        ParamTable::~ParamTable() {
        }
fbe3c2bb   Benjamin Renard   First commit
31

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
32
33
34
        std::string ParamTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) {
            return "";
        }
3fe8b83d   Benjamin Renard   Get parameter inf...
35

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
36
37
38
39
40
41
        /*
         * @brief Get param id
         */
        std::string ParamTable::getParamId(void) {
            return _paramId;
        }
7f7e3b39   Benjamin Renard   Fix a bug with st...
42

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
43
44
45
46
47
48
        /*
         * @brief Set name of the table
         */
        void ParamTable::setName(std::string name) {
            _tableName = name;
        }
fbe3c2bb   Benjamin Renard   First commit
49

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
50
51
52
53
54
55
56
57
58
59
60
61
62
        /*
         * @brief Get name of the table
         */
        std::string ParamTable::getName(ParameterManager* parameterManager) {
            if (_tableName.empty() && _variable) {
                std::string paramKeyForInfo = getTableParamKeyForInfo(parameterManager);
                if (!paramKeyForInfo.empty()) {
                    std::string tableParam = getTableParamByKey(parameterManager, paramKeyForInfo);
                    AMDA::Info::ParamInfoSPtr paramTableInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(tableParam);
                    if (paramTableInfo != nullptr)
                        return paramTableInfo->getName();
                }
            }
fbe3c2bb   Benjamin Renard   First commit
63

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
64
65
            return _tableName;
        }
fbe3c2bb   Benjamin Renard   First commit
66

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
        /*
         * @brief Set units
         */
        void ParamTable::setUnits(std::string units) {
            _tableUnits = units;
        }

        /*
         * @brief Get units of the table
         */
        std::string ParamTable::getUnits(ParameterManager* parameterManager) {
            if (_tableName.empty() && _variable) {
                std::string paramKeyForInfo = getTableParamKeyForInfo(parameterManager);
                if (!paramKeyForInfo.empty()) {
                    std::string tableParam = getTableParamByKey(parameterManager, paramKeyForInfo);
                    AMDA::Info::ParamInfoSPtr paramTableInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(tableParam);
                    if (paramTableInfo != nullptr)
                        return paramTableInfo->getUnits();
0051287c   Hacene SI HADJ MOHAND   starting us
85
                }
0051287c   Hacene SI HADJ MOHAND   starting us
86
            }
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103

            return _tableUnits;
        }

        /*
         * @brief Set isVariable attribute
         */
        void ParamTable::setIsVariable(bool isVariable) {
            _variable = isVariable;
        }

        /*
         * @brief Get if it's a variable table
         */
        bool ParamTable::isVariable(ParameterManager* /*parameterManager*/) {
            return _variable;
        }
236cd24c   Hacene SI HADJ MOHAND   working in full v...
104
105
106
107
108
109
110
111
112
113
114
        
           /*
         * @brief Set isVariable attribute
         */
        void ParamTable::setIsFullVariable(bool isFullVariable) {
            _fullVariable = isFullVariable;
        }

        /*
         * @brief Get if it's a variable table
         */
a5ce87d1   Benjamin Renard   Cleanup to remove...
115
        bool ParamTable::isFullVariable(ParameterManager* /*parameterManager*/) {
93bba7b7   Hacene SI HADJ MOHAND   ok for varable wi...
116
            return _fullVariable;
79366e37   Hacene SI HADJ MOHAND   trying to add ful...
117
118
119
120
121
122
123
124
125
126
127
128
129
130
        }
        
        void ParamTable::addRelatedParams(ParameterManager *parameterManager, std::string paramId, std::list<std::string>relatedParams){
             AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramId);
             if(paramInfo == NULL)
                 return;
              const std::vector<std::string>& paramLinkedParams = paramInfo->getLinkedParamList();
              if(paramLinkedParams.empty())
                  return;
              for (auto pId : paramLinkedParams){
                  relatedParams.push_back(pId);
                  addRelatedParams(parameterManager, paramId, relatedParams);
              }
              return;
236cd24c   Hacene SI HADJ MOHAND   working in full v...
131
        }
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180

        void ParamTable::addTableParam(std::string key, std::string name) {
            _tableParams[key] = name;
        }

        std::string ParamTable::getTableParamByKey(ParameterManager* /*parameterManager*/, std::string key) {
            return _tableParams[key];
        }

        std::map<std::string, std::string>& ParamTable::getTableParams(ParameterManager* /*parameterManager*/) {
            return _tableParams;
        }

        std::vector<double> ParamTable::getConstantTableParamValuesByKey(ParameterManager *parameterManager, std::string key) {
            std::vector<double> paramValues;
            ParameterSPtr tmpParam = parameterManager->getParameter(_paramId);
            if (tmpParam == nullptr)
                return paramValues;
            AMDA::Parameters::Parameter::InfoList lInfoList = tmpParam->getInfoList();
            if (_tableParams.find(key) == _tableParams.end())
                return paramValues;
            std::string tableParamName = _tableParams[key];
            if (lInfoList.find(tableParamName) == lInfoList.end())
                return paramValues;
            paramValues = *lInfoList[tableParamName].get();
            return paramValues;
        }

        std::vector<double> ParamTable::getVariableTableParamValuesByKey(ParameterManager* /*parameterManager*/, std::map<std::string, std::vector<double>>*paramsTableData, std::string key) {
            std::vector<double> paramValues;
            if (paramsTableData == NULL)
                return paramValues;
            if (paramsTableData->find(key) == paramsTableData->end())
                return paramValues;
            return (*paramsTableData)[key];
        }

        std::vector<double> ParamTable::getTableParamValuesByKey(ParameterManager *parameterManager, std::map<std::string, std::vector<double>>*paramsTableData, std::string key) {
            if (_variable)
                return getVariableTableParamValuesByKey(parameterManager, paramsTableData, key);
            else
                return getConstantTableParamValuesByKey(parameterManager, key);
        }

        void ParamTable::addTableInfo(ParameterManager *parameterManager, int dim, std::vector<std::pair<std::string, std::string>>&infoMap) {
            std::stringstream tableDim;
            tableDim << dim;

            std::stringstream infoKey;
0051287c   Hacene SI HADJ MOHAND   starting us
181
            infoKey.str("");
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
182
183
            infoKey << PARAMETER_TABLE << "[" << tableDim.str() << "]";
            PUSHINFO(infoMap, infoKey.str(), this->getName(parameterManager));
0051287c   Hacene SI HADJ MOHAND   starting us
184
185

            infoKey.str("");
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
186
            infoKey << PARAMETER_TABLE_UNITS << "[" << tableDim.str() << "]";
c7f96386   Hacene SI HADJ MOHAND   6036
187
188
189
190
191
            if (this->getUnits(parameterManager) ==""){
                                            PUSHINFO(infoMap, infoKey.str(), std::string(UNSPECIFIED_UNIT));
            }else{
                                             PUSHINFO(infoMap, infoKey.str(), this->getUnits(parameterManager));
                     }
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
192
193
194
195
196
197
            if (this->isVariable(parameterManager)) {
                this->addVariableTableInfo(parameterManager, dim, infoMap);
            } else {
                //build min and max values list
                std::stringstream tableMinValues;
                std::stringstream tableMaxValues;
f3cd5351   Hacene SI HADJ MOHAND   us ok
198
199
                int size_ = this->getSize(parameterManager);
                for (int i = 0; i< size_; ++i) {
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
                    if (i > 0) {
                        tableMinValues << ",";
                        tableMaxValues << ",";
                    }
                    AMDA::Info::t_TableBound bound = this->getBound(parameterManager, i);
                    tableMinValues << bound.min;
                    tableMaxValues << bound.max;
                }
                infoKey.str("");
                infoKey << PARAMETER_TABLE_MINVAL << "[" << tableDim.str() << "]";
                PUSHINFO(infoMap, infoKey.str(), tableMinValues.str());

                infoKey.str("");
                infoKey << PARAMETER_TABLE_MAXVAL << "[" << tableDim.str() << "]";
                PUSHINFO(infoMap, infoKey.str(), tableMaxValues.str());
            }
        }

7abf24a0   Hacene SI HADJ MOHAND   correcting bug
218
        void ParamTable::addSemiVariableTableInfo(ParameterManager* parameterManager, int dim, std::string paramId, std::string tabKey, std::vector<std::pair<std::string, std::string>>&infoMap) {
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
219
220
            AMDA::Parameters::ParameterSPtr pParam = parameterManager->getParameter(paramId);
            Process* lProcess = dynamic_cast<Process*> (pParam->getDataWriterTemplate().get());
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
221
            if (lProcess != NULL) {
f3cd5351   Hacene SI HADJ MOHAND   us ok
222
                AMDA::Parameters::SemiVariableTable semiVariableTable = lProcess ->getSemiVariableTable();
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
223
224
225
                std::list<std::string>::iterator it;
                it = std::find(_printedTables.begin(), _printedTables.end(), paramId);
                if (!semiVariableTable.tabHeader.empty() && it == _printedTables.end()) {
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
226
227
228
229
230
231
232
233
                    std::stringstream head;
                    head.str("");
                    head << "mode" << " ";
                    for (auto h : semiVariableTable.tabHeader) {
                        head << h << " ";
                    }
                    PUSHINFO(infoMap, "", head.str());
                    // recuperer les centres 
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
234
                    bool variableSizes = false;
a5ce87d1   Benjamin Renard   Cleanup to remove...
235
                    //unsigned int nModes = semiVariableTable.tabValues.size();
93bba7b7   Hacene SI HADJ MOHAND   ok for varable wi...
236
237
                    unsigned int index =0;
                    unsigned nValues = 0;
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
238
                    for (auto tabValues : semiVariableTable.tabValues) {
93bba7b7   Hacene SI HADJ MOHAND   ok for varable wi...
239
240
                        if (index == 0)
                             nValues = tabValues.second.size();
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
241
242
                        if (tabValues.second.size() != nValues)
                            variableSizes = true;
51483991   Hacene SI HADJ MOHAND   correcting mex_ls
243
                        ++index;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
244
                    }
c0955cd4   Hacene SI HADJ MOHAND   ok for juno jedi
245
                    if (variableSizes || !semiVariableTable.calculateBounds) {
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
246
                        std::ostringstream values;
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
247
                        for (auto tabValues : semiVariableTable.tabValues) {
236cd24c   Hacene SI HADJ MOHAND   working in full v...
248
                            values << tabValues.first << " ";
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
249
250
251
252
253
254
255
                            for (unsigned int i = 0; i < nValues; i++) {
                                if (i < tabValues.second.size()) {
                                    values << std::to_string(tabValues.second[i]) << " ";
                                } else {
                                    values << "NAN ";
                                }
                            }
236cd24c   Hacene SI HADJ MOHAND   working in full v...
256
257
                            PUSHINFO(infoMap, "", values.str());
                            values.str("");
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
258
259
260
261
262
                        }
                    } else {
                        std::vector<double> energyVec;
                        std::map<std::string, std::vector<double>> paramsTableData;
                        std::map<int, std::vector<double>> semiVariableTableData;
2929f621   Hacene SI HADJ MOHAND   min max coorectio...
263
264
265
266
267
                        int nMode=0;
                        for (auto tabValues : semiVariableTable.tabValues) {
                        paramsTableData[tabKey] = tabValues.second;
                        for (unsigned int j = 0; j < nValues; ++j) {
                                t_TableBound bound = getBound(parameterManager, j , &paramsTableData);
51483991   Hacene SI HADJ MOHAND   correcting mex_ls
268
                                if(bound.min != j/2 && bound.max !=j/2+1){
2929f621   Hacene SI HADJ MOHAND   min max coorectio...
269
270
                                semiVariableTableData[nMode].push_back(bound.min);
                                semiVariableTableData[nMode + 1].push_back(bound.max);
51483991   Hacene SI HADJ MOHAND   correcting mex_ls
271
                                }
2929f621   Hacene SI HADJ MOHAND   min max coorectio...
272
273
274
                            
                        }
                        nMode +=2;
d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
                        }
                        int l = 0;
                        int k = 0;
                        for (auto v : semiVariableTableData) {
                            std::ostringstream values;
                            std::string born;
                            (l % 2 == 0) ? born = " Min " : born = " Max ";
                            values << std::to_string(k) << born;
                            // Convert all doubles to string ","
                            std::copy(v.second.begin(), v.second.end(),
                                    std::ostream_iterator<double>(values, " "));
                            PUSHINFO(infoMap, "", values.str());
                            values.str("");
                            if (l % 2 != 0)
                                k++;
                            l++;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
291

d7d55a02   Hacene SI HADJ MOHAND   ok for getClbInfo...
292
                        }
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
293
294
295
                    }
                    _printedTables.push_back(paramId);
                }
236cd24c   Hacene SI HADJ MOHAND   working in full v...
296

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
297
298
299
300
301
            }
            AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramId);
            const std::vector<std::string>& paramLinkedParams = paramInfo->getLinkedParamList();
            for (auto pId : paramLinkedParams)
                addSemiVariableTableInfo(parameterManager, dim, pId, tabKey, infoMap);
7abf24a0   Hacene SI HADJ MOHAND   correcting bug
302
            return;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
303
304
305
306
307
308
309
        }

        void ParamTable::addVariableTableInfo(ParameterManager * parameterManager, int dim, std::vector<std::pair<std::string, std::string>>&tableInfo) {
            std::map<std::string, std::string>& tableParams = this->getTableParams(parameterManager);
            if (!tableParams.empty()) {
                std::stringstream infoKey;
                int i = 0;
236cd24c   Hacene SI HADJ MOHAND   working in full v...
310
                for (auto tableParam : tableParams) {
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
311
                    infoKey.str("");
236cd24c   Hacene SI HADJ MOHAND   working in full v...
312
313
314
                    infoKey << VARIABLE_PARAMETER_TABLE << tableParam.first << "[" << i << "]";
                    PUSHINFO(tableInfo, infoKey.str(), tableParam.second);
                    AMDA::Parameters::ParameterSPtr variableTableParam = parameterManager->getParameter(tableParam.second);
a3eb6f22   Hacene SI HADJ MOHAND   clen up
315
                    addSemiVariableTableInfo(parameterManager, dim, tableParam.second, tableParam.first, tableInfo);
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
                    i++;
                }
            }
        }

        std::string ParamBoundsTable::_boundsParamKey = "TABLEPARAM_BOUNDS";

        ParamBoundsTable::ParamBoundsTable(const char *paramId) :
        ParamTable(paramId) {
        }

        std::string ParamBoundsTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) {
            return ParamBoundsTable::_boundsParamKey;
        }

        /*
         * @brief Get size of the table
         */
        int ParamBoundsTable::getSize(ParameterManager *parameterManager) {
            if (!_variable) {
                std::vector<double> boundsValues = getConstantTableParamValuesByKey(parameterManager, ParamBoundsTable::_boundsParamKey);
                return boundsValues.size() - 1;
            } else {
                return 0;
            }
        }

        /*
         * @brief Get a bounds for a specified index
         */
        t_TableBound ParamBoundsTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map<std::string, std::vector<double>>*paramsTableData) {
            t_TableBound bound;
            bound.index = index;

            std::vector<double> boundsValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamBoundsTable::_boundsParamKey);

            if (boundsValues.empty() || (index >= boundsValues.size() - 1)) {
                LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }
            bound.min = std::min(boundsValues[index], boundsValues[index + 1]);
            bound.max = std::max(boundsValues[index], boundsValues[index + 1]);

            return bound;
        }

        std::string ParamCenterTable::_centersParamKey = "TABLEPARAM_CENTERS";

        ParamCenterTable::ParamCenterTable(const char *paramId, double size) :
        ParamTable(paramId), _size(size) {
        }

        std::string ParamCenterTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) {
            return ParamCenterTable::_centersParamKey;
        }

        /*
         * @brief Get size of the table
         */
        int ParamCenterTable::getSize(ParameterManager *parameterManager) {
            if (!_variable) {
                std::vector<double> centersValues = getConstantTableParamValuesByKey(parameterManager, ParamCenterTable::_centersParamKey);
                return centersValues.size();
            } else {
                return 0;
            }
        }

        /*
         * @brief Get a bound for a specified index
         */
        t_TableBound ParamCenterTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map<std::string, std::vector<double>>*paramsTableData) {
            t_TableBound bound;
            bound.index = index;

            std::vector<double> centersValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterTable::_centersParamKey);

            if (index >= centersValues.size()) {
                LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }

            if (!std::isnan(centersValues[index])) {
                bound.min = centersValues[index] - _size / 2.;
                bound.max = centersValues[index] + _size / 2.;
            } else {
                bound.min = NAN;
                bound.max = NAN;
            }

            return bound;
        }

        std::string ParamCenterWidthTable::_centersParamKey = "TABLEPARAM_CENTERS";
        std::string ParamCenterWidthTable::_widthsParamKey = "TABLEPARAM_WIDTHS";

        ParamCenterWidthTable::ParamCenterWidthTable(const char *paramId) :
        ParamTable(paramId) {
        }

        std::string ParamCenterWidthTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) {
            return ParamCenterWidthTable::_centersParamKey;
        }

        /*
         * @brief Get size of the table
         */
        int ParamCenterWidthTable::getSize(ParameterManager *parameterManager) {
            if (!_variable) {
                std::vector<double> centersValues = getConstantTableParamValuesByKey(parameterManager, ParamCenterWidthTable::_centersParamKey);
                return centersValues.size();
            } else {
                return 0;
            }
        }

        /*
         * @brief Get a bound for a specified index
         */
        t_TableBound ParamCenterWidthTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map<std::string, std::vector<double>>*paramsTableData) {
            t_TableBound bound;
            bound.index = index;

            std::vector<double> centersValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterWidthTable::_centersParamKey);
            std::vector<double> widthsValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterWidthTable::_widthsParamKey);

            if ((index >= centersValues.size()) || (index >= widthsValues.size())) {
                LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }

            if (!std::isnan(centersValues[index]) && !std::isnan(widthsValues[index])) {
                bound.min = centersValues[index] - widthsValues[index] / 2.;
                bound.max = centersValues[index] + widthsValues[index] / 2.;
            } else {
                bound.min = NAN;
                bound.max = NAN;
            }

            return bound;
        }
03aa741e   Hacene SI HADJ MOHAND   adding table but ...
463
464
465
466
467
468
469
470
471
472
473
        
        std::string EmbeddedCenterTable::_paramKey = "TABLEPARAM_CENTERS";
        
        EmbeddedCenterTable::EmbeddedCenterTable(const char *paramId,  std::vector<double> & centersValue, bool logMode):
                          ParamTable(paramId),  _centersValues(centersValue), _log(logMode){
        }
        
          std::string EmbeddedCenterTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) {
            return EmbeddedCenterTable::_paramKey; 
        }
          
f3cd5351   Hacene SI HADJ MOHAND   us ok
474
      int EmbeddedCenterTable::getSize(ParameterManager*  /*parameterManager*/) {
03aa741e   Hacene SI HADJ MOHAND   adding table but ...
475
476
477
478
                 return _centersValues.size();
        }
             
             
f3cd5351   Hacene SI HADJ MOHAND   us ok
479
            t_TableBound EmbeddedCenterTable::getBound(ParameterManager* /*parameterManager*/, unsigned int index, std::map<std::string, std::vector<double>>* /*paramsTableData*/) {
03aa741e   Hacene SI HADJ MOHAND   adding table but ...
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
            t_TableBound bound;
            bound.index = index;

            if (index >= _centersValues.size()) {
                LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }

            //Compute bounds

            if (_centersValues.size() <= 1) {
                LOG4CXX_ERROR(_logger, "Table dimension too small to compute bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }
f3cd5351   Hacene SI HADJ MOHAND   us ok
498
499
500
501
502
503
504
505
506
            if(index == 0 ){
                bound.min = 1.0/((1.0/_centersValues[0]+ 1.0/_centersValues[1])/2);
                bound.max = 2.0*_centersValues[0];
            }else if(index ==_centersValues.size() -1){
                bound.max = 1.0/((1.0/_centersValues[index]+ 1.0/_centersValues[index-1])/2);
                bound.min = _centersValues[index]/2;
            }else{
                bound.min = 1.0/((1.0/_centersValues[index]+ 1.0/_centersValues[index+1])/2);
                bound.max = 1.0/((1.0/_centersValues[index]+ 1.0/_centersValues[index-1])/2);
03aa741e   Hacene SI HADJ MOHAND   adding table but ...
507
            }
03aa741e   Hacene SI HADJ MOHAND   adding table but ...
508
509
510
511
512
513
514
            return bound;
        }
             
        
        /**
         *  ParamCenterAutoTable
         */
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
515
516

        std::string ParamCenterAutoTable::_centersParamKey = "TABLEPARAM_CENTERS";
03aa741e   Hacene SI HADJ MOHAND   adding table but ...
517
        
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563

        ParamCenterAutoTable::ParamCenterAutoTable(const char *paramId, bool log) :
        ParamTable(paramId), _log(log) {
        }

        std::string ParamCenterAutoTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) {
            return ParamCenterAutoTable::_centersParamKey;
        }

        /*
         * @brief Get size of the table
         */
        int ParamCenterAutoTable::getSize(ParameterManager *parameterManager) {
            if (!_variable) {
                std::vector<double> centersValues = getConstantTableParamValuesByKey(parameterManager, ParamCenterAutoTable::_centersParamKey);
                return centersValues.size();
            } else {
                return 0;
            }
        }

        /*
         * @brief Get a bound for a specified index
         */
        t_TableBound ParamCenterAutoTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map<std::string, std::vector<double>>*paramsTableData) {
            t_TableBound bound;
            bound.index = index;

            std::vector<double> centersValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterAutoTable::_centersParamKey);

            if (index >= centersValues.size()) {
                LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }

            //Compute bounds

            if (centersValues.size() <= 1) {
                LOG4CXX_ERROR(_logger, "Table dimension too small to compute bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }

8cba7bcf   Benjamin Renard   Fix centerAutoTab...
564
565
566
567
568
569
570
571
572
573
            std::vector<double> workingValues;
            for (std::vector<double>::iterator it = centersValues.begin(); it != centersValues.end(); ++it) {
                if (_log) {
                    workingValues.push_back(log10(*it));
                }
                else {
                    workingValues.push_back(*it);
                }
            }

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
574
575
576
577
            double minus = 0.;
            double plus = 0.;

            if (index == 0) {
8cba7bcf   Benjamin Renard   Fix centerAutoTab...
578
579
                if (!std::isnan(workingValues[1]) && !std::isnan(workingValues[0])) {
                        plus = (workingValues[1] - workingValues[0]) / 2.;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
580
581
582
                } else
                    plus = NAN;
                minus = plus;
8cba7bcf   Benjamin Renard   Fix centerAutoTab...
583
584
585
            } else if (index == workingValues.size() - 1) {
                if (!std::isnan(workingValues[workingValues.size() - 1]) && !std::isnan(workingValues[workingValues.size() - 2])) {
                        minus = (workingValues[workingValues.size() - 1] - workingValues[workingValues.size() - 2]) / 2.;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
586
587
588
                } else
                    minus = NAN;
                plus = minus;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
589
            } else {
8cba7bcf   Benjamin Renard   Fix centerAutoTab...
590
591
                if (!std::isnan(workingValues[index]) && !std::isnan(workingValues[index - 1]))
                    minus = (workingValues[index] - workingValues[index - 1]) / 2.;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
592
                else
8cba7bcf   Benjamin Renard   Fix centerAutoTab...
593
594
595
                    minus = NAN;
                if (!std::isnan(workingValues[index + 1]) && !std::isnan(workingValues[index]))
                    plus = (workingValues[index + 1] - workingValues[index]) / 2.;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
596
                else
8cba7bcf   Benjamin Renard   Fix centerAutoTab...
597
                    plus = NAN;
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
598
599
            }

8cba7bcf   Benjamin Renard   Fix centerAutoTab...
600
601
602
603
604
605
606
607
608
            if (!std::isnan(minus))
                bound.min = workingValues[index] - minus;
            else
                bound.min = NAN;
            if (!std::isnan(plus))
                bound.max = workingValues[index] + plus;
            else
                bound.max = NAN;

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
609
610
611
612
613
614
            if (bound.min > bound.max) {
                double temp = bound.max;
                bound.max = bound.min;
                bound.min = temp;
            }

8cba7bcf   Benjamin Renard   Fix centerAutoTab...
615
616
617
618
619
            if (_log) {
                bound.min = pow(10,bound.min);
                bound.max = pow(10,bound.max);
            }

b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
            return bound;
        }


        std::string ParamMinMaxTable::_minParamKey = "TABLEPARAM_MIN";
        std::string ParamMinMaxTable::_maxParamKey = "TABLEPARAM_MAX";

        ParamMinMaxTable::ParamMinMaxTable(const char *paramId) : ParamTable(paramId) {
        }

        /*
         * @brief Get size of the table
         */
        int ParamMinMaxTable::getSize(ParameterManager *parameterManager) {
            if (!_variable) {
                std::vector<double> minValues = getConstantTableParamValuesByKey(parameterManager, ParamMinMaxTable::_minParamKey);
                return minValues.size();
            } else {
                return 0;
            }
        }

        /*
         * @brief Get bound for a specified index
         */
        t_TableBound ParamMinMaxTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map<std::string, std::vector<double>>*paramsTableData) {
            t_TableBound bound;
            bound.index = index;

            std::vector<double> minValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamMinMaxTable::_minParamKey);
            std::vector<double> maxValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamMinMaxTable::_maxParamKey);

            if ((index >= minValues.size()) || (index >= maxValues.size())) {
                LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound");
                bound.min = index;
                bound.max = index + 1;
                return bound;
            }

            bound.min = std::min(minValues[index], maxValues[index]);
            bound.max = std::max(minValues[index], maxValues[index]);

            return bound;
        }

        LinkTable::LinkTable(const char *paramId, const char* originParamId) : ParamTable(paramId), _originParamId(originParamId), _originTableDim(0) {
        }

        ParamTable* LinkTable::getOriginParamTable(ParameterManager* parameterManager) {
            if (parameterManager == NULL) {
                return NULL;
            }

            ParameterSPtr tmpParam = parameterManager->getParameter(_originParamId);
            if (tmpParam == nullptr) {
                return NULL;
            }

            ParamInfoSPtr paramInfo = ParamMgr::getInstance()->getParamInfoFromId(tmpParam->getInfoId());
            if (paramInfo == nullptr) {
                return NULL;
            }

            boost::shared_ptr<AMDA::Info::ParamTable> tableSPtr = paramInfo->getTable(_originTableDim);
            if (tableSPtr == nullptr) {
                return NULL;
            }
            return tableSPtr.get();
        }

        std::string LinkTable::getTableParamKeyForInfo(ParameterManager* parameterManager) {
            std::string res = "";
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table != NULL) {
                res = table->getTableParamKeyForInfo(parameterManager);
            }
            return res;
        }

        std::string LinkTable::getName(ParameterManager* parameterManager) {
            std::string res = "";
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table != NULL) {
                res = table->getName(parameterManager);
            }
            return res;
        }

        std::string LinkTable::getUnits(ParameterManager* parameterManager) {
            std::string res = "";
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table != NULL) {
                res = table->getUnits(parameterManager);
            }
            return res;
        }

        bool LinkTable::isVariable(ParameterManager* parameterManager) {
            bool res = false;
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table != NULL) {
                res = table->isVariable(parameterManager);
            }
            return res;
        }
236cd24c   Hacene SI HADJ MOHAND   working in full v...
725
726
727
728
729
730
731
732
733
        
          bool LinkTable::isFullVariable(ParameterManager* parameterManager) {
            bool res = false;
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table != NULL) {
                res = table->isFullVariable(parameterManager);
            }
            return res;
        }
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762

        std::map<std::string, std::string>& LinkTable::getTableParams(ParameterManager* parameterManager) {
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table == NULL) {
                return _emptyTableParam;
            }
            return table->getTableParams(parameterManager);
        }

        int LinkTable::getSize(ParameterManager *parameterManager) {
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table == NULL) {
                return 0;
            }
            return table->getSize(parameterManager);
        }

        t_TableBound LinkTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map<std::string, std::vector<double>>*paramsTableData) {
            t_TableBound res;
            ParamTable* table = getOriginParamTable(parameterManager);
            if (table == NULL) {
                res.index = index;
                res.min = index;
                res.max = index + 1;
            } else {
                res = table->getBound(parameterManager, index, paramsTableData);
            }
            return res;
        }
d924031c   Hacene SI HADJ MOHAND   progress
763
764
765
766
767
768
769
770
771
        bool ParamTable::isInvertedOrder(ParameterManager *parameterManager){
                if(this->getSize(parameterManager) <2) 
                        return true;
                
                double fist_        = getBound(parameterManager, 0).min; 
                double second_ = getBound(parameterManager, 1).min; 
                
                 return (fist_ > second_);
        }
b31e7a52   Hacene SI HADJ MOHAND   working with mav_st
772
773

    } /* namespace Info */
fbe3c2bb   Benjamin Renard   First commit
774
} /* namespace AMDA */