Blame view

src/ParamOutputImpl/Download/DownloadProperties.cc 2.43 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
 * DownLoadProperties.cc
 *
 *  Created on: Oct 1, 2014
 *      Author: m.mazel
 */

#include "DownloadProperties.hh"

namespace AMDA {
namespace ParamOutputImpl {
namespace Download {

DownloadProperties::DownloadProperties() :
	_timeFormat(FORMAT_OUTPUT_TIME_DD),
	_fileFormat(ASCII_FILE_FORMAT),
	_fileName(),
	_timeResolution(0),
	_outputStructure(OutputStructure::ONE_FILE_PER_INTERVAL),
	_precision(false)
{
	// TODO Auto-generated constructor stub
}

DownloadProperties::~DownloadProperties() {
	for (auto paramProperties : _paramPropertiesList) {
		delete paramProperties;
	}
	_paramPropertiesList.clear();
}

OutputFileFormat DownloadProperties::getFileFormat() const {
	return _fileFormat;
}

void DownloadProperties::setFileFormat(OutputFileFormat fileFormat) {
	_fileFormat = fileFormat;
}

const std::string& DownloadProperties::getFileName() const {
	return _fileName;
}

void DownloadProperties::setFileName(const std::string& fileName) {
	_fileName = fileName;
}

OutputStructure DownloadProperties::getOutputStructure() const {
	return _outputStructure;
}

void DownloadProperties::setOutputStructure(OutputStructure outputStructure) {
	_outputStructure = outputStructure;
}

OutputFormatTime DownloadProperties::getTimeFormat() const {
	return _timeFormat;
}

void DownloadProperties::setTimeFormat(OutputFormatTime timeFormat) {
	_timeFormat = timeFormat;
}

int DownloadProperties::getTimeResolution() const {
	return _timeResolution;
}

void DownloadProperties::setTimeResolution(int timeResolution) {
	_timeResolution = timeResolution;
}

ParamPropertiesList& DownloadProperties::getParamPropertiesList() {
	return _paramPropertiesList;
}

void DownloadProperties::addParamProperties(ParamProperties *paramProperties) {
	_paramPropertiesList.push_back (paramProperties);
}

ParamProperties* DownloadProperties::getParamPropertiesFromOriginalId(std::string originalId)
{
	for (auto paramProp : _paramPropertiesList)
	{
		if (paramProp->getOriginalId() == originalId)
			return paramProp;
	}
	return NULL;
}

ParamProperties* DownloadProperties::getParamPropertiesFromOutputId(std::string outputId)
{
	for (auto paramProp : _paramPropertiesList)
	{
		if (paramProp->getOutputId() == outputId)
			return paramProp;
	}
	return NULL;
}

bool DownloadProperties::getPrecision(void) const {
	return _precision;
}

void DownloadProperties::setPrecision(bool precision)
{
	_precision = precision;
}

} // namespace Download
} // namespace ParamOutputImpl
} // namespace AMDA