ParamGetLocalFile.hh
4.56 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*
* ParamGetLocalFile.hh
*
* Created on: 21 nov. 2014
* Author: AKKA
*/
#ifndef PARAMGETLOCALFILE_HH_
#define PARAMGETLOCALFILE_HH_
#include <set>
#include <string>
#include <boost/shared_ptr.hpp>
#include "ParamGet.hh"
#include "TimeStamp.hh"
#include "VirtualInstrument.hh"
#include "LocalParamData.hh"
#include "Pusher.hh"
using namespace AMDA::Parameters;
namespace AMDA {
namespace LocalFileInterface {
//used class
class ParamData;
/**
* @class ParamGetLocalFile
* @brief It is a DataWriter for a Parameter get from a local file.
*/
class ParamGetLocalFile: public ParamGet_CRTP<ParamGetLocalFile>
{
public:
typedef std::set<std::string> InfoRequestList;
/*
* @brief Constructor
*/
ParamGetLocalFile(Parameter ¶meter);
ParamGetLocalFile(const ParamGetLocalFile &pParamGetLocalFile, Parameter ¶meter);
/*
* @brief Destructor
*/
virtual ~ParamGetLocalFile();
/*
* @brief Get param id in local base
*/
const std::string& getParamId() const
{
return _paramId;
}
/*
* @brief Set param id in local base
*/
void setParamId(const char* paramId)
{
_paramId = paramId;
}
/*
* @brief Get param type in local base
*/
LocalParamType getParamType()
{
return _paramType;
}
/*
* @brief Set param type in local base
*/
void setParamType(LocalParamType type)
{
_paramType = type;
}
/*
* @brief Get param dim1 size in local base
*/
int getParamDim1Size(void)
{
return _paramDim1Size;
}
/*
* @brief Set param dim1 size in local base
*/
void setParamDim1Size(int size)
{
_paramDim1Size = size;
}
/*
* @brief Get param dim2 size in local base
*/
int getParamDim2Size(void)
{
return _paramDim2Size;
}
/*
* @brief Set param dim2 size in local base
*/
void setParamDim2Size(int size)
{
_paramDim2Size = size;
}
/*
* @brief Get param min sampling in local base
*/
double getParamMinSampling(void)
{
return _paramMinSampling;
}
/*
* @brief Set param min sampling in local base
*/
void setParamMinSampling(double minSampling)
{
_paramMinSampling = minSampling;
}
/*
* @brief Get param max sampling in local base
*/
double getParamMaxSampling(void)
{
return _paramMaxSampling;
}
/*
* @brief Set param max sampling in local base
*/
void setParamMaxSampling(double maxSampling)
{
_paramMaxSampling = maxSampling;
}
/*
* @brief Get time format in local base
*/
LocalTimeFormat getTimeFormat()
{
return _timeFormat;
}
/*
* @brief Set time format in local base
*/
void setTimeFormat(LocalTimeFormat timeFormat)
{
_timeFormat = timeFormat;
}
/**
* @brief add a calib info
*/
void createInfoRequest(const char* pParamInfo)
{
_infoRequestList.insert(pParamInfo);
}
/*
* @brief Get Virtual Instrument Id in local base
*/
const std::string& getVIId() const
{
return _viId;
}
/*
* @brief Set Virtual Instrument Id in local base
*/
void setVIId(const char* viId)
{
_viId = viId;
}
/**
* @overload DataWriter::write - Write data in dataParam and return the number of data writed.
*/
virtual unsigned int write();
/*
* @overload DataWriter::getMinSampling
*/
virtual double getMinSampling();
/*
* @brief Init
*/
TimeStamp init();
/**
* @overload DataWriter::updateInfo update parameter info in relation to the ParamGet
*/
virtual void updateInfo(Parameter & parameter);
protected:
/*
* @brief Create _paramData
*/
bool createParamData(void);
/*
* @brief Local Param Id
*/
std::string _paramId;
/*
* @brief Local Param type
*/
LocalParamType _paramType;
/*
* @brief Local Param dim1 size
*/
int _paramDim1Size;
/*
* @brief Local Param dim2 size
*/
int _paramDim2Size;
/*
* @brief Local Param min sampling
*/
double _paramMinSampling;
/*
* @brief Local Param max sampling
*/
double _paramMaxSampling;
/*
* @brief Time format for the local param
*/
LocalTimeFormat _timeFormat;
/*
* @brief List of calib info
*/
InfoRequestList _infoRequestList;
/*
* @brief Local Param fill value
*/
double _fillValue;
/*
* @brief Local VI Id
*/
std::string _viId;
/*
* @brief Time of xml file or 0
*/
TimeStamp _timeStamp;
/*
* @brief Shared pointer to the virtual instrument
*/
VirtualInstrumentSPtr _vi;
/*
* @brief Data pusher
*/
PusherBase *_pusher;
/*
* @brief Parameter data flow
*/
ParamFlowSPtr _paramFlow;
/*
* @brief Get calib info
*/
void getCalibInfo();
};
typedef boost::shared_ptr<ParamGetLocalFile> ParamGetLocalFileSPtr;
} /* namespace LocalFileInterface */
} /* namespace AMDA */
#endif /* PARAMGETLOCALFILE_HH_ */