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
//! Internal: Declare the Writer type for tor-bytes
use crate::Writeable;
use crate::WriteableOnce;
/// A byte-oriented trait for writing to small arrays.
///
/// Unlike std::io::Write, this trait's methods are not allowed to
/// fail. It's not for IO.
///
/// Most code will want to use the fact that Vec<u8> implements this trait.
/// To define a new implementation, just define the write_all method.
///
/// # Examples
///
/// You can use a Writer to add bytes explicitly:
/// ```
/// use tor_bytes::Writer;
/// let mut w: Vec<u8> = Vec::new(); // Vec<u8> implements Writer.
/// w.write_u32(0x12345);
/// w.write_u8(0x22);
/// w.write_zeros(3);
/// assert_eq!(w, &[0x00, 0x01, 0x23, 0x45, 0x22, 0x00, 0x00, 0x00]);
/// ```
///
/// You can also use a Writer to encode things that implement the
/// Writeable trait:
///
/// ```
/// use tor_bytes::{Writer,Writeable};
/// let mut w: Vec<u8> = Vec::new();
/// w.write(&4_u16); // The unsigned types all implement Writeable.
///
/// // We also provide Writeable implementations for several important types.
/// use std::net::Ipv4Addr;
/// let ip = Ipv4Addr::new(127, 0, 0, 1);
/// w.write(&ip);
///
/// assert_eq!(w, &[0x00, 0x04, 0x7f, 0x00, 0x00, 0x01]);
/// ```
pub trait Writer {
/// Append a slice to the end of this writer.
fn write_all(&mut self, b: &[u8]);
/// Append a single u8 to this writer.
fn write_u8(&mut self, x: u8) {
self.write_all(&[x]);
}
/// Append a single u16 to this writer, encoded in big-endian order.
fn write_u16(&mut self, x: u16) {
self.write_all(&x.to_be_bytes());
}
/// Append a single u32 to this writer, encoded in big-endian order.
fn write_u32(&mut self, x: u32) {
self.write_all(&x.to_be_bytes());
}
/// Append a single u64 to this writer, encoded in big-endian order.
fn write_u64(&mut self, x: u64) {
self.write_all(&x.to_be_bytes());
}
/// Append a single u128 to this writer, encoded in big-endian order.
fn write_u128(&mut self, x: u128) {
self.write_all(&x.to_be_bytes());
}
/// Write n bytes to this writer, all with the value zero.
///
/// NOTE: This implementation is somewhat inefficient, since it allocates
/// a vector. You should probably replace it if you can.
fn write_zeros(&mut self, n: usize) {
let v = vec![0_u8; n];
self.write_all(&v[..]);
}
/// Encode a Writeable object onto this writer, using its
/// write_onto method.
fn write<E: Writeable + ?Sized>(&mut self, e: &E) {
e.write_onto(self);
}
/// Encode a WriteableOnce object onto this writer, using its
/// write_into method.
fn write_and_consume<E: WriteableOnce>(&mut self, e: E) {
e.write_into(self);
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn write_ints() {
let mut b = bytes::BytesMut::new();
b.write_u8(1);
b.write_u16(2);
b.write_u32(3);
b.write_u64(4);
b.write_u128(5);
assert_eq!(
&b[..],
&[
1, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 5
]
);
}
#[test]
fn write_slice() {
let mut v = Vec::new();
v.write_u16(0x5468);
v.write(&b"ey're good dogs, Bront"[..]);
assert_eq!(&v[..], &b"They're good dogs, Bront"[..]);
}
#[test]
fn writeable() {
struct Sequence(u8);
impl Writeable for Sequence {
fn write_onto<B: Writer + ?Sized>(&self, b: &mut B) {
for i in 0..self.0 {
b.write_u8(i);
}
}
}
let mut v = Vec::new();
v.write(&Sequence(6));
assert_eq!(&v[..], &[0, 1, 2, 3, 4, 5]);
v.write_and_consume(Sequence(3));
assert_eq!(&v[..], &[0, 1, 2, 3, 4, 5, 0, 1, 2]);
}
}