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
#![cfg_attr(not(test), no_std)]
#![deny(missing_docs)]

//! A `no_std`, no allocation, `core::fmt::Write`able buffer.
//!
//! Usage:
//!
//! ```rs
//! use e_write_buffer::WriteBuffer;
//! use std::fmt::Write as _;
//!
//! fn main() {
//!     let mut buffer: WriteBuffer<20> = WriteBuffer::new();
//!     let x = 12;
//!     write!(buffer, "{}", x).unwrap();
//!     assert_eq!(buffer.as_str(), "12");
//! }
//! ```
use core::fmt::{self, Display, Formatter};

/// A write buffer
#[derive(Debug, Clone, Copy)]
pub struct WriteBuffer<const N: usize> {
    buffer: [u8; N],
    cursor: usize,
}

impl<const N: usize> WriteBuffer<N> {
    /// Creates a write buffer
    pub fn new() -> Self {
        let buf = [0u8; N];
        WriteBuffer {
            buffer: buf,
            cursor: 0,
        }
    }

    /// Returns a slice containing the already written bytes in the buffer
    pub fn as_slice(&self) -> &[u8] {
        &self.buffer[..self.cursor]
    }

    /// Returns a mutable slice containing the already written bytes in the
    /// buffer
    ///
    /// Dev Note: This should _not_ be `pub`, since otherwise the user might
    /// mess with the bytes, violating the guarantee that the safety of
    /// [`as_str`] and [`as_str_mut`] depend on!
    fn as_slice_mut(&mut self) -> &mut [u8] {
        &mut self.buffer[..self.cursor]
    }

    /// Reset the buffer such that it can be reused.
    ///
    /// Note: This does _not_ overwrite any data in memory, it only sets the
    /// internal cursor back to the start of the buffer.
    pub fn reset(&mut self) {
        self.cursor = 0;
    }

    /// Converts the buffer into `&str`.
    pub fn as_str(&self) -> &str {
        // SAFETY: The only way to write into `self.buf` is via
        // `Write::write_str`. Therefore it is always guaranteed that the buffer
        // contains valid UTF-8.
        unsafe { core::str::from_utf8_unchecked(self.as_slice()) }
    }

    /// Converts the buffer into `&mut str`.
    pub fn as_str_mut(&mut self) -> &mut str {
        // SAFETY: The only way to write into `self.buf` is via
        // `Write::write_str`. Therefore it is always guaranteed that the buffer
        // contains valid UTF-8.
        unsafe { core::str::from_utf8_unchecked_mut(self.as_slice_mut()) }
    }

    /// Returns how many bytes in the buffer have already been written.
    pub fn len(&self) -> usize {
        self.cursor
    }

    /// Returns true if zero bytes in the buffer are written.
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Returns how many bytes in the buffer remain for writing.
    pub fn remaining(&self) -> usize {
        N - self.len()
    }

    /// Returns true if the buffer is full.
    pub fn is_full(&self) -> bool {
        self.remaining() == 0
    }
}

impl<const N: usize> Default for WriteBuffer<N> {
    fn default() -> Self {
        Self::new()
    }
}

impl<const N: usize> PartialEq for WriteBuffer<N> {
    fn eq(&self, other: &Self) -> bool {
        self.as_slice() == other.as_slice()
    }
}

impl<const N: usize> core::hash::Hash for WriteBuffer<N> {
    fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
        self.as_slice().hash(state);
    }
}

impl<const N: usize> Eq for WriteBuffer<N> {}

impl<const N: usize> fmt::Write for WriteBuffer<N> {
    fn write_str(&mut self, s: &str) -> fmt::Result {
        let bytes = s.as_bytes();

        // New cursor after write
        let new_cursor = self.cursor + bytes.len();

        // If we would exceed the capacity of the buffer, we fail
        if new_cursor > N {
            return Err(fmt::Error);
        }

        // Efficiently copy the bytes into the bufffer
        self.buffer[self.cursor..new_cursor].copy_from_slice(bytes);

        // Update the cursor
        self.cursor = new_cursor;

        Ok(())
    }
}

impl<const N: usize> Display for WriteBuffer<N> {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

#[cfg(test)]
mod test {
    use super::WriteBuffer;
    use core::fmt::Write;

    #[test]
    fn test_write_wrapper() {
        let x = 123;

        let mut buffer: WriteBuffer<20> = WriteBuffer::new();
        write!(buffer, "{}", x).unwrap();
        assert_eq!(&buffer.as_slice()[0..3], b"123");

        buffer.reset();
        let x = 2.242424;
        write!(buffer, "{:.2}", x).unwrap();
        assert_eq!(buffer.as_slice(), b"2.24");

        buffer.reset();
        let x = 20;
        write!(buffer, "Longer than {} characters sentence", x).unwrap_err();

        buffer.reset();
        write!(buffer, "{}", "1").unwrap();
        write!(buffer, "{}", "2").unwrap();
        assert_eq!(buffer.as_slice(), b"12");
    }

    #[test]
    fn test_display() {
        let x = 123;

        let mut buffer: WriteBuffer<20> = WriteBuffer::new();
        write!(buffer, "{}", x).unwrap();
        assert_eq!("123", format!("{}", buffer));
    }

    #[test]
    fn test_as_str_mut() {
        let mut buffer: WriteBuffer<20> = WriteBuffer::new();
        write!(buffer, "hello world").unwrap();
        buffer.as_str_mut().make_ascii_uppercase();

        assert_eq!(buffer.as_str(), "HELLO WORLD");
    }

    #[test]
    fn test_is_empty_is_full_and_overflow() {
        let mut buffer: WriteBuffer<10> = WriteBuffer::new();
        assert!(buffer.is_empty());
        write!(buffer, "0123456789").unwrap();
        assert!(buffer.is_full());
        assert_eq!(write!(buffer, "!"), Err(core::fmt::Error));
    }
}