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
use std::borrow::Cow;
use crate::InternalString;
#[derive(Eq, PartialEq, Clone, Debug, Hash)]
pub struct Formatted<T> {
value: T,
repr: Option<Repr>,
decor: Decor,
}
impl<T> Formatted<T>
where
T: ValueRepr,
{
pub fn new(value: T) -> Self {
Self {
value,
repr: None,
decor: Default::default(),
}
}
pub(crate) fn set_repr_unchecked(&mut self, repr: Repr) {
self.repr = Some(repr);
}
pub fn value(&self) -> &T {
&self.value
}
pub fn into_value(self) -> T {
self.value
}
pub fn to_repr(&self) -> Cow<Repr> {
self.repr
.as_ref()
.map(Cow::Borrowed)
.unwrap_or_else(|| Cow::Owned(self.value.to_repr()))
}
pub fn decor_mut(&mut self) -> &mut Decor {
&mut self.decor
}
pub fn decor(&self) -> &Decor {
&self.decor
}
pub fn fmt(&mut self) {
self.repr = Some(self.value.to_repr());
}
}
impl<T> std::fmt::Display for Formatted<T>
where
T: ValueRepr,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
crate::encode::Encode::encode(self, f, ("", ""))
}
}
pub trait ValueRepr: crate::private::Sealed {
fn to_repr(&self) -> Repr;
}
#[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Debug, Hash)]
pub struct Repr {
raw_value: InternalString,
}
impl Repr {
pub(crate) fn new_unchecked(raw: impl Into<InternalString>) -> Self {
Repr {
raw_value: raw.into(),
}
}
pub fn as_raw(&self) -> &str {
&self.raw_value
}
}
impl std::fmt::Display for Repr {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.as_raw().fmt(f)
}
}
#[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Default, Debug, Hash)]
pub struct Decor {
prefix: Option<InternalString>,
suffix: Option<InternalString>,
}
impl Decor {
pub fn new(prefix: impl Into<InternalString>, suffix: impl Into<InternalString>) -> Self {
Self {
prefix: Some(prefix.into()),
suffix: Some(suffix.into()),
}
}
pub fn clear(&mut self) {
self.prefix = None;
self.suffix = None;
}
pub fn prefix(&self) -> Option<&str> {
self.prefix.as_deref()
}
pub fn set_prefix(&mut self, prefix: impl Into<InternalString>) {
self.prefix = Some(prefix.into());
}
pub fn suffix(&self) -> Option<&str> {
self.suffix.as_deref()
}
pub fn set_suffix(&mut self, suffix: impl Into<InternalString>) {
self.suffix = Some(suffix.into());
}
}