ParamGetSpeasyProxy.hh
2.05 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
/*
* 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 local base
*/
const std::string& getParamId() const
{
return _paramId;
}
/*
* @brief Set param id in local base
*/
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();
/*
* @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:
std::string readFile(const std::string& filename);
std::string download(const std::string& pPath);
/*
* @brief Local Param Id
*/
std::string _paramId;
SpeasyProxyParamType _type;
SpeasyProxyContainerType _container;
/*
* @brief Time of xml file or 0
*/
TimeStamp _timeStamp;
/*
* @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_ */