Blame view

src/ParamOutputImpl/Download/DownloadOutput.cc 76.6 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * DownloadOutput.cc
 *
 *  Created on: 03 oct. 2014
 *      Author: AKKA
 */

#include "DownloadOutput.hh"
#include "FileWriterASCIITabular.hh"
#include "FileWriterASCIIJson.hh"
#include "FileWriterASCIIVOTable.hh"
#include "FileWriterCDF.hh"
#include "Helper.hh"
3e19e9d5   Hacene SI HADJ MOHAND   completly vriable...
14
#include "Process.hh"
fbe3c2bb   Benjamin Renard   First commit
15
16
17
#include "Properties.hh"
#include "TimeUtil.hh"
#include "AMDA-Kernel_Config.hh"
5a7c3896   Hacene SI HADJ MOHAND   adding tableParam...
18
#include "Parameter.hh"
79366e37   Hacene SI HADJ MOHAND   trying to add ful...
19
#include <algorithm>
fbe3c2bb   Benjamin Renard   First commit
20
21
22
23
24
25
26
27
28
#include "TimeTable.hh"
#include "TimeTableCatalogFactory.hh"

#include "ServicesServer.hh"
#include "TimeInterval.hh"

#include <boost/filesystem/path.hpp>
#include <boost/filesystem.hpp>

7929a8a9   Benjamin Renard   CDF writer optimi...
29
30
using namespace std::chrono;

fbe3c2bb   Benjamin Renard   First commit
31
namespace AMDA {
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
    namespace ParamOutputImpl {

        /**
         * @brief Implement ParamOutput to download parameters data in files.
         */
        namespace Download {

            DownloadOutput::DownloadOutput(AMDA::Parameters::ParameterManager& pParameterManager) :
            VisitorOfParamData(),
            ParamOutput(pParameterManager),
            _downloadProperties(),
            _fileWriter(NULL),
            _currentParamId(""),
            _firstParamId(""),
            _currentIntervalIndex(0) {
fbe3c2bb   Benjamin Renard   First commit
47

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
48
            }
fbe3c2bb   Benjamin Renard   First commit
49

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
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
            DownloadOutput::~DownloadOutput() {
                if (_fileWriter != NULL)
                    delete _fileWriter;
            }

            /**
             * @overload DataClient::establishConnection()
             */
            void DownloadOutput::establishConnection() {
                LOG4CXX_DEBUG(_logger, "DownloadOutput::establishConnection");

                //Create the file writer
                createFileWriter();

                //create all needed parameters
                try {
                    _currentTimeInterval = _parameterManager.getInputIntervals()->begin();
                    createParameters();
                } catch (...) {
                    LOG4CXX_ERROR(_logger, "DownloadOutput::establishConnection - It's impossible to create parameters");
                    throw;
                }

                //open connection for all needed parameters
                for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                    LOG4CXX_DEBUG(_logger, "DownloadOutput::establishConnection - " << paramProperties->getOutputId());

                    try {
                        _parameterManager.getParameter(paramProperties->getOutputId())->openConnection(this);

                        AMDA::Parameters::ParameterSPtr param = _parameterManager.getParameter(paramProperties->getOriginalId());

                        AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramProperties->getOriginalId());
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
83
84
85
86
87
88
89
90
91
92
                        // adding tableParams 
                        std::map<int, boost::shared_ptr < AMDA::Info::ParamTable>> tables = paramInfo->getTables();
                        if (!tables.empty()) {
                            for (auto table : tables) {
                                if (table.second != nullptr) {
                                    if (table.second->isVariable(&_parameterManager)) {
                                        std::map<std::string, std::string> tableParamIds = table.second->getTableParams(&_parameterManager);
                                        if (!tableParamIds.empty())
                                            for (auto tableParamId : tableParamIds) {
                                                AMDA::Parameters::ParameterSPtr tableParam = _parameterManager.getParameter(tableParamId.second);
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
93
94
95
96
97
98
99
100
101
                                                if ((_downloadProperties.getTimeResolution() > 0) && (_downloadProperties.getOutputStructure() != ONE_FILE_PER_PARAMETER_PER_INTERVAL)) {
                                                    // Use resampled table param
                                                    tableParam = _parameterManager.getSampledParameter(
                                                            tableParamId.second,
                                                            "classic",
                                                            _downloadProperties.getTimeResolution(),
                                                            tableParam->getGapThreshold(), true);
                                                }
                                                tableParam ->openConnection(this);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
102
                                            }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
103
104
                                    }
                                }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
105
                            }
a3eb6f22   Hacene SI HADJ MOHAND   clen up
106
                        }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
107
108
109
110
111
112
113
114
115
                    } catch (...) {
                        LOG4CXX_ERROR(_logger, "DownloadOutput::establishConnection - It's impossible to open connection for " << paramProperties->getOutputId());
                        std::string filePath = getFilePath(_fileWriter->getExtension());
                        if (_fileWriter->createNewFile(filePath))
                            _fileWriter->writeError("EstablishConnection Error.\nIt's impossible to create  the parameter: \""
                                + paramProperties->getOriginalId() + "\".");
                        throw;
                    }
                }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
116
            }
a3eb6f22   Hacene SI HADJ MOHAND   clen up
117
118

            void DownloadOutput::addAditionalDownloadParams(std::string paramId, bool isFullVariable) {
295de3cf   Hacene SI HADJ MOHAND   in progress
119
                AMDA::Parameters::ParameterSPtr pParam = _parameterManager.getParameter(paramId);
6aeb2611   Hacene SI HADJ MOHAND   resloving some pl...
120
                if (pParam == NULL || _downloadProperties.getParamPropertiesFromOriginalId(paramId) != NULL)
a3eb6f22   Hacene SI HADJ MOHAND   clen up
121
122
                    return;
                AMDA::Info::ParamInfoSPtr processInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramId);
6aeb2611   Hacene SI HADJ MOHAND   resloving some pl...
123
                if (isFullVariable || (pParam->isTableIndexParam() && processInfo->getProcessInfo().empty())) {
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
124
125
126
127
128
129
130
131
                    if ((_downloadProperties.getTimeResolution() > 0) && (_downloadProperties.getOutputStructure() != ONE_FILE_PER_PARAMETER_PER_INTERVAL)) {
                        //Use resampled table param
                        pParam = _parameterManager.getSampledParameter(
                                paramId,
                                "classic",
                                _downloadProperties.getTimeResolution(),
                                pParam->getGapThreshold(), true);
                    }
a3eb6f22   Hacene SI HADJ MOHAND   clen up
132
133
134
                    pParam->openConnection(this);
                    ParamProperties* paramProperties = new ParamProperties();
                    paramProperties->setOriginalId(paramId);
ecf2e147   Benjamin Renard   Use resampled tab...
135
                    paramProperties->setOutputId(pParam->getId());
a3eb6f22   Hacene SI HADJ MOHAND   clen up
136
137
                    _downloadProperties.addParamProperties(paramProperties);
                    pParam->init(this, _timeIntervalList);
a3eb6f22   Hacene SI HADJ MOHAND   clen up
138
139
140
141
142
                }
                AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramId);
                const std::vector<std::string>& paramLinkedParams = paramInfo->getLinkedParamList();
                for (auto pId : paramLinkedParams)
                    addAditionalDownloadParams(pId, false);
295de3cf   Hacene SI HADJ MOHAND   in progress
143
            }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167

            /**
             * @overload ParamOutput::init()
             */
            void DownloadOutput::init() {
                LOG4CXX_DEBUG(_logger, "DownloadOutput::init");

                //init too small intervals process map
                if (isNeedToGenerateTooSmallIntervalFile()) {
                    for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                        //get original parameter pointer
                        AMDA::Parameters::ParameterSPtr param = _parameterManager.getParameter(paramProperties->getOriginalId());

                        //get mean statistic process associated to this parameter
                        AMDA::Parameters::StatisticProcess* process = AMDA::Parameters::ServicesServer::getInstance()->getStatisticProcess(
                                "mean", *param.get(), -1);

                        //establish connection
                        process->establishConnection();

                        //push process to the map
                        _tooSmallIntervalProcessMap[paramProperties->getOriginalId()].reset(process);
                    }
                }
a3eb6f22   Hacene SI HADJ MOHAND   clen up
168

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
169
170
171
172
173
174
175
                //init all needed parameters
                for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                    try {
                        //init parameter
                        LOG4CXX_DEBUG(gLogger, "DownloadOutput::init - " << paramProperties->getOutputId());
                        _parameterManager.getParameter(paramProperties->getOutputId())->init(this, _timeIntervalList);

a3eb6f22   Hacene SI HADJ MOHAND   clen up
176
                        AMDA::Parameters::ParameterSPtr param = _parameterManager.getParameter(paramProperties->getOriginalId());
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
177
178

                        AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramProperties->getOriginalId());
a3eb6f22   Hacene SI HADJ MOHAND   clen up
179

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
180
181
182
                        // adding tableParams 
                        std::map<int, boost::shared_ptr < AMDA::Info::ParamTable>> tables = paramInfo->getTables();
                        if (!tables.empty()) {
aa269fc9   Hacene SI HADJ MOHAND   ok for constant t...
183
                            _tableParamsList.push_back(paramProperties->getOriginalId());
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
184
                            for (auto table : tables) {
e774fb5b   Hacene SI HADJ MOHAND   correcting mass
185
                                if (table.second != nullptr && table.second->isVariable(&_parameterManager)) {
a3eb6f22   Hacene SI HADJ MOHAND   clen up
186
187
188
189
190
191
                                    std::map<std::string, std::string> tableParamIds = table.second->getTableParams(&_parameterManager);
                                    if (!tableParamIds.empty())
                                        for (auto tableParamId : tableParamIds) {
                                            AMDA::Parameters::ParameterSPtr tableParam = _parameterManager.getParameter(tableParamId.second);
                                            if (tableParam == NULL)
                                                continue;
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
192
193
194
195
196
197
198
199
                                            if ((_downloadProperties.getTimeResolution() > 0) && (_downloadProperties.getOutputStructure() != ONE_FILE_PER_PARAMETER_PER_INTERVAL)) {
                                                //Use resampled table param
                                                tableParam = _parameterManager.getSampledParameter(
                                                        tableParamId.second,
                                                        "classic",
                                                        _downloadProperties.getTimeResolution(),
                                                        tableParam->getGapThreshold(), true);
                                            }
a3eb6f22   Hacene SI HADJ MOHAND   clen up
200
201
                                            tableParam -> init(this, _timeIntervalList);
                                            if (table.second->isFullVariable(&_parameterManager)) {
ecf2e147   Benjamin Renard   Use resampled tab...
202
                                                addAditionalDownloadParams(tableParam->getId(), true);
a3eb6f22   Hacene SI HADJ MOHAND   clen up
203
                                            } else {
ecf2e147   Benjamin Renard   Use resampled tab...
204
                                                _tableParamsList.push_back(tableParam->getId());
a3eb6f22   Hacene SI HADJ MOHAND   clen up
205
                                            }
ecf2e147   Benjamin Renard   Use resampled tab...
206
                                            AMDA::Info::ParamInfoSPtr tableInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(tableParam->getId());
a3eb6f22   Hacene SI HADJ MOHAND   clen up
207
208
209
210
                                            for (auto linkedParamId : tableInfo->getLinkedParamList()) {
                                                addAditionalDownloadParams(linkedParamId, false);
                                            }
                                        }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
211
212
213
214
                                }
                            }
                        }

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
                    } catch (...) {

                        LOG4CXX_ERROR(_logger, "DownloadOutput::init : Error to init parameter " <<
                                paramProperties->getOutputId());
                        std::string filePath = getFilePath(_fileWriter->getExtension());
                        if (_fileWriter->createNewFile(filePath))
                            _fileWriter->writeError("Init Error.\nIt's impossible to initialize parameter: \""
                                + paramProperties->getOriginalId() + "\".");
                        throw;
                    }
                }
                //init processes for too small intervals
                if (isNeedToGenerateTooSmallIntervalFile()) {
                    for (auto process : _tooSmallIntervalProcessMap) {
                        process.second->init(_timeIntervalListTooSmall);
                    }
                }
            }

            /**
             * @overload ParamOutput::apply()
             */
            void DownloadOutput::apply() {
                LOG4CXX_DEBUG(_logger, "DownloadOutput::apply");

                if (_fileWriter == NULL) {
                    LOG4CXX_ERROR(_logger, "DownloadOutput::apply : No file writer defined");
                    BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                }

                //Working flags
                bool separateInfoFile = _fileWriter->isInfoInSeparateFile(
4f3abe6a   Benjamin Renard   Give the possibil...
247
                        _downloadProperties.getSeparateInfoFile(),
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
                        _timeIntervalList->size() == 1,
                        _downloadProperties.getOutputStructure());

                try {
                    bool isFirstInterval = true;
                    //Intervals loop
                    while (_currentTimeInterval != _timeIntervalList->end()) {
                        _currentParamId = "";
                        _currentIntervalIndex = _currentTimeInterval->_index;
                        //apply sequence in relation to the output structure
                        switch (_downloadProperties.getOutputStructure()) {
                            case ONE_FILE:
                            case ONE_FILE_REFPARAM:
                                applyOneFileStructure(separateInfoFile, isFirstInterval);
                                break;
                            case ONE_FILE_PER_INTERVAL:
                            case ONE_FILE_PER_INTERVAL_REFPARAM:
                                applyOneFilePerInterval(separateInfoFile, isFirstInterval);
                                break;
                            case ONE_FILE_PER_PARAMETER_PER_INTERVAL:
                                applyOneFilePerParameterPerInterval(separateInfoFile, isFirstInterval);
                                break;
                        }

                        isFirstInterval = false;
                        ++_currentTimeInterval;
                        //Finalize the data write in the case of a ONE_FILE or ONE_FILE_REFPARAM structure when last interval is treated
                        if ((_currentTimeInterval == _timeIntervalList->end()) &&
                                ((_downloadProperties.getOutputStructure() == ONE_FILE) ||
                                (_downloadProperties.getOutputStructure() == ONE_FILE_REFPARAM)))
                            _fileWriter->finalize();
                    }
                    _fileWriter->closeFile();

                    //build too small interval file if needed
                    if (isNeedToGenerateTooSmallIntervalFile())
                        buildTooSmallIntervalCatalog();
a3eb6f22   Hacene SI HADJ MOHAND   clen up
285
                    if (!_tableParamsList.empty()) {
65414a1c   Hacene SI HADJ MOHAND   working for mav
286
287
288
289
290
291
                        std::string filePath = getTableInfoFilePath(_fileWriter->getExtension());
                        if (!_fileWriter->createNewFile(filePath)) {
                            LOG4CXX_ERROR(_logger, "DownloadOutput::apply : Cannot create table info file " << filePath);
                            BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                        }
                        _files.push_back(filePath);
a3eb6f22   Hacene SI HADJ MOHAND   clen up
292
                        //write info
65414a1c   Hacene SI HADJ MOHAND   working for mav
293
                        writeAMDAInfo();
a3eb6f22   Hacene SI HADJ MOHAND   clen up
294
295
                        _fileWriter->writeTableParamsInfo(_tableParamsList, 0);
                        _fileWriter->finalize(true);
65414a1c   Hacene SI HADJ MOHAND   working for mav
296
                    }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
297
298
299
300
301
302

                } catch (...) {
                    _fileWriter->closeFile();
                    LOG4CXX_ERROR(_logger, "DownloadOutput::apply : Error to apply output");
                    throw;
                }
b17b9ebc   Benjamin Renard   Another fix for #...
303
            }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336

            /*
             * @brief Apply structure for "one-file"
             */
            void DownloadOutput::applyOneFileStructure(bool separateInfoFile, bool isFirstInterval) {
                LOG4CXX_DEBUG(_logger, "DownloadOutput::applyOneFileStructure");
                //create a data file
                if (isFirstInterval) {
                    if (separateInfoFile) {
                        //create info file
                        std::string filePath = getInfoFilePath(_fileWriter->getExtension());
                        if (!_fileWriter->createNewFile(filePath)) {
                            LOG4CXX_ERROR(_logger, "DownloadOutput::applyOneFilePerInterval : Cannot create info file " << filePath);
                            BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                        }
                        _files.push_back(filePath);

                        //write info
                        writeInfo(false, false, true);
                    }

                    createNewDataFile();
                }
                //write data for each parameters
                for (auto paramProperties : _downloadProperties.getParamPropertiesList())
                    getParameterDataFromServer(paramProperties->getOutputId());
                //write info
                if (isFirstInterval) {
                    if (!separateInfoFile) {
                        //write all info
                        writeInfo(false, false, false);
                    }
                }
b17b9ebc   Benjamin Renard   Another fix for #...
337
            }
a3eb6f22   Hacene SI HADJ MOHAND   clen up
338

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
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
            /*
             * @brief Apply structure for "one-file-per-interval"
             */
            void DownloadOutput::applyOneFilePerInterval(bool separateInfoFile, bool isFirstInterval) {
                LOG4CXX_DEBUG(_logger, "DownloadOutput::applyOneFilePerInterval");
                //create new output file
                createNewDataFile();
                for (auto paramProperties : _downloadProperties.getParamPropertiesList())
                    getParameterDataFromServer(paramProperties->getOutputId());

                _currentParamId = "";
                if (separateInfoFile) {
                    //write only interval info
                    writeInfo(true, true, false);
                } else {
                    //write all info
                    writeInfo(true, false, false);
                }

                //finalize data write
                _fileWriter->finalize();

                if (separateInfoFile && isFirstInterval) {
                    //create info file
                    std::string filePath = getInfoFilePath(_fileWriter->getExtension());
                    if (!_fileWriter->createNewFile(filePath)) {
                        LOG4CXX_ERROR(_logger, "DownloadOutput::applyOneFilePerInterval : Cannot create info file " << filePath);
                        BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                    }
                    _files.push_back(filePath);

                    //write info
                    writeInfo(false, false, true);
                }
            }
16bdce87   Benjamin Renard   correction All in...
374

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
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
            /*
             * @brief Apply structure for "one-file-per-parameter-per-interval"
             */
            void DownloadOutput::applyOneFilePerParameterPerInterval(bool separateInfoFile, bool isFirstInterval) {
                LOG4CXX_DEBUG(_logger, "DownloadOutput::applyOneFilePerParameterPerInterval");
                for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                    _currentParamId = paramProperties->getOutputId();
                    //create output file
                    createNewDataFile();
                    //force first parameter id
                    _firstParamId = paramProperties->getOutputId();

                    //write data
                    getParameterDataFromServer(paramProperties->getOutputId());

                    if (separateInfoFile) {
                        //write only interval info
                        writeInfo(true, true, false);
                    } else {
                        //write all info
                        writeInfo(true, false, false);
                    }

                    //finalize data write
                    _fileWriter->finalize();

                    if (separateInfoFile && isFirstInterval) {
                        //create info file
                        std::string filePath = getInfoFilePath(_fileWriter->getExtension());
                        if (!_fileWriter->createNewFile(filePath)) {
                            LOG4CXX_ERROR(_logger, "DownloadOutput::applyOneFilePerParameterPerInterval : Cannot create info file " << filePath);
                            BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                        }
                        _files.push_back(filePath);

                        //write info
                        writeInfo(false, false, true);
                    }
                }
            }
fbe3c2bb   Benjamin Renard   First commit
415

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
            void DownloadOutput::writeInfo(bool isWriteIntervalInfo,
                    bool isWriteOnlyIntervalInfo,
                    bool isFinalizeInfoFile) {
                char *hideHeader;
                if ((hideHeader = getenv("HIDE_HEADER_FILE")) != NULL)
                    if (strcmp(hideHeader, "true") == 0)
                        return; //hide header for validation tests

                if (!isWriteOnlyIntervalInfo) {
                    writeAMDAInfo();
                    writeRequestInfo();
                    writeParamInfo();
                }
                if (isWriteIntervalInfo)
                    writeIntervalInfo();

                if (isFinalizeInfoFile)
                    _fileWriter->finalize(true);
            }
fbe3c2bb   Benjamin Renard   First commit
435

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
436
            void DownloadOutput::writeTableInfo() {
fbe3c2bb   Benjamin Renard   First commit
437

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
438
439
                // writeTableInfo(); comme 
            }
fbe3c2bb   Benjamin Renard   First commit
440

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
441
442
            void DownloadOutput::writeAMDAInfo(void) {
                std::string version = AMDA_Kernel_VERSION;
fbe3c2bb   Benjamin Renard   First commit
443

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
444
445
446
447
                char *hideVersion;
                if ((hideVersion = getenv("HIDE_VERSION")) != NULL)
                    if (strcmp(hideVersion, "true") == 0)
                        version = "none-for-test"; //hide version number for tests
fbe3c2bb   Benjamin Renard   First commit
448

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
449
                AMDA::helpers::Properties lProperties("amda.properties");
fbe3c2bb   Benjamin Renard   First commit
450

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
451
452
                std::string createdby = lProperties["createdby"];
                std::string acknowledgement = lProperties["acknowledgement"];
fbe3c2bb   Benjamin Renard   First commit
453

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
454
455
                _fileWriter->writeAMDAInfo(version, createdby, acknowledgement);
            }
fbe3c2bb   Benjamin Renard   First commit
456

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
            void DownloadOutput::writeRequestInfo(void) {
                std::string structure = ouputStructureToStr[_downloadProperties.getOutputStructure()];
                std::string timeFormat = ouputFormatTimeToStr[_downloadProperties.getTimeFormat()];

                std::stringstream outputParams;
                bool firstParam = true;
                for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                    if (!firstParam)
                        outputParams << ",";
                    firstParam = false;
                    outputParams << paramProperties->getOriginalId();
                }

                _fileWriter->writeRequestInfo(structure, timeFormat, _downloadProperties.getTimeResolution(),
                        outputParams.str(), _currentTimeInterval->_ttName);
            }
fbe3c2bb   Benjamin Renard   First commit
473

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
474
475
476
477
            void DownloadOutput::writeIntervalInfo(void) {
                std::stringstream startTime, stopTime;
                TimeUtil::formatTimeDateInIso(_currentTimeInterval->_startTime, startTime);
                TimeUtil::formatTimeDateInIso(_currentTimeInterval->_stopTime, stopTime);
fbe3c2bb   Benjamin Renard   First commit
478

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
479
480
                _fileWriter->writeIntervalInfo(startTime.str(), stopTime.str());
            }
fbe3c2bb   Benjamin Renard   First commit
481

65414a1c   Hacene SI HADJ MOHAND   working for mav
482
            void DownloadOutput::writeParamInfo() {
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
483
                _fileWriter->writeParamsInfo(_downloadProperties.getParamPropertiesList(),
a3eb6f22   Hacene SI HADJ MOHAND   clen up
484
485
                        _downloadProperties.getOutputStructure(), _currentParamId);
                ;
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
486
            }
fbe3c2bb   Benjamin Renard   First commit
487

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
488
489
490
            bool DownloadOutput::isNeedToGenerateTooSmallIntervalFile() {
                return (_timeIntervalListTooSmall->empty() == false);
            }
fbe3c2bb   Benjamin Renard   First commit
491

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
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
564
565
566
567
568
569
570
571
572
573
            void DownloadOutput::buildTooSmallIntervalCatalog(void) {
                if (!isNeedToGenerateTooSmallIntervalFile())
                    return;

                LOG4CXX_DEBUG(_logger, "DownloadOutput::buildTooSmallIntervalCatalog");

                //build small intervals catalog file name
                std::ostringstream catalogName;
                catalogName << _timeIntervalListTooSmall->begin()->_ttName << "_" << _samplingValue << "_smallIntervals";

                //create small intervals catalog file

                _smallIntervalsCatalog._name = catalogName.str();

                if (getenv("HIDE_AMDA_DATE") != NULL)
                    _smallIntervalsCatalog._creationDate = 0;
                else
                    _smallIntervalsCatalog._creationDate = std::time(0);

                std::ostringstream description;
                description << "Time intervals are less than requested timeResolution (" << _samplingValue << ")";
                _smallIntervalsCatalog._description.push_back(description.str());

                //add interval index description
                TimeTableCatalog::ParameterDescription indexDesc(
                        "index",
                        "Interval index",
                        "1",
                        TimeTableCatalog::ParameterDescription::ParameterType::Integer,
                        "",
                        "Interval index in input TimeTable",
                        "meta.number",
                        ""
                        );
                _smallIntervalsCatalog.addParameterDescription(indexDesc);

                //compute mean processes for each small inetrvals and store results in the catalog file
                AMDA::Parameters::TimeIntervalList::iterator currentTooSmallTimeInterval = _timeIntervalListTooSmall->begin();
                while (currentTooSmallTimeInterval != _timeIntervalListTooSmall->end()) {
                    TimeTableCatalog::TimeInterval crtInterval(currentTooSmallTimeInterval->_startTime, currentTooSmallTimeInterval->_stopTime);

                    //push index for this time interval
                    std::vector<std::string> crtIndex;
                    crtIndex.push_back(std::to_string(currentTooSmallTimeInterval->_index));
                    crtInterval.addParameterData(std::string("index"), crtIndex);

                    for (auto process : _tooSmallIntervalProcessMap) {
                        std::vector<std::string> crtResult;
                        std::vector<std::string> crtCoverage;
                        //compute the mean
                        process.second->compute(crtResult, crtCoverage);

                        if (currentTooSmallTimeInterval == _timeIntervalListTooSmall->begin()) {
                            //add mean processes description to the catalog
                            std::string name = "mean(";
                            name += process.first;
                            name += ")";

                            TimeTableCatalog::ParameterDescription desc(
                                    process.first,
                                    name,
                                    process.second->getResultDimDefinition(),
                                    TimeTableCatalog::ParameterDescription::ParameterType::Double,
                                    "",
                                    "Mean of the parameter in the interval",
                                    process.second->getUCD(),
                                    ""
                                    );
                            _smallIntervalsCatalog.addParameterDescription(desc);
                        }

                        //push result for this time interval
                        crtInterval.addParameterData(process.first, crtResult);
                    }

                    //add interval to the catalog
                    _smallIntervalsCatalog.addInterval(crtInterval);

                    //go to the next too small interval
                    ++currentTooSmallTimeInterval;
                }
            }
fbe3c2bb   Benjamin Renard   First commit
574

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
575
576
            void DownloadOutput::terminate(void) {
                //write the catalog file
fbe3c2bb   Benjamin Renard   First commit
577

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
578
579
580
581
582
583
584
585
                if (isNeedToGenerateTooSmallIntervalFile()) {
                    std::string ttPath = _timeIntervalList->begin()->_ttPath;
                    _smallIntervalsCatalog.write(_workPath,
                            TimeTableCatalog::TimeTableCatalogFactory::getInstance().getReaderType(ttPath));
                    //add the catalog file to the output files list
                    boost::filesystem::path ttp(ttPath);
                    _files.push_back(_smallIntervalsCatalog._name + ttp.extension().string());
                }
fbe3c2bb   Benjamin Renard   First commit
586

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
587
588
                ParamOutput::terminate();
            }
fbe3c2bb   Benjamin Renard   First commit
589

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
590
591
592
593
594
595
596
597
598
            void DownloadOutput::createNewDataFile(void) {
                std::string filePath = getFilePath(_fileWriter->getExtension());
                if (!_fileWriter->createNewFile(filePath)) {
                    LOG4CXX_ERROR(_logger, "DownloadOutput::createNewDataFile : Cannot create output file " << filePath);
                    BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                }
                _files.push_back(filePath);
                _paramDefinedInFile.clear();
            }
fbe3c2bb   Benjamin Renard   First commit
599

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
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
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
            /*
             * @brief Create parameters in relation with the download properties
             */
            void DownloadOutput::createParameters(void) {
                LOG4CXX_DEBUG(_logger, "DownloadOutput::createParameters");

                switch (_downloadProperties.getOutputStructure()) {
                    case ONE_FILE:
                    case ONE_FILE_REFPARAM:
                    case ONE_FILE_PER_INTERVAL:
                    case ONE_FILE_PER_INTERVAL_REFPARAM:
                        if (_downloadProperties.getParamPropertiesList().size() == 1) {
                            //only one paramter defined in the request
                            try {
                                //get original parameter
                                AMDA::Parameters::ParameterSPtr originalParam = _parameterManager.getParameter(
                                        _downloadProperties.getParamPropertiesList()[0]->getOriginalId());

                                if (_downloadProperties.getTimeResolution() == 0) {
                                    //only one parameter and no time resolution defined => keep original parameter
                                    _downloadProperties.getParamPropertiesList()[0]->setOutputId(
                                            _downloadProperties.getParamPropertiesList()[0]->getOriginalId());
                                    _firstParamId = _downloadProperties.getParamPropertiesList()[0]->getOriginalId();
                                } else {
                                    //only one parameter but time resolution defined => resample the parameter
                                    AMDA::Parameters::ParameterSPtr resampledParam = _parameterManager.getSampledParameter(
                                            originalParam->getId(),
                                            "classic",
                                            _downloadProperties.getTimeResolution(),
                                            originalParam->getGapThreshold(), true);
                                    //set the resampled parameter id
                                    _downloadProperties.getParamPropertiesList()[0]->setOutputId(resampledParam->getId());
                                    _firstParamId = resampledParam->getId();
                                    _samplingValue = _downloadProperties.getTimeResolution();
                                }

                            } catch (...) {
                                std::string filePath = getFilePath(_fileWriter->getExtension());
                                if (_fileWriter->createNewFile(filePath))
                                    _fileWriter->writeError("EstablishConnection Error.\nIt's impossible to create  the parameter: \""
                                        + _downloadProperties.getParamPropertiesList()[0]->getOriginalId() + "\".");
                                throw;
                            }
                        } else {
                            double samplingTime = _downloadProperties.getTimeResolution();
                            if ((samplingTime == 0) &&
                                    ((_downloadProperties.getOutputStructure() == ONE_FILE) ||
                                    (_downloadProperties.getOutputStructure() == ONE_FILE_PER_INTERVAL))) {
                                //no time resolution defined with outputStructure ONE_FILE or ONE_FILE_PER_PARAMETER_PER_INTERVAL
                                //=> get max parameters sampling time
                                for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                                    try {
                                        AMDA::Parameters::ParameterSPtr originalParam = _parameterManager.getParameter(paramProperties->getOriginalId());
                                        samplingTime = std::max(samplingTime, getSamplingInTreeParameter(originalParam));
                                    } catch (...) {
                                        std::string filePath = getFilePath(_fileWriter->getExtension());
                                        if (_fileWriter->createNewFile(filePath))
                                            _fileWriter->writeError("EstablishConnection Error.\nIt's impossible to create  the parameter: \""
                                                + paramProperties->getOriginalId() + "\".");
                                        throw;
                                    }
                                }
                            }

                            _samplingValue = samplingTime;

                            //create resampled parameters for all parameters defined in the request
                            bool isFirstParam = true;
                            AMDA::Parameters::ParameterSPtr firstParam;
                            for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                                try {
                                    //get original parameter
                                    AMDA::Parameters::ParameterSPtr originalParam = _parameterManager.getParameter(paramProperties->getOriginalId());

                                    //Create resampled parameter
                                    AMDA::Parameters::ParameterSPtr resampledParam;
                                    if (_samplingValue > 0) {
                                        resampledParam = _parameterManager.getSampledParameter(
                                                paramProperties->getOriginalId(),
                                                "classic",
                                                samplingTime,
                                                originalParam->getGapThreshold(), true);

                                        //set the resampled parameter id
                                        paramProperties->setOutputId(resampledParam->getId());

                                        if (isFirstParam) {
                                            _firstParamId = resampledParam->getId();
                                            firstParam = resampledParam;
                                        }
                                    } else {
                                        //use resampled parameter under first parameter time definition
                                        if (isFirstParam) {
                                            //first parameter => no resampling
                                            //set the original parameter id
                                            paramProperties->setOutputId(paramProperties->getOriginalId());
                                            _firstParamId = paramProperties->getOriginalId();
                                            firstParam = originalParam;
                                        } else {
                                            resampledParam = _parameterManager.getSampledParameterUnderRefParam(
                                                    originalParam->getId(),
                                                    firstParam->getId(), true);

                                            //set the resampled parameter id
                                            paramProperties->setOutputId(resampledParam->getId());
                                        }
                                    }
                                    isFirstParam = false;
                                } catch (...) {
                                    std::string filePath = getFilePath(_fileWriter->getExtension());
                                    if (_fileWriter->createNewFile(filePath))
                                        _fileWriter->writeError("EstablishConnection Error.\nIt's impossible to create  the parameter: \""
                                            + paramProperties->getOriginalId() + "\".");
                                    throw;
                                }
                            }
                        }
                        break;
                    case ONE_FILE_PER_PARAMETER_PER_INTERVAL:
                    {
                        bool isFirstParam = true;
                        for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                            try {
                                //get original parameter
                                AMDA::Parameters::ParameterSPtr originalParam = _parameterManager.getParameter(paramProperties->getOriginalId());

                                paramProperties->setOutputId(paramProperties->getOriginalId());
                                if (isFirstParam)
                                    _firstParamId = paramProperties->getOriginalId();
                                isFirstParam = false;
                            } catch (...) {
                                std::string filePath = getFilePath(_fileWriter->getExtension());
                                if (_fileWriter->createNewFile(filePath))
                                    _fileWriter->writeError("EstablishConnection Error.\nIt's impossible to create  the parameter: \""
                                        + paramProperties->getOriginalId() + "\".");
                                throw;
                            }
                        }
                    }
                        break;
                    default:
                        LOG4CXX_ERROR(_logger, "DownloadOutput::createParameters : Output structure not implemented");
                        BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                }
            }

            /*
             * @brief create file writer associated to the requested file format
             */
            void DownloadOutput::createFileWriter(void) {
                if (_fileWriter != NULL)
                    delete _fileWriter;

                switch (_downloadProperties.getFileFormat()) {
                    case ASCII_FILE_FORMAT:
                        _fileWriter = new FileWriter::FileWriterASCIITabular(_parameterManager);
59034873   Hacene SI HADJ MOHAND   8675 ok
756
                        _fileWriter->setTimeFormat(_downloadProperties.getTimeFormat());
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
757
758
759
                        break;
                    case JSON_FILE_FORMAT:
                        _fileWriter = new FileWriter::FileWriterASCIIJson(_parameterManager);
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
760
                        _fileWriter->setTimeFormat(_downloadProperties.getTimeFormat());
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
761
762
763
                        break;
                    case VOT_FILE_FORMAT:
                        _fileWriter = new FileWriter::FileWriterASCIIVOTable(_parameterManager);
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
764
                        _fileWriter->setTimeFormat(_downloadProperties.getTimeFormat());
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
765
766
767
                        break;
                    case CDF_FILE_FORMAT:
                        _fileWriter = new FileWriter::FileWriterCDF(_parameterManager);
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
768
                        _fileWriter->setTimeFormat(_downloadProperties.getTimeFormat());
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
                        break;
                    default:
                        LOG4CXX_ERROR(_logger, "DownloadOutput::createFileWriter : File format not implemented");
                        BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                }
            }

            /*
             * @brief Get file path in relation with the sequence step
             */
            std::string DownloadOutput::getFilePath(std::string extension, bool infoFile) {
                //create workspace dir if needed
                int ret = AMDA::Helpers::Helper::mkdir(_workPath.c_str());
                if (ret) {
                    const size_t buflen = 250;
                    char buf[250];
                    LOG4CXX_ERROR(_logger,
                            "Create working directory \"" << _workPath << "\"error : " << strerror_r(ret, buf, buflen));
                    BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                }

                //create full file path
                std::stringstream filePath;
                filePath << _workPath;

                filePath << "/";

                std::stringstream fileName;
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
797
                if (_downloadProperties.getFileName().empty()) {
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
798
                    fileName << "output-";
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
799

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
800

355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
801
802
803
804
805
806
807
808
                    //add parameters ids
                    bool firstParam = true;
                    for (auto paramProperties : _downloadProperties.getParamPropertiesList()) {
                        if (!_currentParamId.empty()) {
                            //add only current parameter id
                            if (_currentParamId != paramProperties->getOutputId())
                                continue;
                        }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
809

355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
810
811
812
                        if (!firstParam)
                            fileName << "_";
                        firstParam = false;
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
813

355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
814
815
816
817
818
819
820
821
822
                        fileName << paramProperties->getOriginalId();

                        //add indexes
                        for (auto index : paramProperties->getIndexDefList()) {
                            boost::replace_all(index, "[", "");
                            boost::replace_all(index, "]", "");
                            boost::replace_all(index, "*", "x");
                            fileName << "_" << index;
                        }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
823
                    }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
824

355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
825
826
827
828
829
830
                    std::stringstream fileNameSuffix;
                    if (!infoFile) {
                        if ((_downloadProperties.getOutputStructure() != ONE_FILE) &&
                                (_downloadProperties.getOutputStructure() != ONE_FILE_REFPARAM) &&
                                (_parameterManager.getInputIntervals()->size() != 1)) {
                            //add interval index
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
831
                            fileNameSuffix << "_" << _currentTimeInterval->_ttName;
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
832
833
834
835
836
837
838
839
840
841
842
843
                            fileNameSuffix << "_" << _currentIntervalIndex;
                        } else {
                            if (_currentTimeInterval->_ttName.empty()) {
                                //add start time
                                double lStartTime = _currentTimeInterval->_startTime;
                                char buffer[TIMELENGTH];
                                Double2DD_Time(buffer, lStartTime);
                                fileNameSuffix << "_" << buffer;
                            } else {
                                //add TT name
                                fileNameSuffix << "_" << _currentTimeInterval->_ttName;
                            }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
844
                        }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
845
846
                    } else
                        fileNameSuffix << "_info";
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
847

355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
848
849
850
851
852
853
                    //check fileName size
                    if (fileName.str().size() + extension.size() + 1 + fileNameSuffix.str().size() > 100) {
                        filePath << fileName.str().substr(0, 100 - extension.size() - 1 - fileNameSuffix.str().size()) << fileNameSuffix.str();
                    } else {
                        filePath << fileName.str() << fileNameSuffix.str();
                    }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
854
                } else {
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
855
856
857
858
859
860
861
862
863
864
865
866
867
                    if (!infoFile) {
                        if ((_downloadProperties.getOutputStructure() != ONE_FILE) &&
                                (_downloadProperties.getOutputStructure() != ONE_FILE_REFPARAM) &&
                                (_parameterManager.getInputIntervals()->size() != 1)) {
                               std::stringstream fileNameSuffix;
                            //add interval index
                            fileNameSuffix <<  _currentIntervalIndex;
                              filePath << _downloadProperties.getFileName() << fileNameSuffix.str();
                        } else
                             filePath << _downloadProperties.getFileName();
                    } else {
                        filePath << _downloadProperties.getFileName() << "_info";
                    }
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
                }

                //add extension
                filePath << ".";
                filePath << extension;

                return filePath.str();
            }

            /*
             * @brief Get file info path in relation with the sequence step (only used if info is written is separate file)
             */
            std::string DownloadOutput::getInfoFilePath(std::string extension) {
                return getFilePath(extension, true);
            }
a3eb6f22   Hacene SI HADJ MOHAND   clen up
883
884

            /*
65414a1c   Hacene SI HADJ MOHAND   working for mav
885
             * @brief Get file info path in relation with the sequence step (only used if info is written is separate file)
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
886
887
             */
            std::string DownloadOutput::getTableInfoFilePath(std::string extension) {
a3eb6f22   Hacene SI HADJ MOHAND   clen up
888
                std::string suffix = "_table";
65414a1c   Hacene SI HADJ MOHAND   working for mav
889
                std::string path = getInfoFilePath(extension);
a3eb6f22   Hacene SI HADJ MOHAND   clen up
890
891
892
                int pos = path.size() - extension.size() - 1;
                pos = std::max(pos, 0);
                path.insert(pos, suffix);
65414a1c   Hacene SI HADJ MOHAND   working for mav
893
                return path;
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
894
895
            }

1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
            void DownloadOutput::getParameterDataFromServer(std::string paramId) {
                try {
                    _currentParamId = paramId;
                    do {
                        try {
                            _paramDataIndexInfo = _parameterManager.getParameter(paramId)->getAsync(this).get();
                        } catch (...) {
                            BOOST_THROW_EXCEPTION(AMDA::Parameters::ParamOutput_exception());
                            throw;
                        }
                        if (_paramDataIndexInfo._nbDataToProcess > 0) {
                            try {
                                _parameterManager.getParameter(paramId)->getParamData(this)->accept(*this);
                            } catch (AMDA::AMDA_exception & e) {
                                e << AMDA::errno_code(AMDA_PARAM_OUTPUT_ERR);
                                throw;
                            }
                        }
                    } while (!_paramDataIndexInfo._noMoreTimeInt && !_paramDataIndexInfo._timeIntToProcessChanged);
                } catch (...) {
                    _fileWriter->writeError("apply Error.\nIt's impossible to get or write data of  parameter: \""
                            + paramId + "\".");
                    throw;
                }
            }

            void DownloadOutput::addParameterInFile(std::string paramId,
                    FileWriter::FileDataType type, bool isFirstParam, int dim1Size, int dim2Size) {
                if (!_paramDefinedInFile[paramId]) {
                    ParamProperties* prop = _downloadProperties.getParamPropertiesFromOutputId(paramId);
                    _fileWriter->addParameter(prop, _paramsIndexList[paramId], type, isFirstParam, dim1Size, dim2Size);
                }
                _paramDefinedInFile[paramId] = true;
            }

            void DownloadOutput::buildParamIndexes(std::string paramId, int dim1Size, int dim2Size) {
                _paramsIndexList[paramId].clear();
                for (auto paramProp : _downloadProperties.getParamPropertiesList()) {
                    if (paramProp->getOutputId() == paramId) {
                        for (auto indexDef : paramProp->getIndexDefList()) {
                            if (!AMDA::Common::ParameterIndexesTool::parse(indexDef, dim1Size, dim2Size, _paramsIndexList[paramId])) {
                                ERROR_EXCEPTION(
                                        "DownloadOutput of: '" << paramId << "' index: " << indexDef << " out of range");
                            }
                        }
                        break;
                    }
                }

                if (_paramsIndexList[paramId].empty())
                    AMDA::Common::ParameterIndexesTool::parse("", dim1Size, dim2Size, _paramsIndexList[paramId]);
            }

            /***************************** VISITORS ********************************/

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataScalaireShort *pParamData) {
                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_SHORT, isFirstParam);

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    _fileWriter->writeShortData(_currentParamId, 0, pParamData->get(index), _downloadProperties.getPrecision());
7929a8a9   Benjamin Renard   CDF writer optimi...
965
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
966
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
967
968
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataScalaireFloat *pParamData) {
                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_FLOAT, isFirstParam);

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    _fileWriter->writeFloatData(_currentParamId, 0, pParamData->get(index), _downloadProperties.getPrecision());
7929a8a9   Benjamin Renard   CDF writer optimi...
985
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
986
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
987
988
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataScalaireDouble *pParamData) {
                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_DOUBLE, isFirstParam);

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    _fileWriter->writeDoubleData(_currentParamId, 0, pParamData->get(index), _downloadProperties.getPrecision());
7929a8a9   Benjamin Renard   CDF writer optimi...
1005
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1006
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1007
1008
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataScalaireLongDouble *pParamData) {
                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_LONGDOUBLE, isFirstParam);

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    _fileWriter->writeLongDoubleData(_currentParamId, 0, pParamData->get(index), _downloadProperties.getPrecision());
7929a8a9   Benjamin Renard   CDF writer optimi...
1025
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1026
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1027
1028
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataScalaireInt *pParamData) {
                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_INT, isFirstParam);

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    _fileWriter->writeIntData(_currentParamId, 0, pParamData->get(index), _downloadProperties.getPrecision());
7929a8a9   Benjamin Renard   CDF writer optimi...
1045
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1046
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1047
1048
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataLogicalData *pParamData) {
                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_LOGICAL, isFirstParam);

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    _fileWriter->writeLogicalData(_currentParamId, 0, pParamData->get(index), _downloadProperties.getPrecision());
7929a8a9   Benjamin Renard   CDF writer optimi...
1065
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1066
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1067
1068
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab1DShort *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_SHORT, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        _fileWriter->writeShortData(_currentParamId, varIndex, pParamData->get(index)[component.getDim1Index()], _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1092
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1093
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1094
1095
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab1DFloat *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_FLOAT, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        _fileWriter->writeFloatData(_currentParamId, varIndex, pParamData->get(index)[component.getDim1Index()], _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1119
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1120
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1121
1122
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab1DDouble *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_DOUBLE, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        _fileWriter->writeDoubleData(_currentParamId, varIndex, pParamData->get(index)[component.getDim1Index()], _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1146
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1147
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1148
1149
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab1DLongDouble *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_LONGDOUBLE, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        _fileWriter->writeLongDoubleData(_currentParamId, varIndex, pParamData->get(index)[component.getDim1Index()], _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1173
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1174
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1175
1176
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab1DInt *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_INT, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        _fileWriter->writeIntData(_currentParamId, varIndex, pParamData->get(index)[component.getDim1Index()], _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1200
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1201
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1202
1203
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
            }

            /**
             * @overload VisitorOfParamData::visit()
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab1DLogicalData *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_LOGICAL, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        _fileWriter->writeLogicalData(_currentParamId, varIndex, pParamData->get(index)[component.getDim1Index()], _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1227
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1228
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1229
1230
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DShort *)
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab2DShort *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_SHORT, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        short val = (pParamData->get(index))[component.getDim1Index()][component.getDim2Index()];
                        _fileWriter->writeShortData(_currentParamId, varIndex, val, _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1255
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1256
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1257
1258
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DFloat *)
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab2DFloat *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_FLOAT, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        float val = (pParamData->get(index))[component.getDim1Index()][component.getDim2Index()];
                        _fileWriter->writeFloatData(_currentParamId, varIndex, val, _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1283
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1284
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1285
1286
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DDouble *)
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab2DDouble *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_DOUBLE, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        double val = (pParamData->get(index))[component.getDim1Index()][component.getDim2Index()];
                        _fileWriter->writeDoubleData(_currentParamId, varIndex, val, _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1311
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1312
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1313
1314
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DLongDouble *)
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab2DLongDouble *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_LONGDOUBLE, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        long double val = (pParamData->get(index))[component.getDim1Index()][component.getDim2Index()];
                        _fileWriter->writeLongDoubleData(_currentParamId, varIndex, val, _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1339
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1340
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1341
1342
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DInt *)
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab2DInt *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_INT, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        int val = (pParamData->get(index))[component.getDim1Index()][component.getDim2Index()];
                        _fileWriter->writeIntData(_currentParamId, varIndex, val, _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1367
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1368
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1369
1370
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DLogicalData *)
             */
            void DownloadOutput::visit(AMDA::Parameters::ParamDataTab2DLogicalData *pParamData) {
                if (_paramsIndexList[_currentParamId].empty())
                    buildParamIndexes(_currentParamId, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                bool isFirstParam = (_currentParamId == _firstParamId);

                addParameterInFile(_currentParamId, FileWriter::FileDataType::DT_LOGICAL, isFirstParam, pParamData->get(_paramDataIndexInfo._startIndex).getDim1Size(), pParamData->get(_paramDataIndexInfo._startIndex).getDim2Size());

                for (unsigned int index = _paramDataIndexInfo._startIndex;
                        index < _paramDataIndexInfo._nbDataToProcess + _paramDataIndexInfo._startIndex; ++index) {
                    if (pParamData->getTime(index) > _currentTimeInterval->_stopTime)
                        return;
                    _fileWriter->writeTimeData(_currentParamId, pParamData->getTime(index), _downloadProperties.getTimeFormat(), isFirstParam);
                    int varIndex = 0;
                    for (auto component : _paramsIndexList[_currentParamId]) {
                        AMDA::Parameters::LogicalData val = (pParamData->get(index))[component.getDim1Index()][component.getDim2Index()];
                        _fileWriter->writeLogicalData(_currentParamId, varIndex, val, _downloadProperties.getPrecision());
                        ++varIndex;
                    }
7929a8a9   Benjamin Renard   CDF writer optimi...
1395
                    _fileWriter->goToNextRecord(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1396
                }
355b96ac   Hacene SI HADJ MOHAND   ticket 9399 ok
1397
1398
                if (_paramDataIndexInfo._nbDataToProcess > 0)
                    _fileWriter->flushData(_currentParamId, isFirstParam);
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
1399
1400
1401
1402
            }

        } /* namespace Download */
    } /* namespace ParamOutputImpl */
fbe3c2bb   Benjamin Renard   First commit
1403
} /* namespace AMDA */