chiark / gitweb /
libudev: add udev_device_get_syspath()
[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 #ifdef USE_LOG
27 #define log_dbg(udev, arg...) \
28         udev_log(udev, LOG_DEBUG, __FILE__, __LINE__, __FUNCTION__, ## arg)
29
30 #define log_info(udev, arg...) \
31         udev_log(udev, LOG_INFO, __FILE__, __LINE__, __FUNCTION__, ## arg)
32
33 #define log_err(udev, arg...) \
34         udev_log(udev, LOG_ERR, __FILE__, __LINE__, __FUNCTION__, ## arg)
35
36 void udev_log(struct udev *udev,
37               int priority, const char *file, int line, const char *fn,
38               const char *format, ...)
39               __attribute__ ((format(printf, 6, 7)));
40 #else
41 #define log_dbg(format, arg...) do { } while (0)
42 #define log_info(format, arg...) do { } while (0)
43 #define log_err(format, arg...) do { } while (0)
44 #endif
45
46 /* libudev */
47 extern struct udev_device *device_init(struct udev *udev);
48
49 /* libudev-device */
50 extern int device_set_devpath(struct udev_device *udev_device, const char *devpath);
51 extern int device_set_subsystem(struct udev_device *udev_device, const char *subsystem);
52 extern int device_set_devname(struct udev_device *udev_device, const char *devname);
53 extern int device_add_devlink(struct udev_device *udev_device, const char *devlink);
54 extern int device_add_property(struct udev_device *udev_device, const char *property);
55
56 /* libudev-utils */
57 extern ssize_t util_get_sys_subsystem(struct udev *udev, const char *devpath, char *subsystem, size_t size);
58 #endif