wmbusmeters/src/config.h

103 wiersze
2.6 KiB
C
Czysty Zwykły widok Historia

/*
Copyright (C) 2019 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<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
};
struct Configuration
{
bool daemon {};
std::string pid_file;
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 silence {};
bool verbose {};
bool version {};
bool license {};
bool debug {};
bool logtelegrams {};
bool meterfiles {};
std::string meterfiles_dir;
MeterFileType meterfiles_action {};
2019-06-20 12:28:52 +00:00
MeterFileNaming meterfiles_naming {};
2019-02-24 14:20:55 +00:00
bool use_logfile {};
std::string logfile;
bool json {};
bool fields {};
char separator { ';' };
std::vector<std::string> shells;
bool list_shell_envs {};
bool oneshot {};
int exitafter {}; // Seconds to exit.
2019-10-16 17:56:59 +00:00
int reopenafter {}; // Re-open the serial device repeatedly. Silly dongle.
2019-02-25 21:03:20 +00:00
string device; // auto, /dev/ttyUSB0, simulation.txt, rtlwmbus
2019-02-26 21:47:12 +00:00
string device_extra; // The frequency or the command line that will start rtlwmbus
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.
LinkModeSet listen_to_link_modes;
bool link_mode_configured {};
bool no_init {};
2019-05-04 06:52:25 +00:00
std::vector<Unit> conversions;
std::vector<MeterInfo> meters;
std::vector<std::string> jsons; // Additional jsons to always add.
2019-02-24 13:08:51 +00:00
~Configuration() = default;
};
2019-02-24 13:08:51 +00:00
unique_ptr<Configuration> loadConfiguration(string root);
void handleConversions(Configuration *c, string s);
enum class LinkModeCalculationResultType
{
Success,
NoMetersMustSupplyModes,
AutomaticDeductionFailed,
DongleCannotListenTo,
MightMissTelegrams
};
struct LinkModeCalculationResult
{
LinkModeCalculationResultType type;
std::string msg;
};
LinkModeCalculationResult calculateLinkModes(Configuration *c, WMBus *wmbus);
#endif