chiark / gitweb /
core: do not use quotes around virt and arch
[elogind.git] / src / core / device.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 typedef struct Device Device;
25
26
27 /* We simply watch devices, we cannot plug/unplug them. That
28  * simplifies the state engine greatly */
29 typedef enum DeviceState {
30         DEVICE_DEAD,
31         DEVICE_TENTATIVE, /* mounted or swapped, but not (yet) announced by udev */
32         DEVICE_PLUGGED,   /* announced by udev */
33         _DEVICE_STATE_MAX,
34         _DEVICE_STATE_INVALID = -1
35 } DeviceState;
36
37 typedef enum DeviceFound {
38         DEVICE_NOT_FOUND = 0,
39         DEVICE_FOUND_UDEV = 1,
40         DEVICE_FOUND_MOUNT = 2,
41         DEVICE_FOUND_SWAP = 4,
42 } DeviceFound;
43
44 struct Device {
45         Unit meta;
46
47         char *sysfs;
48         DeviceFound found;
49
50         /* In order to be able to distinguish dependencies on
51         different device nodes we might end up creating multiple
52         devices for the same sysfs path. We chain them up here. */
53         LIST_FIELDS(struct Device, same_sysfs);
54
55         DeviceState state;
56 };
57
58 extern const UnitVTable device_vtable;
59
60 const char* device_state_to_string(DeviceState i) _const_;
61 DeviceState device_state_from_string(const char *s) _pure_;
62
63 int device_found_node(Manager *m, const char *node, bool add, DeviceFound found, bool now);