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
220
221
222
223
224
225
226
227
use std::{convert::Infallible, io::Write, marker::PhantomData};
use crate::{
sink::{helper, Sink},
sync::*,
Error, Record, Result, StringBuf,
};
pub struct WriteSink<W>
where
W: Write + Send,
{
common_impl: helper::CommonImpl,
target: Mutex<W>,
}
impl<W> WriteSink<W>
where
W: Write + Send,
{
#[must_use]
pub fn builder() -> WriteSinkBuilder<W, ()> {
WriteSinkBuilder {
common_builder_impl: helper::CommonBuilderImpl::new(),
target: None,
_phantom: PhantomData,
}
}
#[must_use]
pub fn with_target<F, R>(&self, callback: F) -> R
where
F: FnOnce(&mut W) -> R,
{
callback(&mut *self.lock_target())
}
fn lock_target(&self) -> MutexGuard<W> {
self.target.lock_expect()
}
}
impl<W> WriteSink<W>
where
W: Write + Send + Clone,
{
#[must_use]
pub fn clone_target(&self) -> W {
self.lock_target().clone()
}
}
impl<W> Sink for WriteSink<W>
where
W: Write + Send,
{
fn log(&self, record: &Record) -> Result<()> {
if !self.should_log(record.level()) {
return Ok(());
}
let mut string_buf = StringBuf::new();
self.common_impl
.formatter
.read()
.format(record, &mut string_buf)?;
self.lock_target()
.write_all(string_buf.as_bytes())
.map_err(Error::WriteRecord)?;
Ok(())
}
fn flush(&self) -> Result<()> {
self.lock_target().flush().map_err(Error::FlushBuffer)
}
helper::common_impl!(@Sink: common_impl);
}
impl<W> Drop for WriteSink<W>
where
W: Write + Send,
{
fn drop(&mut self) {
let flush_result = self.lock_target().flush().map_err(Error::FlushBuffer);
if let Err(err) = flush_result {
self.common_impl.non_returnable_error("WriteSink", err)
}
}
}
#[doc = include_str!("../include/doc/generic-builder-note.md")]
pub struct WriteSinkBuilder<W, ArgW> {
common_builder_impl: helper::CommonBuilderImpl,
target: Option<W>,
_phantom: PhantomData<ArgW>,
}
impl<W, ArgW> WriteSinkBuilder<W, ArgW>
where
W: Write + Send,
{
#[must_use]
pub fn target(self, target: W) -> WriteSinkBuilder<W, PhantomData<W>> {
WriteSinkBuilder {
common_builder_impl: self.common_builder_impl,
target: Some(target),
_phantom: PhantomData,
}
}
helper::common_impl!(@SinkBuilder: common_builder_impl);
}
impl<W> WriteSinkBuilder<W, ()>
where
W: Write + Send,
{
#[doc(hidden)]
#[deprecated(note = "\n\n\
builder compile-time error:\n\
- missing required field `target`\n\n\
")]
pub fn build(self, _: Infallible) {}
}
impl<W> WriteSinkBuilder<W, PhantomData<W>>
where
W: Write + Send,
{
pub fn build(self) -> Result<WriteSink<W>> {
let sink = WriteSink {
common_impl: helper::CommonImpl::from_builder(self.common_builder_impl),
target: Mutex::new(self.target.unwrap()),
};
Ok(sink)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{prelude::*, test_utils::*};
#[test]
fn validation() {
let sink = Arc::new(WriteSink::builder().target(Vec::new()).build().unwrap());
sink.set_formatter(Box::new(NoModFormatter::new()));
let logger = test_logger_builder()
.sink(sink.clone())
.level_filter(LevelFilter::All)
.build()
.unwrap();
info!(logger: logger, "hello WriteSink");
let data = sink.clone_target();
assert_eq!(data.as_slice(), b"hello WriteSink");
}
}