forked from ibm-openbmc/phosphor-state-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduled_host_transition_main.cpp
44 lines (31 loc) · 1.1 KB
/
scheduled_host_transition_main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "config.h"
#include "scheduled_host_transition.hpp"
#include <sdbusplus/bus.hpp>
#include <cstdlib>
#include <exception>
#include <filesystem>
int main()
{
namespace fs = std::filesystem;
// Get a default event loop
auto event = sdeventplus::Event::get_default();
// Get a handle to system dbus
auto bus = sdbusplus::bus::new_default();
// For now, we only have one instance of the host
auto objPathInst = std::string{HOST_OBJPATH} + '0';
// Check SCHEDULED_HOST_TRANSITION_PERSIST_PATH
auto dir = fs::path(SCHEDULED_HOST_TRANSITION_PERSIST_PATH).parent_path();
if (!fs::exists(dir))
{
fs::create_directories(dir);
}
// Add sdbusplus ObjectManager.
sdbusplus::server::manager::manager objManager(bus, objPathInst.c_str());
phosphor::state::manager::ScheduledHostTransition manager(
bus, objPathInst.c_str(), event);
bus.request_name(SCHEDULED_HOST_TRANSITION_BUSNAME);
// Attach the bus to sd_event to service user requests
bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
event.loop();
return 0;
}