chiark / gitweb /
dbus: expose cgroup properties in introspection everywhere
[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 #include "unit.h"
27
28 /* We simply watch devices, we cannot plug/unplug them. That
29  * simplifies the state engine greatly */
30 typedef enum DeviceState {
31         DEVICE_DEAD,
32         DEVICE_PLUGGED,
33         _DEVICE_STATE_MAX,
34         _DEVICE_STATE_INVALID = -1
35 } DeviceState;
36
37 struct Device {
38         Unit meta;
39
40         char *sysfs;
41
42         /* In order to be able to distinguish dependencies on
43         different device nodes we might end up creating multiple
44         devices for the same sysfs path. We chain them up here. */
45
46         LIST_FIELDS(struct Device, same_sysfs);
47
48         DeviceState state;
49 };
50
51 extern const UnitVTable device_vtable;
52
53 void device_fd_event(Manager *m, int events);
54
55 const char* device_state_to_string(DeviceState i) _const_;
56 DeviceState device_state_from_string(const char *s) _pure_;