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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
use bitvec::prelude::*;
use std::fmt;
use std::ops::{Deref, DerefMut};
#[repr(transparent)]
pub struct AttributeSetRef<T> {
_indexer: std::marker::PhantomData<T>,
bitslice: BitSlice<Lsb0, u8>,
}
impl<T: EvdevEnum> AttributeSetRef<T> {
#[inline]
fn new(bitslice: &BitSlice<Lsb0, u8>) -> &Self {
unsafe { &*(bitslice as *const BitSlice<Lsb0, u8> as *const Self) }
}
#[inline]
fn new_mut(bitslice: &mut BitSlice<Lsb0, u8>) -> &mut Self {
unsafe { &mut *(bitslice as *mut BitSlice<Lsb0, u8> as *mut Self) }
}
#[inline]
pub fn contains(&self, attr: T) -> bool {
self.bitslice.get(attr.to_index()).map_or(false, |b| *b)
}
#[inline]
pub fn iter(&self) -> impl Iterator<Item = T> + '_ {
self.bitslice.iter_ones().map(T::from_index)
}
#[inline]
pub(crate) fn slice(&self, start: T) -> &Self {
Self::new(&self.bitslice[start.to_index()..])
}
pub fn insert(&mut self, attr: T) {
self.set(attr, true)
}
pub fn remove(&mut self, attr: T) {
self.set(attr, false)
}
#[inline]
pub(crate) fn set(&mut self, attr: T, on: bool) {
self.bitslice.set(attr.to_index(), on)
}
}
impl<T: EvdevEnum + fmt::Debug> fmt::Debug for AttributeSetRef<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_set().entries(self.iter()).finish()
}
}
pub struct AttributeSet<T: ArrayedEvdevEnum> {
container: T::Array,
}
impl<T: ArrayedEvdevEnum> AttributeSet<T> {
pub fn new() -> Self {
Self {
container: T::zeroed_array(),
}
}
fn as_bitslice(&self) -> &BitSlice<Lsb0, u8> {
T::array_as_slice(&self.container)
}
fn as_mut_bitslice(&mut self) -> &mut BitSlice<Lsb0, u8> {
T::array_as_slice_mut(&mut self.container)
}
#[inline]
pub(crate) fn as_mut_raw_slice(&mut self) -> &mut [u8] {
T::array_as_buf(&mut self.container)
}
}
impl<T: ArrayedEvdevEnum> Default for AttributeSet<T> {
fn default() -> Self {
Self::new()
}
}
impl<T: ArrayedEvdevEnum> Deref for AttributeSet<T> {
type Target = AttributeSetRef<T>;
fn deref(&self) -> &AttributeSetRef<T> {
AttributeSetRef::new(self.as_bitslice())
}
}
impl<T: ArrayedEvdevEnum> DerefMut for AttributeSet<T> {
fn deref_mut(&mut self) -> &mut AttributeSetRef<T> {
AttributeSetRef::new_mut(self.as_mut_bitslice())
}
}
impl<T: ArrayedEvdevEnum> Clone for AttributeSet<T>
where
T::Array: Clone,
{
fn clone(&self) -> Self {
Self {
container: self.container.clone(),
}
}
fn clone_from(&mut self, other: &Self) {
self.container.clone_from(&other.container)
}
}
impl<T: ArrayedEvdevEnum + fmt::Debug> fmt::Debug for AttributeSet<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
(**self).fmt(f)
}
}
pub trait EvdevEnum: Copy + 'static {
fn from_index(i: usize) -> Self;
fn to_index(self) -> usize;
}
pub trait ArrayedEvdevEnum: EvdevEnum {
type Array;
fn array_as_slice(arr: &Self::Array) -> &BitSlice<Lsb0, u8>;
fn array_as_slice_mut(arr: &mut Self::Array) -> &mut BitSlice<Lsb0, u8>;
fn array_as_buf(arr: &mut Self::Array) -> &mut [u8];
fn zeroed_array() -> Self::Array;
}
macro_rules! evdev_enum {
($t:ty, Array, $($(#[$attr:meta])* $c:ident = $val:expr,)*) => {
evdev_enum!(
$t,
Array:bitvec::BitArr!(for <$t>::COUNT, in u8),
|x| x,
|x| x,
bitvec::array::BitArray::as_mut_raw_slice,
bitvec::array::BitArray::zeroed,
$($(#[$attr])* $c = $val,)*
);
};
(
$t:ty,
Array: $Array:ty, $arr_as_slice:expr, $arr_as_slice_mut:expr, $arr_as_buf:expr, $zero:expr,
$($(#[$attr:meta])* $c:ident = $val:expr,)*
) => {
impl $crate::attribute_set::ArrayedEvdevEnum for $t {
type Array = $Array;
fn array_as_slice(arr: &Self::Array) -> &bitvec::slice::BitSlice<bitvec::order::Lsb0, u8> {
let f: fn(&Self::Array) -> &bitvec::slice::BitSlice<bitvec::order::Lsb0, u8> = $arr_as_slice;
f(arr)
}
fn array_as_slice_mut(arr: &mut Self::Array) -> &mut bitvec::slice::BitSlice<bitvec::order::Lsb0, u8> {
let f: fn(&mut Self::Array) -> &mut bitvec::slice::BitSlice<bitvec::order::Lsb0, u8> = $arr_as_slice_mut;
f(arr)
}
fn array_as_buf(arr: &mut Self::Array) -> &mut [u8] {
let f: fn(&mut Self::Array) -> &mut [u8] = $arr_as_buf;
f(arr)
}
fn zeroed_array() -> Self::Array {
$zero()
}
}
evdev_enum!($t, $($(#[$attr])* $c = $val,)*);
};
($t:ty, $($(#[$attr:meta])* $c:ident = $val:expr,)*) => {
impl $t {
$($(#[$attr])* pub const $c: Self = Self($val);)*
}
impl std::str::FromStr for $t {
type Err = crate::EnumParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let map: &[(&'static str, $t)] = &[
$((stringify!($c), Self::$c),)*
];
match map.iter().find(|e| e.0 == s) {
Some(e) => Ok(e.1),
None => Err(crate::EnumParseError(())),
}
}
}
impl std::fmt::Debug for $t {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
#[allow(unreachable_patterns)]
match *self {
$(Self::$c => f.pad(stringify!($c)),)*
_ => write!(f, "unknown key: {}", self.0),
}
}
}
impl $crate::attribute_set::EvdevEnum for $t {
#[inline]
fn from_index(i: usize) -> Self {
Self(i as _)
}
#[inline]
fn to_index(self) -> usize {
self.0 as _
}
}
}
}