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
|
use std::marker::PhantomData;
macro_rules! try_option {
($expr: expr) => {
match $expr {
Ok(value) => value,
Err(err) => {
return Some(Err(err.into()));
}
}
};
}
pub(crate) use try_option;
macro_rules! or {
(($($tt: tt)+) else ($($else_tt: tt)*)) => {
$($tt)+
};
(() else ($($else_tt: tt)*)) => {
$($else_tt)*
};
}
pub(crate) use or;
macro_rules! builder {
(
$(#[doc = $doc: literal])*
#[builder(
name = $builder_name: ident
$(, derives = ($($builder_derive: ident),+))?
)]
$(#[$attr: meta])*
$visibility: vis struct $name: ident
{
$(
$(#[$field_attr: meta])*
$field_visibility: vis $field: ident: $field_type: ty,
)*
}
) => {
$(#[doc = $doc])*
$(#[$attr])*
$visibility struct $name
{
$(
$(#[$field_attr])*
$field_visibility $field: $field_type,
)*
}
$(#[derive($($builder_derive),+)])?
$visibility struct $builder_name
{
$(
$field: $field_type,
)*
}
impl $builder_name
{
$(
#[must_use]
$visibility fn $field(mut self, $field: $field_type) -> Self
{
self.$field = $field;
self
}
)*
#[must_use]
$visibility fn build(self) -> $name {
$name {
$(
$field: self.$field,
)*
}
}
}
impl From<$name> for $builder_name
{
fn from(built: $name) -> Self
{
Self {
$(
$field: built.$field,
)*
}
}
}
};
}
pub(crate) use builder;
pub enum RefOrValue<'a, T>
{
Ref(&'a T),
Value(Option<T>),
}
impl<'a, T> RefOrValue<'a, T>
{
pub fn get(&self) -> Option<&T>
{
match self {
Self::Ref(val_ref) => Some(val_ref),
Self::Value(val_cell) => val_cell.as_ref(),
}
}
}
#[derive(Debug)]
pub struct Defer<'func, Func, Data>
where
Func: FnMut(&mut Data) + 'func,
{
func: Func,
pub data: Data,
_pd: PhantomData<&'func ()>,
}
impl<'func, Func, Data> Defer<'func, Func, Data>
where
Func: FnMut(&mut Data) + 'func,
{
pub fn new(data: Data, func: Func) -> Self
{
Self { func, data, _pd: PhantomData }
}
}
impl<'func, Func, Data> Drop for Defer<'func, Func, Data>
where
Func: FnMut(&mut Data) + 'func,
{
fn drop(&mut self)
{
(self.func)(&mut self.data)
}
}
/// Defines a function that will be called at the end of the current scope.
///
/// Only captured variables that are later mutably borrowed needs to specified as
/// captures.
macro_rules! defer {
(|$capture: ident| {$($tt: tt)*}) => {
// This uses the automatic temporary lifetime extension behaviour introduced
// in Rust 1.79.0 (https://blog.rust-lang.org/2024/06/13/Rust-1.79.0.html) to
// create a unnamable variable for the Defer struct. The variable should be
// unnamable so that it cannot be missused and so that this macro can be used
// multiple times without having to give it a identifier for the Defer struct
// variable
let Defer { data: $capture, .. } = if true {
&Defer::new($capture, |$capture| {
$($tt)*
})
}
else {
unreachable!();
};
};
}
pub(crate) use defer;
|