]> git.ipfire.org Git - people/ms/systemd.git/blob - target.c
automount: implement automount unit type
[people/ms/systemd.git] / target.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 <errno.h>
23 #include <signal.h>
24
25 #include "unit.h"
26 #include "target.h"
27 #include "load-fragment.h"
28 #include "log.h"
29
30 static const UnitActiveState state_translation_table[_TARGET_STATE_MAX] = {
31 [TARGET_DEAD] = UNIT_INACTIVE,
32 [TARGET_ACTIVE] = UNIT_ACTIVE
33 };
34
35 static const char* const state_string_table[_TARGET_STATE_MAX] = {
36 [TARGET_DEAD] = "dead",
37 [TARGET_ACTIVE] = "active"
38 };
39
40 static void target_dump(Unit *u, FILE *f, const char *prefix) {
41 Target *t = TARGET(u);
42
43 assert(t);
44 assert(f);
45
46 fprintf(f,
47 "%sTarget State: %s\n",
48 prefix, state_string_table[t->state]);
49 }
50
51 static void target_set_state(Target *t, TargetState state) {
52 TargetState old_state;
53 assert(t);
54
55 old_state = t->state;
56 t->state = state;
57
58 if (state != old_state)
59 log_debug("%s changed %s → %s", UNIT(t)->meta.id, state_string_table[old_state], state_string_table[state]);
60
61 unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state]);
62 }
63
64 static int target_start(Unit *u) {
65 Target *t = TARGET(u);
66
67 assert(t);
68 assert(t->state == TARGET_DEAD);
69
70 target_set_state(t, TARGET_ACTIVE);
71 return 0;
72 }
73
74 static int target_stop(Unit *u) {
75 Target *t = TARGET(u);
76
77 assert(t);
78 assert(t->state == TARGET_ACTIVE);
79
80 target_set_state(t, TARGET_DEAD);
81 return 0;
82 }
83
84 static UnitActiveState target_active_state(Unit *u) {
85 assert(u);
86
87 return state_translation_table[TARGET(u)->state];
88 }
89
90 static const char *target_sub_state_to_string(Unit *u) {
91 assert(u);
92
93 return state_string_table[TARGET(u)->state];
94 }
95
96 int target_get_runlevel(Target *t) {
97
98 static const struct {
99 const char *special;
100 const int runlevel;
101 } table[] = {
102 { SPECIAL_RUNLEVEL5_TARGET, '5' },
103 { SPECIAL_RUNLEVEL4_TARGET, '4' },
104 { SPECIAL_RUNLEVEL3_TARGET, '3' },
105 { SPECIAL_RUNLEVEL2_TARGET, '2' },
106 { SPECIAL_RUNLEVEL1_TARGET, '1' },
107 { SPECIAL_RUNLEVEL0_TARGET, '0' },
108 { SPECIAL_RUNLEVEL6_TARGET, '6' },
109 };
110
111 unsigned i;
112
113 assert(t);
114
115 /* Tries to determine if this is a SysV runlevel and returns
116 * it if that is so. */
117
118 for (i = 0; i < ELEMENTSOF(table); i++)
119 if (unit_has_name(UNIT(t), table[i].special))
120 return table[i].runlevel;
121
122 return 0;
123 }
124
125 const UnitVTable target_vtable = {
126 .suffix = ".target",
127
128 .load = unit_load_fragment_and_dropin,
129
130 .dump = target_dump,
131
132 .start = target_start,
133 .stop = target_stop,
134
135 .active_state = target_active_state,
136 .sub_state_to_string = target_sub_state_to_string
137 };