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
use std::sync::{Arc, RwLock};
use wasi_common::pipe::WritePipe;
#[derive(Default)]
pub struct OutputBuffer(Arc<RwLock<Vec<u8>>>);
impl OutputBuffer {
pub fn take(&mut self) -> Vec<u8> {
std::mem::take(&mut *self.0.write().unwrap())
}
pub(crate) fn writer(&self) -> WritePipe<Vec<u8>> {
WritePipe::from_shared(self.0.clone())
}
}
#[cfg(test)]
mod tests {
use std::io::IoSlice;
use wasi_common::WasiFile;
use super::*;
#[tokio::test]
async fn take_what_you_write() {
let mut buf = OutputBuffer::default();
buf.writer()
.write_vectored(&[IoSlice::new(b"foo")])
.await
.unwrap();
assert_eq!(buf.take(), b"foo");
}
}