diff options
author | Scott Murray <scott.murray@konsulko.com> | 2019-04-22 21:38:18 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2019-04-22 22:42:06 -0400 |
commit | b523b0c8cc37a989bfb84a5ebefe1ec1f2b0cbfb (patch) | |
tree | 482f3fee892fc0a0a327d256bd25134fb6996e15 /app/configuration.h |
Initial code check-inicefish_8.99.5icefish_8.99.4icefish_8.99.3icefish_8.99.2icefish_8.99.1icefish/8.99.5icefish/8.99.4icefish/8.99.3icefish/8.99.2icefish/8.99.1halibut_8.0.6halibut_8.0.5halibut_8.0.4halibut_8.0.3halibut_8.0.2halibut_8.0.1halibut_8.0.0halibut_7.99.3halibut_7.99.2halibut_7.99.1halibut/8.0.6halibut/8.0.5halibut/8.0.4halibut/8.0.3halibut/8.0.2halibut/8.0.1halibut/8.0.0halibut/7.99.3halibut/7.99.2halibut/7.99.18.99.58.99.48.99.38.99.28.99.18.0.68.0.58.0.48.0.38.0.28.0.18.0.07.99.37.99.27.99.1halibut
A simple telematics demo application for AGL. It reads vehicle and
engine speed from the CAN low-level binding and publishes them via
MQTT.
Change-Id: Ib85904e87919053cad1215b3f53cee81db25c94a
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'app/configuration.h')
-rw-r--r-- | app/configuration.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/app/configuration.h b/app/configuration.h new file mode 100644 index 0000000..0e7a780 --- /dev/null +++ b/app/configuration.h @@ -0,0 +1,71 @@ +/* + * Copyright (C) 2019 Konsulko Group + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef CONFIGURATION_H +#define CONFIGURATION_H + +#include <string> + +class Configuration +{ +public: + Configuration(const std::string &file, const std::string &device_uuid = ""); + ~Configuration() {}; + + uint32_t getLogLevel() { return m_log_level; } + bool isCellularEnabled() { return m_cellular_enabled; } + bool isGpsEnabled() { return m_gps_enabled; } + bool getCheckOnline() { return m_check_online; } + std::string getDeviceUUID() { return std::string(m_device_uuid); } + + std::string getMqttClientId() { return std::string(m_mqtt_client_id); } + std::string getMqttBroker() { return std::string(m_mqtt_broker); } + uint32_t getMqttPort() { return m_mqtt_port; } + uint32_t getMqttKeepalive() { return m_mqtt_keepalive; } + uint32_t getMqttQos() { return m_mqtt_qos; } + bool getMqttRetain() { return m_mqtt_retain; } + std::string getMqttUsername() { return std::string(m_mqtt_username); } + std::string getMqttPassword() { return std::string(m_mqtt_password); } + + uint32_t getUpdatePeriod() { return m_update_period; } + +private: + void read(); + + std::string m_filename; + + // General + uint32_t m_log_level = 0; + bool m_cellular_enabled = false; + bool m_gps_enabled = false; + bool m_check_online = false; + std::string m_device_uuid; + + // MQTT broker + std::string m_mqtt_client_id = ""; + std::string m_mqtt_broker = "iot.eclipse.org"; + uint32_t m_mqtt_port = 1883; + uint32_t m_mqtt_keepalive = 60; + uint32_t m_mqtt_qos = 0; + bool m_mqtt_retain = true; + std::string m_mqtt_username = ""; + std::string m_mqtt_password = ""; + + // Event + uint32_t m_update_period = 10; +}; + +#endif // CONFIGURATION_H |