chiark / gitweb /
update INSTALL
[elogind.git] / udev / lib / libudev-private.h
1 /*
2  * libudev - interface to udev device information
3  *
4  * Copyright (C) 2008 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef _LIBUDEV_PRIVATE_H_
21 #define _LIBUDEV_PRIVATE_H_
22
23 #include "libudev.h"
24 #include "../udev.h"
25
26 struct udev {
27         int refcount;
28         void (*log_fn)(struct udev *udev,
29                        int priority, const char *file, int line, const char *fn,
30                        const char *format, va_list args);
31 };
32
33 struct udev_device {
34         int refcount;
35         struct udev *udev;
36         struct udevice *udevice;
37 };
38
39 #ifdef USE_LOG
40 #define log_dbg(udev, arg...) \
41         udev_log(udev, LOG_DEBUG, __FILE__, __LINE__, __FUNCTION__, ## arg)
42
43 #define log_info(udev, arg...) \
44         udev_log(udev, LOG_INFO, __FILE__, __LINE__, __FUNCTION__, ## arg)
45
46 #define log_err(udev, arg...) \
47         udev_log(udev, LOG_ERR, __FILE__, __LINE__, __FUNCTION__, ## arg)
48
49 void udev_log(struct udev *udev,
50               int priority, const char *file, int line, const char *fn,
51               const char *format, ...)
52               __attribute__ ((format(printf, 6, 7)));
53 #else
54 static inline void udev_log(struct udev *udev,
55               int priority, const char *file, int line, const char *fn,
56               const char *format, ...)
57               __attribute__ ((format(printf, 6, 7))) {}
58 #endif
59
60 extern ssize_t util_get_sys_subsystem(struct udev *udev, const char *devpath, char *subsystem, size_t size);
61
62 #endif