chiark / gitweb /
sd-device: enumerator - fix matching on properties and sysattrs
[elogind.git] / src / libsystemd / sd-device / device-enumerator-private.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 2015 Tom Gundersen <teg@jklm.no>
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 #include "libudev-private.h"
25 #include "sd-device.h"
26
27 int device_enumerator_scan_devices(sd_device_enumerator *enumeartor);
28 int device_enumerator_scan_subsystems(sd_device_enumerator *enumeartor);
29 int device_enumerator_add_device(sd_device_enumerator *enumerator, sd_device *device);
30 int device_enumerator_add_match_is_initialized(sd_device_enumerator *enumerator);
31 sd_device *device_enumerator_get_first(sd_device_enumerator *enumerator);
32 sd_device *device_enumerator_get_next(sd_device_enumerator *enumerator);
33         bool properties_read:1;
34         bool tags_read:1;
35         bool devlinks_read:1;
36
37 #define FOREACH_DEVICE_AND_SUBSYSTEM(enumerator, device)       \
38         for (device = device_enumerator_get_first(enumerator); \
39              device;                                           \
40              device = device_enumerator_get_next(enumerator))