blob: c3b2ceafb7fa25526e9215de1b24d8e77b65ae50 [file] [log] [blame]
Patrick Venture91ac8d32018-11-01 17:03:22 -07001#include "config.h"
2
3#include "group.hpp"
George Liudef5f5a2020-04-10 11:23:52 +08004#ifdef LED_USE_JSON
George Liu616a0712021-02-18 10:50:24 +08005#include "json-parser.hpp"
George Liudef5f5a2020-04-10 11:23:52 +08006#else
Patrick Venture91ac8d32018-11-01 17:03:22 -07007#include "led-gen.hpp"
George Liudef5f5a2020-04-10 11:23:52 +08008#endif
Vishwanatha Subbannaed490732016-12-20 15:59:29 +05309#include "ledlayout.hpp"
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053010#include "manager.hpp"
George Liu2098aa62020-05-09 11:26:35 +080011#include "serialize.hpp"
George Liu1c737af2020-10-16 09:07:02 +080012#include "utils.hpp"
George Liuc777bef2020-11-23 17:04:21 +080013#ifdef USE_LAMP_TEST
Patrick Williams953315d2022-03-16 14:30:39 -050014#include "lamptest/lamptest.hpp"
George Liuc777bef2020-11-23 17:04:21 +080015#endif
16
17#include <sdeventplus/event.hpp>
Patrick Venture91ac8d32018-11-01 17:03:22 -070018
George Liuc5e0f312021-12-27 15:54:31 +080019#include <algorithm>
Patrick Venture91ac8d32018-11-01 17:03:22 -070020#include <iostream>
Vishwanatha Subbannab21fda72016-10-17 17:46:37 +053021
22int main(void)
23{
George Liuc777bef2020-11-23 17:04:21 +080024 // Get a default event loop
25 auto event = sdeventplus::Event::get_default();
26
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053027 /** @brief Dbus constructs used by LED Group manager */
George Liu1c737af2020-10-16 09:07:02 +080028 auto& bus = phosphor::led::utils::DBusHandler::getBus();
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053029
George Liudef5f5a2020-04-10 11:23:52 +080030#ifdef LED_USE_JSON
George Liu616a0712021-02-18 10:50:24 +080031 auto systemLedMap = getSystemLedMap();
George Liudef5f5a2020-04-10 11:23:52 +080032#endif
33
Vishwanatha Subbanna11ca8f92017-02-27 19:33:45 +053034 /** @brief Group manager object */
35 phosphor::led::Manager manager(bus, systemLedMap);
36
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053037 /** @brief sd_bus object manager */
38 sdbusplus::server::manager::manager objManager(bus, OBJPATH);
39
40 /** @brief vector of led groups */
41 std::vector<std::unique_ptr<phosphor::led::Group>> groups;
42
George Liu2098aa62020-05-09 11:26:35 +080043 /** @brief store and re-store Group */
44 phosphor::led::Serialize serialize(SAVED_GROUPS_FILE);
45
George Liuc777bef2020-11-23 17:04:21 +080046#ifdef USE_LAMP_TEST
47 phosphor::led::LampTest lampTest(event, manager);
48
49 groups.emplace_back(std::make_unique<phosphor::led::Group>(
50 bus, LAMP_TEST_OBJECT, manager, serialize,
51 std::bind(std::mem_fn(&phosphor::led::LampTest::requestHandler),
George Liu87fd11c2020-11-23 16:40:14 +080052 &lampTest, std::placeholders::_1, std::placeholders::_2)));
George Liub6151622020-11-23 18:16:18 +080053
54 // Register a lamp test method in the manager class, and call this method
55 // when the lamp test is started
56 manager.setLampTestCallBack(
57 std::bind(std::mem_fn(&phosphor::led::LampTest::processLEDUpdates),
58 &lampTest, std::placeholders::_1, std::placeholders::_2));
George Liuc777bef2020-11-23 17:04:21 +080059#endif
60
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053061 /** Now create so many dbus objects as there are groups */
George Liuc5e0f312021-12-27 15:54:31 +080062 std::ranges::transform(
63 systemLedMap, std::back_inserter(groups),
64 [&bus, &manager, &serialize](
65 const std::pair<std::string,
66 std::set<phosphor::led::Layout::LedAction>>& grp) {
67 return std::make_unique<phosphor::led::Group>(bus, grp.first,
68 manager, serialize);
69 });
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053070
George Liuc777bef2020-11-23 17:04:21 +080071 // Attach the bus to sd_event to service user requests
72 bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
73
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053074 /** @brief Claim the bus */
75 bus.request_name(BUSNAME);
George Liuc777bef2020-11-23 17:04:21 +080076 event.loop();
Vishwanatha Subbanna4c8c72b2016-11-29 23:02:06 +053077
Vishwanatha Subbannab21fda72016-10-17 17:46:37 +053078 return 0;
79}