Systemd/main.c

64 lines
1.5 KiB
C

/*-*- Mode: C; c-basic-offset: 8 -*-*/
#include <dbus/dbus.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include "manager.h"
#include "log.h"
int main(int argc, char *argv[]) {
Manager *m = NULL;
Unit *target = NULL;
Job *job = NULL;
int r, retval = 1;
assert_se(set_unit_path("test1") >= 0);
if (!(m = manager_new())) {
log_error("Failed to allocate manager object: %s", strerror(ENOMEM));
goto finish;
}
if ((r = manager_coldplug(m)) < 0) {
log_error("Failed to retrieve coldplug information: %s", strerror(-r));
goto finish;
}
if ((r = manager_load_unit(m, SPECIAL_DEFAULT_TARGET, &target)) < 0) {
log_error("Failed to load default target: %s", strerror(-r));
goto finish;
}
printf("→ By units:\n");
manager_dump_units(m, stdout, "\t");
if ((r = manager_add_job(m, JOB_START, target, JOB_REPLACE, false, &job)) < 0) {
log_error("Failed to start default target: %s", strerror(-r));
goto finish;
}
printf("→ By jobs:\n");
manager_dump_jobs(m, stdout, "\t");
if ((r = manager_loop(m)) < 0) {
log_error("Failed to run mainloop: %s", strerror(-r));
goto finish;
}
retval = 0;
finish:
if (m)
manager_free(m);
log_debug("Exit.");
dbus_shutdown();
return retval;
}