summaryrefslogtreecommitdiff
path: root/device.c
blob: b8bab4b02d9b92aa993d40762a9dee2d04174c44 (plain)
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
/*-*- Mode: C; c-basic-offset: 8 -*-*/

#include "unit.h"
#include "device.h"
#include "strv.h"

static void device_done(Unit *u) {
        Device *d = DEVICE(u);

        assert(d);
        strv_free(d->sysfs);
}

static void device_dump(Unit *u, FILE *f, const char *prefix) {

        static const char* const state_table[_DEVICE_STATE_MAX] = {
                [DEVICE_DEAD] = "dead",
                [DEVICE_AVAILABLE] = "available"
        };

        Device *s = DEVICE(u);

        assert(s);

        fprintf(f,
                "%sDevice State: %s\n",
                prefix, state_table[s->state]);
}

static UnitActiveState device_active_state(Unit *u) {
        return DEVICE(u)->state == DEVICE_DEAD ? UNIT_INACTIVE : UNIT_ACTIVE;
}

const UnitVTable device_vtable = {
        .suffix = ".device",

        .init = unit_load_fragment_and_dropin,
        .done = device_done,
        .dump = device_dump,

        .active_state = device_active_state
};