blob: 05f1a6ddb32492ec30ced787e4c50fd2cd5f6c06 [file] [log] [blame]
George Liu616a0712021-02-18 10:50:24 +08001#include "config.h"
2
3#include "json-config.hpp"
4#include "ledlayout.hpp"
5
6#include <nlohmann/json.hpp>
George Liue9fb5c62021-07-01 14:05:32 +08007#include <phosphor-logging/lg2.hpp>
George Liu616a0712021-02-18 10:50:24 +08008#include <sdbusplus/bus.hpp>
9#include <sdeventplus/event.hpp>
10
11#include <filesystem>
12#include <fstream>
13#include <iostream>
14
15namespace fs = std::filesystem;
16
17using Json = nlohmann::json;
George Liu616a0712021-02-18 10:50:24 +080018
19// Priority for a particular LED needs to stay SAME across all groups
20// phosphor::led::Layout::Action can only be one of `Blink` and `On`
Patrick Williamsf2044032022-03-17 05:12:30 -050021using PriorityMap =
22 std::unordered_map<std::string, phosphor::led::Layout::Action>;
George Liu616a0712021-02-18 10:50:24 +080023
24/** @brief Parse LED JSON file and output Json object
25 *
26 * @param[in] path - path of LED JSON file
27 *
28 * @return const Json - Json object
29 */
Patrick Williams73ff9ad2022-03-16 16:27:21 -050030Json readJson(const fs::path& path)
George Liu616a0712021-02-18 10:50:24 +080031{
George Liu616a0712021-02-18 10:50:24 +080032 if (!fs::exists(path) || fs::is_empty(path))
33 {
George Liue9fb5c62021-07-01 14:05:32 +080034 lg2::error("Incorrect File Path or empty file, FILE_PATH = {PATH}",
35 "PATH", path);
George Liu616a0712021-02-18 10:50:24 +080036 throw std::runtime_error("Incorrect File Path or empty file");
37 }
38
39 try
40 {
41 std::ifstream jsonFile(path);
42 return Json::parse(jsonFile);
43 }
44 catch (const std::exception& e)
45 {
George Liue9fb5c62021-07-01 14:05:32 +080046 lg2::error(
47 "Failed to parse config file, ERROR = {ERROR}, FILE_PATH = {PATH}",
48 "ERROR", e, "PATH", path);
George Liu616a0712021-02-18 10:50:24 +080049 throw std::runtime_error("Failed to parse config file");
50 }
51}
52
53/** @brief Returns action enum based on string
54 *
55 * @param[in] action - action string
56 *
57 * @return Action - action enum (On/Blink)
58 */
59phosphor::led::Layout::Action getAction(const std::string& action)
60{
61 assert(action == "On" || action == "Blink");
62
Patrick Williamsed80e882022-03-17 05:03:51 -050063 return action == "Blink" ? phosphor::led::Layout::Action::Blink
64 : phosphor::led::Layout::Action::On;
George Liu616a0712021-02-18 10:50:24 +080065}
66
67/** @brief Validate the Priority of an LED is same across ALL groups
68 *
69 * @param[in] name - led name member of each group
70 * @param[in] priority - member priority of each group
Patrick Williamsf2044032022-03-17 05:12:30 -050071 * @param[out] priorityMap - std::unordered_map, key:name, value:priority
George Liu616a0712021-02-18 10:50:24 +080072 *
73 * @return
74 */
75void validatePriority(const std::string& name,
76 const phosphor::led::Layout::Action& priority,
77 PriorityMap& priorityMap)
78{
George Liu616a0712021-02-18 10:50:24 +080079 auto iter = priorityMap.find(name);
80 if (iter == priorityMap.end())
81 {
82 priorityMap.emplace(name, priority);
83 return;
84 }
85
86 if (iter->second != priority)
87 {
George Liue9fb5c62021-07-01 14:05:32 +080088 lg2::error(
89 "Priority of LED is not same across all, Name = {NAME}, Old Priority = {OLD_PRIO}, New Priority = {NEW_PRIO}",
90 "NAME", name, "OLD_PRIO", int(iter->second), "NEW_PRIO",
91 int(priority));
George Liu616a0712021-02-18 10:50:24 +080092
93 throw std::runtime_error(
94 "Priority of at least one LED is not same across groups");
95 }
96}
97
Patrick Williams73ff9ad2022-03-16 16:27:21 -050098/** @brief Load JSON config and return led map (JSON version 1)
George Liu616a0712021-02-18 10:50:24 +080099 *
Patrick Williams158b2c12022-03-17 05:57:44 -0500100 * @return phosphor::led::GroupMap
George Liu616a0712021-02-18 10:50:24 +0800101 */
Patrick Williams158b2c12022-03-17 05:57:44 -0500102const phosphor::led::GroupMap loadJsonConfigV1(const Json& json)
George Liu616a0712021-02-18 10:50:24 +0800103{
Patrick Williams158b2c12022-03-17 05:57:44 -0500104 phosphor::led::GroupMap ledMap{};
George Liu616a0712021-02-18 10:50:24 +0800105 PriorityMap priorityMap{};
106
107 // define the default JSON as empty
108 const Json empty{};
George Liu616a0712021-02-18 10:50:24 +0800109 auto leds = json.value("leds", empty);
110
111 for (const auto& entry : leds)
112 {
George Liu5d92f422023-07-19 09:18:24 +0800113 fs::path tmpPath("/xyz/openbmc_project/led/groups");
George Liu616a0712021-02-18 10:50:24 +0800114 tmpPath /= entry.value("group", "");
115 auto objpath = tmpPath.string();
116 auto members = entry.value("members", empty);
117
Patrick Williams158b2c12022-03-17 05:57:44 -0500118 phosphor::led::ActionSet ledActions{};
George Liu616a0712021-02-18 10:50:24 +0800119 for (const auto& member : members)
120 {
121 auto name = member.value("Name", "");
122 auto action = getAction(member.value("Action", ""));
123 uint8_t dutyOn = member.value("DutyOn", 50);
124 uint16_t period = member.value("Period", 0);
125
126 // Since only have Blink/On and default priority is Blink
127 auto priority = getAction(member.value("Priority", "Blink"));
128
129 // Same LEDs can be part of multiple groups. However, their
130 // priorities across groups need to match.
131 validatePriority(name, priority, priorityMap);
132
133 phosphor::led::Layout::LedAction ledAction{name, action, dutyOn,
134 period, priority};
135 ledActions.emplace(ledAction);
136 }
137
Patrick Williamsf2044032022-03-17 05:12:30 -0500138 // Generated an std::unordered_map of LedGroupNames to std::set of LEDs
George Liu616a0712021-02-18 10:50:24 +0800139 // containing the name and properties.
140 ledMap.emplace(objpath, ledActions);
141 }
142
143 return ledMap;
144}
145
Patrick Williams73ff9ad2022-03-16 16:27:21 -0500146/** @brief Load JSON config and return led map
147 *
Patrick Williams158b2c12022-03-17 05:57:44 -0500148 * @return phosphor::led::GroupMap
Patrick Williams73ff9ad2022-03-16 16:27:21 -0500149 */
Patrick Williams158b2c12022-03-17 05:57:44 -0500150const phosphor::led::GroupMap loadJsonConfig(const fs::path& path)
Patrick Williams73ff9ad2022-03-16 16:27:21 -0500151{
152 auto json = readJson(path);
153
154 auto version = json.value("version", 1);
155 switch (version)
156 {
157 case 1:
158 return loadJsonConfigV1(json);
159
160 default:
161 lg2::error("Unsupported JSON Version: {VERSION}", "VERSION",
162 version);
163 throw std::runtime_error("Unsupported version");
164 }
165
Patrick Williams158b2c12022-03-17 05:57:44 -0500166 return phosphor::led::GroupMap{};
Patrick Williams73ff9ad2022-03-16 16:27:21 -0500167}
168
George Liu616a0712021-02-18 10:50:24 +0800169/** @brief Get led map from LED groups JSON config
170 *
Patrick Williams7217c032022-03-16 16:26:09 -0500171 * @param[in] config - Path to the JSON config.
Patrick Williams158b2c12022-03-17 05:57:44 -0500172 * @return phosphor::led::GroupMap
Patrick Williams7217c032022-03-16 16:26:09 -0500173 *
174 * @note if config is an empty string, daemon will interrogate dbus for
175 * compatible strings.
George Liu616a0712021-02-18 10:50:24 +0800176 */
Patrick Williams158b2c12022-03-17 05:57:44 -0500177const phosphor::led::GroupMap getSystemLedMap(fs::path config)
George Liu616a0712021-02-18 10:50:24 +0800178{
Patrick Williams7217c032022-03-16 16:26:09 -0500179 if (config.empty())
George Liu616a0712021-02-18 10:50:24 +0800180 {
Patrick Williams7217c032022-03-16 16:26:09 -0500181 config = phosphor::led::getJsonConfig();
George Liu616a0712021-02-18 10:50:24 +0800182 }
183
Patrick Williams7217c032022-03-16 16:26:09 -0500184 return loadJsonConfig(config);
George Liu616a0712021-02-18 10:50:24 +0800185}