chiark / gitweb /
util-lib: move formats-util.h from shared/ to basic/
[elogind.git] / src / login / logind-session-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 2013 David Herrmann
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 enum DeviceType DeviceType;
25 typedef struct SessionDevice SessionDevice;
26
27 #include "list.h"
28 #include "logind.h"
29
30 enum DeviceType {
31         DEVICE_TYPE_UNKNOWN,
32         DEVICE_TYPE_DRM,
33         DEVICE_TYPE_EVDEV,
34 };
35
36 struct SessionDevice {
37         Session *session;
38         Device *device;
39
40         dev_t dev;
41         char *node;
42         int fd;
43         bool active;
44         DeviceType type;
45
46         LIST_FIELDS(struct SessionDevice, sd_by_device);
47 };
48
49 int session_device_new(Session *s, dev_t dev, SessionDevice **out);
50 void session_device_free(SessionDevice *sd);
51 void session_device_complete_pause(SessionDevice *sd);
52
53 void session_device_resume_all(Session *s);
54 void session_device_pause_all(Session *s);
55 unsigned int session_device_try_pause_all(Session *s);