-
Notifications
You must be signed in to change notification settings - Fork 0
/
DriverDomoticz.h
110 lines (91 loc) · 3.82 KB
/
DriverDomoticz.h
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
/*
Copyright (c) 2016 Teka101
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef DRIVERDOMOTICZ_H
#define DRIVERDOMOTICZ_H
#include "MHEHardware.h"
class HardwareDomoticz : public MHEHardware
{
private:
DBHarware _hw;
public:
HardwareDomoticz(DBHarware &hw);
~HardwareDomoticz();
MHEDevice *buildObject(DBDevice &dev);
};
struct CacheDeviceDomoticz
{
std::string name;
bool statusIsOn;
float temperature, temperatureRaw;
float humidity;
bool dimmable;
int dimmableValue, dimmableMax;
CacheDeviceDomoticz() : name(""), statusIsOn(false), temperature(0), temperatureRaw(0), humidity(0), dimmable(false), dimmableValue(0), dimmableMax(0)
{
}
operator std::string() const
{
std::stringstream ss;
ss << "CacheDeviceDomoticz["
<< "name=" << name
<< " statusIsOn=" << statusIsOn
<< " temperature=" << temperature
<< " temperatureRaw=" << temperatureRaw
<< " humidity=" << humidity
<< " dimmable=" << dimmable
<< " dimmableValue=" << dimmableValue
<< " dimmableMax=" << dimmableMax
<< "]";
return ss.str();
}
};
class DeviceDomoticz : public MHEDevice
{
private:
std::string _urlDomoticz;
std::string _deviceIdx;
bool _isDayAverage;
CacheDeviceDomoticz _cache;
log4cplus::Logger _log;
bool parseGraphData(const std::string &url, tMHEDeviceValues *values, const std::string &fieldDate, const std::string &dateFormat);
void refreshCache();
bool refreshNormal();
bool refreshDayAverage();
public:
DeviceDomoticz(std::string &urlDomoticz, bool isDayAverage, DBDevice &dev);
~DeviceDomoticz();
float getCachedRawTemperature();
float getCachedTemperature();
float getCachedHumidity();
bool isCachedDimmable();
int getCachedDimmableValue();
int getCachedDimmableMax();
bool isCachedActivated();
float getRawTemperature();
float getTemperature();
float getHumidity();
bool setTempHum(float temperature, float humidity);
bool isDimmable();
int getDimmableValue();
int getDimmableMax();
bool isActivated();
bool setLevel(int level);
bool setStatus(bool activate);
bool sendCommand(const std::string &command, const std::string &value, void *output);
operator std::string() const
{
std::stringstream ss;
ss << "MHEDevice#DeviceDomoticz["
<< "id=" << _id
<< " type=" << _type
<< " deviceIdx=" << _deviceIdx
<< " isDayAverage=" << _isDayAverage
<< "]";
return ss.str();
}
};
#endif // DRIVERDOMOTICZ_H