use crate::{Alignment, Excess, ExcessHandler, ExcessHandlingFunction, Width};
use core::fmt::{Display, Error, Formatter};
#[cfg(feature = "std")]
use derive_builder::Builder;
#[derive(Debug, Clone, Copy)]
#[cfg_attr(feature = "std", derive(Builder))]
pub struct PaddedValue<
Value,
PadBlock = char,
HandleExcess = ExcessHandlingFunction<Value, PadBlock>,
Pad = Alignment,
> where
Value: Width,
PadBlock: Display,
HandleExcess: ExcessHandler<Value, PadBlock>,
Pad: crate::Pad<Value, PadBlock>,
{
pub value: Value,
pub pad_block: PadBlock,
pub total_width: usize,
pub pad: Pad,
pub handle_excess: HandleExcess,
}
impl<Value, PadBlock, HandleExcess, Pad> Display for PaddedValue<Value, PadBlock, HandleExcess, Pad>
where
Value: Width,
PadBlock: Display,
HandleExcess: ExcessHandler<Value, PadBlock>,
Pad: crate::Pad<Value, PadBlock>,
{
fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), Error> {
let PaddedValue {
value,
pad_block,
total_width,
pad,
handle_excess,
} = self;
let total_width = *total_width;
let value_width = value.width();
let pad_width = if total_width >= value_width {
total_width - value_width
} else {
return handle_excess.handle_excess(
Excess {
value,
value_width,
total_width,
pad_block,
},
formatter,
);
};
pad.fmt(formatter, value, pad_block, pad_width)
}
}
impl<Value, PadBlock, HandleExcess, Pad> Width for PaddedValue<Value, PadBlock, HandleExcess, Pad>
where
Value: Width,
PadBlock: Display,
HandleExcess: ExcessHandler<Value, PadBlock>,
Pad: crate::Pad<Value, PadBlock>,
{
fn width(&self) -> usize {
self.total_width
}
}