wmbusmeters/src/meters_common_implementation.h

85 wiersze
2.2 KiB
C
Czysty Zwykły widok Historia

2018-04-01 06:53:37 +00:00
/*
2019-02-24 14:20:55 +00:00
Copyright (C) 2018-2019 Fredrik Öhrström
2018-04-01 06:53:37 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef METERS_COMMON_IMPLEMENTATION_H_
#define METERS_COMMON_IMPLEMENTATION_H_
#include"meters.h"
2019-05-04 06:52:25 +00:00
#include"units.h"
#include<map>
#include<set>
struct MeterCommonImplementation : public virtual Meter
{
vector<string> ids();
string name();
MeterType type();
vector<int> media();
WMBus *bus();
2018-11-01 16:17:23 +00:00
LinkMode requiredLinkMode();
string datetimeOfUpdateHumanReadable();
string datetimeOfUpdateRobot();
void onUpdate(function<void(Telegram*,Meter*)> cb);
int numUpdates();
bool isTelegramForMe(Telegram *t);
bool useAes();
vector<uchar> key();
std::vector<std::string> getRecords();
double getRecordAsDouble(std::string record);
uint16_t getRecordAsUInt16(std::string record);
MeterCommonImplementation(WMBus *bus, string& name, string& id, string& key,
MeterType type, int manufacturer,
2018-11-01 16:17:23 +00:00
LinkMode required_link_mode);
~MeterCommonImplementation() = default;
string meterName() { return toMeterName(type_); }
protected:
void triggerUpdate(Telegram *t);
void addMedia(int media);
void addManufacturer(int m);
private:
MeterType type_ {};
vector<int> media_;
set<int> manufacturers_;
string name_;
vector<string> ids_;
vector<uchar> key_;
WMBus *bus_ {};
vector<function<void(Telegram*,Meter*)>> on_update_;
int num_updates_ {};
bool use_aes_ {};
time_t datetime_of_update_ {};
2018-11-01 16:17:23 +00:00
LinkMode required_link_mode_ {};
2019-05-04 06:52:25 +00:00
vector<Unit> conversions_ {};
protected:
std::map<std::string,std::pair<int,std::string>> values_;
};
#endif