blob: 3aeefbe94ccaf62b63fa86ba0b78a879a5b2769f [file] [log] [blame]
#include <cstdlib>
#include <exception>
#include <sdbusplus/bus.hpp>
#include <phosphor-logging/log.hpp>
#include "config.h"
#include "watch.hpp"
#include "image_manager.hpp"
int main(int argc, char* argv[])
{
auto bus = sdbusplus::bus::new_default();
sd_event* loop = nullptr;
sd_event_default(&loop);
sdbusplus::server::manager::manager objManager(bus,
SOFTWARE_OBJPATH);
bus.request_name(VERSION_BUSNAME);
try
{
phosphor::software::manager::Manager imageManager(bus);
phosphor::software::manager::Watch watch(loop,
std::bind(
std::mem_fn(
&phosphor::software::manager::Manager::processImage),
&imageManager, std::placeholders::_1));
bus.attach_event(loop, SD_EVENT_PRIORITY_NORMAL);
sd_event_loop(loop);
}
catch (std::exception& e)
{
using namespace phosphor::logging;
log<level::ERR>(e.what());
return -1;
}
sd_event_unref(loop);
return 0;
}