-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathenumerate.cpp
134 lines (111 loc) · 3.85 KB
/
enumerate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2017-2021 Dimitry Ishenko
// Contact: dimitry (dot) ishenko (at) (gee) mail (dot) com
//
// Distributed under the GNU GPL license. See the LICENSE.md file for details.
////////////////////////////////////////////////////////////////////////////////
#include "enumerate.hpp"
#include <cerrno>
#include <system_error>
////////////////////////////////////////////////////////////////////////////////
namespace impl
{
// move udev stuff into impl namespace
#include <libudev.h>
void enumerate_delete::operator()(udev_enumerate* x) { udev_enumerate_unref(x); }
}
////////////////////////////////////////////////////////////////////////////////
namespace
{
void throw_on(int code)
{
if(code) throw std::system_error{
std::error_code{ code < 0 ? -code : code, std::generic_category() }
};
}
}
////////////////////////////////////////////////////////////////////////////////
namespace udev
{
////////////////////////////////////////////////////////////////////////////////
enumerate::enumerate(udev ctx) :
udev_{ std::move(ctx) },
enum_{ impl::udev_enumerate_new(udev_.get()) }
{
if(!enum_) throw std::system_error{
std::error_code{ errno, std::generic_category() }
};
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::match_subsystem(const string& subsystem)
{
throw_on(impl::udev_enumerate_add_match_subsystem(
enum_.get(), subsystem.data()
));
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::nomatch_subsystem(const string& subsystem)
{
throw_on(impl::udev_enumerate_add_nomatch_subsystem(
enum_.get(), subsystem.data()
));
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::match_sysattr(const string& name, const string& value)
{
throw_on(impl::udev_enumerate_add_match_sysattr(
enum_.get(), name.data(), value.size() ? value.data() : nullptr
));
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::nomatch_sysattr(const string& name, const string& value)
{
throw_on(impl::udev_enumerate_add_nomatch_sysattr(
enum_.get(), name.data(), value.size() ? value.data() : nullptr
));
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::match_property(const string& name, const string& value)
{
throw_on(impl::udev_enumerate_add_match_property(
enum_.get(), name.data(), value.size() ? value.data() : nullptr
));
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::match_sysname(const string& name)
{
throw_on(impl::udev_enumerate_add_match_sysname(
enum_.get(), name.data()
));
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::match_tag(const string& name)
{
throw_on(impl::udev_enumerate_add_match_tag(
enum_.get(), name.data()
));
}
////////////////////////////////////////////////////////////////////////////////
void enumerate::match_parent(const device& dev)
{
throw_on(impl::udev_enumerate_add_match_parent(
enum_.get(), dev.dev_.get()
));
}
////////////////////////////////////////////////////////////////////////////////
std::vector<device> enumerate::get()
{
std::vector<device> devices;
throw_on(impl::udev_enumerate_scan_devices(enum_.get()));
impl::udev_list_entry* e;
udev_list_entry_foreach(e, impl::udev_enumerate_get_list_entry(enum_.get()))
{
if(auto path = impl::udev_list_entry_get_name(e))
{
devices.push_back(device{ udev_, path });
}
}
return devices;
}
////////////////////////////////////////////////////////////////////////////////
}