Blame view

src/ParamGetImpl/SpeasyProxyInterface/ParamGetSpeasyProxy.hh 3.43 KB
ac860015   Erdogan Furkan   For now - TBC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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"
f9eb7c3a   Erdogan Furkan   For now
16
#include "Pusher.hh"
ac860015   Erdogan Furkan   For now - TBC
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

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 &parameter);

	ParamGetSpeasyProxy(const ParamGetSpeasyProxy &pParamGetSpeasyProxy, Parameter &parameter);

	/*
	 * @brief Destructor
	 */
	virtual ~ParamGetSpeasyProxy();

	/*
ae3e8cdf   Erdogan Furkan   ParamGet of Speas...
48
	 * @brief Get param id in speasy xml
ac860015   Erdogan Furkan   For now - TBC
49
50
51
52
53
54
55
	 */
	const std::string& getParamId() const
	{
		return _paramId;
	}

	/*
ae3e8cdf   Erdogan Furkan   ParamGet of Speas...
56
	 * @brief Set param id in speasy xml
ac860015   Erdogan Furkan   For now - TBC
57
58
59
60
61
62
63
64
65
66
67
68
	 */
	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();

	/*
ae3e8cdf   Erdogan Furkan   ParamGet of Speas...
69
	 * @brief Get param type in speasy xml
ac860015   Erdogan Furkan   For now - TBC
70
	 */
ae3e8cdf   Erdogan Furkan   ParamGet of Speas...
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
	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;
	// }
ac860015   Erdogan Furkan   For now - TBC
147
148
149
150
151
152
153
154
155
156
157
158
159

	/*
	 * @brief Init
	 */
	TimeStamp init();

	/**
	 * @overload DataWriter::updateInfo update parameter info in relation to the ParamGet
	 */
	virtual void updateInfo(Parameter & parameter);

protected:

f9eb7c3a   Erdogan Furkan   For now
160
161
	std::string readFile(const std::string& filename);

ac860015   Erdogan Furkan   For now - TBC
162
163
164
165
166
167
168
169
170

	std::string download(const std::string& pPath);


	/*
	 * @brief Local Param Id
	 */
	std::string _paramId;

ae3e8cdf   Erdogan Furkan   ParamGet of Speas...
171
172
173
174
	/*
	 * @brief Local Param type
	 */

f9eb7c3a   Erdogan Furkan   For now
175
176
	SpeasyProxyParamType _type;

ae3e8cdf   Erdogan Furkan   ParamGet of Speas...
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
	/*
	 * @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;


f9eb7c3a   Erdogan Furkan   For now
198
	SpeasyProxyContainerType _container;
ac860015   Erdogan Furkan   For now - TBC
199
200
201
202
203
204
	
	 /*
	  * @brief Time of xml file or 0
	  */
	TimeStamp _timeStamp;

ae3e8cdf   Erdogan Furkan   ParamGet of Speas...
205
206
	TimeIntervalList::iterator _currentInterval;

ac860015   Erdogan Furkan   For now - TBC
207
208
209
	/*
	 * @brief Data pusher
	 */
f9eb7c3a   Erdogan Furkan   For now
210
	PusherBase *_pusher;
ac860015   Erdogan Furkan   For now - TBC
211
212
213
214

};

typedef boost::shared_ptr<ParamGetSpeasyProxy> ParamGetSpeasyProxySPtr;
f9eb7c3a   Erdogan Furkan   For now
215
size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream);
ac860015   Erdogan Furkan   For now - TBC
216
217
218
219

} /* namespace SpeasyProxyInterface */
} /* namespace AMDA */
#endif /* PARAMGETSPEASYPROXY_HH_ */