wmbusmeters/src/meters_common_implementation.h

98 wiersze
2.8 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>
2019-05-04 09:10:09 +00:00
struct Print
{
string vname; // Value name, like: total current previous target
Quantity quantity; // Quantity: Energy, Volume
Unit default_unit; // Default unit for above quantity: KWH, M3
function<double(Unit)> getValueFunc; // Callback to fetch the value from the meter.
string help; // Helpful information on this meters use of this value.
bool field; // If true, print in hr/fields output.
2019-05-04 09:10:09 +00:00
};
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 addConversions(std::vector<Unit> cs);
void addMedia(int media);
void addManufacturer(int m);
void addPrint(string vname, Quantity vquantity, function<double(Unit)> getValueFunc, string help, bool field);
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_ {};
protected:
std::map<std::string,std::pair<int,std::string>> values_;
vector<Unit> conversions_;
vector<Print> prints_;
};
#endif