blob: eb3f9ede622813027e83770724755d0b84364e0c [file] [log] [blame]
Brandon Wyman24e422f2017-07-25 19:40:14 -05001/**
2 * Copyright © 2017 IBM Corporation
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#include <iostream>
17#include <phosphor-logging/log.hpp>
18#include <systemd/sd-daemon.h>
19#include "argument.hpp"
20#include "event.hpp"
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050021#include "power_supply.hpp"
22#include "device_monitor.hpp"
Brandon Wyman24e422f2017-07-25 19:40:14 -050023
24using namespace witherspoon::power;
25using namespace phosphor::logging;
26
27int main(int argc, char* argv[])
28{
Brandon Wyman24e422f2017-07-25 19:40:14 -050029 auto options = ArgumentParser(argc, argv);
30
31 auto objpath = (options)["path"];
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050032 auto instnum = (options)["instance"];
33 auto invpath = (options)["inventory"];
34 if (argc < 4)
Brandon Wyman24e422f2017-07-25 19:40:14 -050035 {
36 std::cerr << std::endl << "Too few arguments" << std::endl;
37 options.usage(argv);
38 return -1;
39 }
40
41 if (objpath == ArgumentParser::emptyString)
42 {
43 log<level::ERR>("Device monitoring path argument required");
44 return -2;
45 }
46
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050047 if (instnum == ArgumentParser::emptyString)
48 {
49 log<level::ERR>("Device monitoring instance number argument required");
50 return -3;
51 }
52
53 if (invpath == ArgumentParser::emptyString)
54 {
55 log<level::ERR>("Device monitoring inventory path argument required");
56 return -4;
57 }
58
59 auto objname = "power_supply" + instnum;
60 auto instance = std::stoul(instnum);
61 auto psuDevice = std::make_unique<psu::PowerSupply>(objname,
62 std::move(instance),
63 std::move(objpath),
64 std::move(invpath));
Brandon Wyman24e422f2017-07-25 19:40:14 -050065 auto bus = sdbusplus::bus::new_default();
66 sd_event* events = nullptr;
67
68 auto r = sd_event_default(&events);
69 if (r < 0)
70 {
71 log<level::ERR>("Failed call to sd_event_default()",
72 entry("ERROR=%s", strerror(-r)));
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050073 return -5;
Brandon Wyman24e422f2017-07-25 19:40:14 -050074 }
75
76 witherspoon::power::event::Event eventPtr{events};
77
78 //Attach the event object to the bus object so we can
79 //handle both sd_events (for the timers) and dbus signals.
80 bus.attach_event(eventPtr.get(), SD_EVENT_PRIORITY_NORMAL);
81
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050082 // TODO: Use inventory path to subscribe to signal change for power supply presence.
Brandon Wyman24e422f2017-07-25 19:40:14 -050083
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050084 auto pollInterval = std::chrono::milliseconds(1000);
85 DeviceMonitor mainloop(std::move(psuDevice), eventPtr, pollInterval);
86 mainloop.run();
Brandon Wyman24e422f2017-07-25 19:40:14 -050087
Brandon Wyman1db9a9e2017-07-26 18:50:22 -050088 return 0;
Brandon Wyman24e422f2017-07-25 19:40:14 -050089}