blob: 482173dee506b4aa4e85303654079063f84709c7 [file] [log] [blame]
Patrick Ventureeeeb8672019-02-08 11:47:42 -08001/**
2 * Copyright 2019 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "sensors/buildjson.hpp"
18
19#include "conf.hpp"
20#include "sensors/sensor.hpp"
21
Patrick Venture35906cc2019-08-29 10:06:29 -070022#include <cstdio>
Patrick Ventureeeeb8672019-02-08 11:47:42 -080023#include <nlohmann/json.hpp>
24
25using json = nlohmann::json;
26
James Feistf81f2882019-02-26 11:26:36 -080027namespace conf
28{
29void from_json(const json& j, conf::SensorConfig& s)
Patrick Ventureeeeb8672019-02-08 11:47:42 -080030{
31 j.at("type").get_to(s.type);
Patrick Venture69c51062019-02-11 09:46:03 -080032 j.at("readPath").get_to(s.readPath);
Patrick Ventureeeeb8672019-02-08 11:47:42 -080033
Patrick Venture69c51062019-02-11 09:46:03 -080034 /* The writePath field is optional in a configuration */
35 auto writePath = j.find("writePath");
36 if (writePath == j.end())
Patrick Ventureeeeb8672019-02-08 11:47:42 -080037 {
Patrick Venture69c51062019-02-11 09:46:03 -080038 s.writePath = "";
Patrick Ventureeeeb8672019-02-08 11:47:42 -080039 }
40 else
41 {
Patrick Venture69c51062019-02-11 09:46:03 -080042 j.at("writePath").get_to(s.writePath);
Patrick Ventureeeeb8672019-02-08 11:47:42 -080043 }
44
Patrick Venture6b9f5992019-09-10 09:18:28 -070045 /* Default to not ignore dbus MinValue/MaxValue - only used by passive
46 * sensors.
47 */
48 s.ignoreDbusMinMax = false;
Patrick Venturec7ab57e2019-08-29 09:35:19 -070049 s.min = 0;
50 s.max = 0;
51
Patrick Venture6b9f5992019-09-10 09:18:28 -070052 auto ignore = j.find("ignoreDbusMinMax");
53 if (ignore != j.end())
54 {
55 j.at("ignoreDbusMinMax").get_to(s.ignoreDbusMinMax);
56 }
57
Patrick Ventureeeeb8672019-02-08 11:47:42 -080058 /* The min field is optional in a configuration. */
59 auto min = j.find("min");
Patrick Venturec7ab57e2019-08-29 09:35:19 -070060 if (min != j.end())
Patrick Ventureeeeb8672019-02-08 11:47:42 -080061 {
Patrick Venture35906cc2019-08-29 10:06:29 -070062 if (s.type == "fan")
63 {
64 j.at("min").get_to(s.min);
65 }
66 else
67 {
68 std::fprintf(stderr, "Non-fan types ignore min value specified\n");
69 }
Patrick Ventureeeeb8672019-02-08 11:47:42 -080070 }
71
72 /* The max field is optional in a configuration. */
73 auto max = j.find("max");
Patrick Venturec7ab57e2019-08-29 09:35:19 -070074 if (max != j.end())
Patrick Ventureeeeb8672019-02-08 11:47:42 -080075 {
Patrick Venture35906cc2019-08-29 10:06:29 -070076 if (s.type == "fan")
77 {
78 j.at("max").get_to(s.max);
79 }
80 else
81 {
82 std::fprintf(stderr, "Non-fan types ignore max value specified\n");
83 }
Patrick Ventureeeeb8672019-02-08 11:47:42 -080084 }
85
86 /* The timeout field is optional in a configuration. */
87 auto timeout = j.find("timeout");
88 if (timeout == j.end())
89 {
90 s.timeout = Sensor::getDefaultTimeout(s.type);
91 }
92 else
93 {
94 j.at("timeout").get_to(s.timeout);
95 }
96}
James Feistf81f2882019-02-26 11:26:36 -080097} // namespace conf
Patrick Ventureeeeb8672019-02-08 11:47:42 -080098
James Feistf81f2882019-02-26 11:26:36 -080099std::map<std::string, struct conf::SensorConfig>
Patrick Ventureeeeb8672019-02-08 11:47:42 -0800100 buildSensorsFromJson(const json& data)
101{
James Feistf81f2882019-02-26 11:26:36 -0800102 std::map<std::string, struct conf::SensorConfig> config;
Patrick Ventureeeeb8672019-02-08 11:47:42 -0800103 auto sensors = data["sensors"];
104
Patrick Venture6f59cf22019-02-08 14:59:44 -0800105 /* TODO: If no sensors, this is invalid, and we should except here or during
106 * parsing.
107 */
Patrick Ventureeeeb8672019-02-08 11:47:42 -0800108 for (const auto& sensor : sensors)
109 {
James Feistf81f2882019-02-26 11:26:36 -0800110 config[sensor["name"]] = sensor.get<struct conf::SensorConfig>();
Patrick Ventureeeeb8672019-02-08 11:47:42 -0800111 }
112
113 return config;
114}