|
@@ -7,14 +7,14 @@ use super::{DeviceLimits, Device};
|
|
|
/// A tracer is a device that pretty prints all packets traversing it
|
|
|
/// using the provided writer function, and then passes them to another
|
|
|
/// device.
|
|
|
-pub struct Tracer<T: Device, U: PrettyPrint> {
|
|
|
- lower: T,
|
|
|
- writer: fn(u64, PrettyPrinter<U>)
|
|
|
+pub struct Tracer<D: Device, P: PrettyPrint> {
|
|
|
+ lower: D,
|
|
|
+ writer: fn(u64, PrettyPrinter<P>)
|
|
|
}
|
|
|
|
|
|
-impl<T: Device, U: PrettyPrint> Tracer<T, U> {
|
|
|
+impl<D: Device, P: PrettyPrint> Tracer<D, P> {
|
|
|
/// Create a tracer device.
|
|
|
- pub fn new(lower: T, writer: fn(timestamp: u64, printer: PrettyPrinter<U>)) -> Tracer<T, U> {
|
|
|
+ pub fn new(lower: D, writer: fn(timestamp: u64, printer: PrettyPrinter<P>)) -> Tracer<D, P> {
|
|
|
Tracer {
|
|
|
lower: lower,
|
|
|
writer: writer
|
|
@@ -22,20 +22,20 @@ impl<T: Device, U: PrettyPrint> Tracer<T, U> {
|
|
|
}
|
|
|
|
|
|
/// Return the underlying device, consuming the tracer.
|
|
|
- pub fn into_lower(self) -> T {
|
|
|
+ pub fn into_lower(self) -> D {
|
|
|
self.lower
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<T: Device, U: PrettyPrint> Device for Tracer<T, U> {
|
|
|
- type RxBuffer = T::RxBuffer;
|
|
|
- type TxBuffer = TxBuffer<T::TxBuffer, U>;
|
|
|
+impl<D: Device, P: PrettyPrint> Device for Tracer<D, P> {
|
|
|
+ type RxBuffer = D::RxBuffer;
|
|
|
+ type TxBuffer = TxBuffer<D::TxBuffer, P>;
|
|
|
|
|
|
fn limits(&self) -> DeviceLimits { self.lower.limits() }
|
|
|
|
|
|
fn receive(&mut self, timestamp: u64) -> Result<Self::RxBuffer, Error> {
|
|
|
let buffer = self.lower.receive(timestamp)?;
|
|
|
- (self.writer)(timestamp, PrettyPrinter::<U>::new("<- ", &buffer));
|
|
|
+ (self.writer)(timestamp, PrettyPrinter::<P>::new("<- ", &buffer));
|
|
|
Ok(buffer)
|
|
|
}
|
|
|
|
|
@@ -46,24 +46,22 @@ impl<T: Device, U: PrettyPrint> Device for Tracer<T, U> {
|
|
|
}
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
-pub struct TxBuffer<T: AsRef<[u8]>, U: PrettyPrint> {
|
|
|
- buffer: T,
|
|
|
+pub struct TxBuffer<B: AsRef<[u8]> + AsMut<[u8]>, P: PrettyPrint> {
|
|
|
+ buffer: B,
|
|
|
timestamp: u64,
|
|
|
- writer: fn(u64, PrettyPrinter<U>)
|
|
|
+ writer: fn(u64, PrettyPrinter<P>)
|
|
|
}
|
|
|
|
|
|
-impl<T: AsRef<[u8]>, U: PrettyPrint> AsRef<[u8]>
|
|
|
- for TxBuffer<T, U> {
|
|
|
+impl<B: AsRef<[u8]> + AsMut<[u8]>, P: PrettyPrint> AsRef<[u8]> for TxBuffer<B, P> {
|
|
|
fn as_ref(&self) -> &[u8] { self.buffer.as_ref() }
|
|
|
}
|
|
|
|
|
|
-impl<T: AsRef<[u8]> + AsMut<[u8]>, U: PrettyPrint> AsMut<[u8]>
|
|
|
- for TxBuffer<T, U> {
|
|
|
+impl<B: AsRef<[u8]> + AsMut<[u8]>, P: PrettyPrint> AsMut<[u8]> for TxBuffer<B, P> {
|
|
|
fn as_mut(&mut self) -> &mut [u8] { self.buffer.as_mut() }
|
|
|
}
|
|
|
|
|
|
-impl<T: AsRef<[u8]>, U: PrettyPrint> Drop for TxBuffer<T, U> {
|
|
|
+impl<B: AsRef<[u8]> + AsMut<[u8]>, P: PrettyPrint> Drop for TxBuffer<B, P> {
|
|
|
fn drop(&mut self) {
|
|
|
- (self.writer)(self.timestamp, PrettyPrinter::<U>::new("-> ", &self.buffer));
|
|
|
+ (self.writer)(self.timestamp, PrettyPrinter::<P>::new("-> ", &self.buffer));
|
|
|
}
|
|
|
}
|