wmbusmeters/src/config.h

136 wiersze
4.6 KiB
C
Czysty Zwykły widok Historia

/*
2020-09-08 12:55:01 +00:00
Copyright (C) 2019-2020 Fredrik Öhrström
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 CONFIG_H
#define CONFIG_H
2019-05-04 06:52:25 +00:00
#include"units.h"
#include"util.h"
#include"wmbus.h"
#include"meters.h"
#include<set>
#include<vector>
using namespace std;
2019-02-24 16:31:32 +00:00
enum class MeterFileType
{
Overwrite, Append
};
2019-06-20 12:28:52 +00:00
enum class MeterFileNaming
{
Name, Id, NameId
};
2019-12-11 17:56:34 +00:00
enum class MeterFileTimestamp
{
Never, Day, Hour, Minute, Micros
};
struct Configuration
{
bool daemon {};
std::string pid_file;
std::string device_override;
std::string listento_override;
bool useconfig {};
2019-02-26 08:33:10 +00:00
std::string config_root;
2019-02-23 17:30:16 +00:00
bool reload {};
bool need_help {};
bool silent {};
bool verbose {};
bool version {};
bool license {};
bool debug {};
2020-08-01 19:56:46 +00:00
bool trace {};
bool internaltesting {}; // Only for testing! When true, shorten all timeouts.
bool logtelegrams {};
bool meterfiles {};
std::string meterfiles_dir;
MeterFileType meterfiles_action {};
2019-06-20 12:28:52 +00:00
MeterFileNaming meterfiles_naming {};
2019-12-11 17:56:34 +00:00
MeterFileTimestamp meterfiles_timestamp {}; // Default is never.
2019-02-24 14:20:55 +00:00
bool use_logfile {};
2020-09-13 14:55:22 +00:00
bool use_stderr_for_log = true; // Default is to use stderr for logging.
2020-10-25 19:57:25 +00:00
bool ignore_duplicate_telegrams = false; // Default is to report all telegrams.
2019-02-24 14:20:55 +00:00
std::string logfile;
bool json {};
bool fields {};
char separator { ';' };
2020-07-30 09:18:44 +00:00
std::vector<std::string> telegram_shells;
std::vector<std::string> alarm_shells;
2020-08-01 19:56:46 +00:00
int alarm_timeout {}; // Maximum number of seconds between dongle receiving two telegrams.
std::string alarm_expected_activity; // Only warn when within these time periods.
bool exit_instead_of_alarm_ {};
bool list_shell_envs {};
2020-05-09 21:43:30 +00:00
bool list_fields {};
bool list_meters {};
std::string list_meters_search;
// When asking for envs or fields, this is the meter type to list for.
std::string list_meter;
bool oneshot {};
int exitafter {}; // Seconds to exit.
2020-09-25 21:56:50 +00:00
int resetafter {}; // Reset the wmbus devices regularly.
std::vector<SpecifiedDevice> supplied_wmbus_devices; // /dev/ttyUSB0, simulation.txt, rtlwmbus, /dev/ttyUSB1:9600
bool use_auto_device_detect {}; // Set to true if auto was supplied as device.
std::set<std::string> do_not_probe_ttys; // Do not probe these ttys! all = all of them.
LinkModeSet auto_device_linkmodes; // The linkmodes specified by auto:c1,t1
bool single_device_override {}; // Set to true if there is a stdin/file or simulation device.
bool simulation_found {};
LinkModeSet default_device_linkmodes; // Backwards compatible --listento=c1 or --c1 will set the default_linkmodes.
// A device without a :t1 suffix, will use this linkmode.
// Is empty when not set.
LinkModeSet all_device_linkmodes_specified; // A union of all device specified linkmodes.
// Eventually not all devices might be found, so a realtime check is done later.
LinkModeSet all_meters_linkmodes_specified; // A union of all meters linkmodes.
2019-02-25 21:03:20 +00:00
string telegram_reader;
// A set of all link modes (union) that the user requests the wmbus dongle to listen to.
bool no_init {};
2019-05-04 06:52:25 +00:00
std::vector<Unit> conversions;
2020-05-09 21:43:30 +00:00
std::vector<std::string> selected_fields;
std::vector<MeterInfo> meters;
std::vector<std::string> jsons; // Additional jsons to always add.
2019-02-24 13:08:51 +00:00
~Configuration() = default;
};
shared_ptr<Configuration> loadConfiguration(string root, string device_override, string listento_override);
void handleConversions(Configuration *c, string s);
2020-05-09 21:43:30 +00:00
void handleSelectedFields(Configuration *c, string s);
2020-09-08 12:55:01 +00:00
bool handleDevice(Configuration *c, string devicefile);
enum class LinkModeCalculationResultType
{
Success,
NoMetersMustSupplyModes,
AutomaticDeductionFailed,
DongleCannotListenTo,
MightMissTelegrams
};
struct LinkModeCalculationResult
{
LinkModeCalculationResultType type;
std::string msg;
};
2020-02-06 12:14:46 +00:00
LinkModeCalculationResult calculateLinkModes(Configuration *c, WMBus *wmbus, bool link_modes_matter = true);
#endif