chiark / gitweb /
main: initialize default boot target from argv[1]
[elogind.git] / main.c
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <dbus/dbus.h>
23
24 #include <stdio.h>
25 #include <errno.h>
26 #include <string.h>
27 #include <unistd.h>
28
29 #include "manager.h"
30 #include "log.h"
31
32 int main(int argc, char *argv[]) {
33         Manager *m = NULL;
34         Unit *target = NULL;
35         Job *job = NULL;
36         int r, retval = 1;
37         const char *default_unit;
38
39         if (argc >= 2)
40                 default_unit = argv[1];
41         else
42                 default_unit = SPECIAL_DEFAULT_TARGET;
43
44         if ((r = manager_new(&m)) < 0) {
45                 log_error("Failed to allocate manager object: %s", strerror(-r));
46                 goto finish;
47         }
48
49         if ((r = manager_coldplug(m)) < 0) {
50                 log_error("Failed to retrieve coldplug information: %s", strerror(-r));
51                 goto finish;
52         }
53
54         log_debug("Activating default unit: %s", default_unit);
55
56         if ((r = manager_load_unit(m, default_unit, &target)) < 0) {
57                 log_error("Failed to load default target: %s", strerror(-r));
58                 goto finish;
59         }
60
61         printf("→ By units:\n");
62         manager_dump_units(m, stdout, "\t");
63
64         if ((r = manager_add_job(m, JOB_START, target, JOB_REPLACE, false, &job)) < 0) {
65                 log_error("Failed to start default target: %s", strerror(-r));
66                 goto finish;
67         }
68
69         printf("→ By jobs:\n");
70         manager_dump_jobs(m, stdout, "\t");
71
72         if ((r = manager_loop(m)) < 0) {
73                 log_error("Failed to run mainloop: %s", strerror(-r));
74                 goto finish;
75         }
76
77         retval = 0;
78
79 finish:
80         if (m)
81                 manager_free(m);
82
83         log_debug("Exit.");
84
85         dbus_shutdown();
86
87         return retval;
88 }