ParamGetSpeasyProxy.hh
3.5 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
/*
* ParamGetSpeasyProxy.hh
*
* Created on: April 25, 2024
* Author: AKKODIS - Furkan
*/
#ifndef PARAMGETSPEASYPROXY_HH_
#define PARAMGETSPEASYPROXY_HH_
#include <set>
#include <string>
#include <boost/shared_ptr.hpp>
#include "ParamGet.hh"
#include "TimeStamp.hh"
#include "Pusher.hh"
using namespace AMDA::Parameters;
namespace AMDA {
namespace SpeasyProxyInterface {
//used class
class ParamData;
/**
* @class ParamGetSpeasyProxy
* @brief It is a DataWriter for a Parameter get from speasy proxy.
*/
class ParamGetSpeasyProxy: public ParamGet_CRTP<ParamGetSpeasyProxy>
{
public:
/*
* @brief Constructor
*/
ParamGetSpeasyProxy(Parameter ¶meter);
ParamGetSpeasyProxy(const ParamGetSpeasyProxy &pParamGetSpeasyProxy, Parameter ¶meter);
/*
* @brief Destructor
*/
virtual ~ParamGetSpeasyProxy();
/*
* @brief Get param id in speasy xml
*/
const std::string& getParamId() const
{
return _paramId;
}
/*
* @brief Set param id in speasy xml
*/
void setParamId(const char* paramId)
{
_paramId = paramId;
}
/**
* @overload DataWriter::write - Write data in dataParam and return the number of data writed.
*/
virtual unsigned int write();
/*
* @brief Get param type in speasy xml
*/
SpeasyProxyParamType getType()
{
return _type;
}
/*
* @brief Set param type in speasy xml
*/
void setType(SpeasyProxyParamType type)
{
_type = type;
}
/*
* @brief Get param dim1 size in speasy xml
*/
int getDim1(void)
{
return _dim1;
}
/*
* @brief Set param dim1 size in speasy xml
*/
void setDim1(int size)
{
_dim1 = size;
}
/*
* @brief Get param dim2 size in speasy xml
*/
int getDim2(void)
{
return _dim2;
}
/*
* @brief Set param dim2 size in speasy xml
*/
void setDim2(int size)
{
_dim2 = size;
}
/*
* @brief Get param min sampling in speasy xml
*/
double getMinSampling(void)
{
return _minSampling;
}
/*
* @brief Set param min sampling in speasy xml
*/
void setMinSampling(double minSampling)
{
_minSampling = minSampling;
}
// /*
// * @brief Get param max sampling in speasy xml
// */
// double getMaxSampling(void)
// {
// return _maxSampling;
// }
// /*
// * @brief Set param max sampling in speasy xml
// */
// void setMaxSampling(double maxSampling)
// {
// _maxSampling = maxSampling;
// }
/*
* @brief Init
*/
TimeStamp init();
std::string getURLTime(double time);
std::string getSpeasyProxyLink();
/**
* @overload DataWriter::updateInfo update parameter info in relation to the ParamGet
*/
virtual void updateInfo(Parameter & parameter);
protected:
std::string readFile(const std::string& filename);
std::string download(const std::string& pPath);
/*
* @brief Local Param Id
*/
std::string _paramId;
/*
* @brief Local Param type
*/
SpeasyProxyParamType _type;
/*
* @brief Local Param dim1 size
*/
int _dim1;
/*
* @brief Local Param dim2 size
*/
int _dim2;
/*
* @brief Local Param min sampling
*/
double _minSampling;
// /*
// * @brief Local Param max sampling
// */
// double _maxSampling;
SpeasyProxyContainerType _container;
/*
* @brief Time of xml file or 0
*/
TimeStamp _timeStamp;
TimeIntervalList::iterator _currentInterval;
/*
* @brief Data pusher
*/
PusherBase *_pusher;
};
typedef boost::shared_ptr<ParamGetSpeasyProxy> ParamGetSpeasyProxySPtr;
size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream);
} /* namespace SpeasyProxyInterface */
} /* namespace AMDA */
#endif /* PARAMGETSPEASYPROXY_HH_ */