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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
use std::{convert::TryFrom, fmt};
#[cfg(feature = "serde")]
use serde::{
de::{self, Visitor},
Deserialize, Deserializer, Serialize,
};
use crate::{
types::{CreationError, IriReferenceStr, IriReferenceString, IriStr, IriString},
validate::iri::{absolute_iri, Error},
};
custom_slice_macros::define_slice_types_pair! {
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize))]
#[cfg_attr(feature = "serde", serde(transparent))]
#[custom_slice(owned)]
#[custom_slice(derive(
AsRefSlice,
AsRefSliceInner,
Deref,
IntoInner,
PartialEqBulk,
PartialEqInnerBulk,
PartialOrdBulk,
PartialOrdInnerBulk,
TryFromInner,
))]
#[custom_slice(error(type = "CreationError<String>", map = "{|e, v| CreationError::new(e, v)}"))]
#[custom_slice(new_unchecked = "
/// Creates a new `AbsoluteIriString` without validation.
unsafe fn new_always_unchecked
")]
pub struct AbsoluteIriString(String);
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(transparent)]
#[allow(clippy::derive_hash_xor_eq)]
#[cfg_attr(feature = "serde", derive(Serialize))]
#[cfg_attr(feature = "serde", serde(transparent))]
#[custom_slice(slice)]
#[custom_slice(derive(
AsRefSlice,
AsRefSliceInner,
DefaultRef,
PartialEqBulk,
PartialEqInnerBulk,
PartialOrdBulk,
PartialOrdInnerBulk,
IntoArc,
IntoBox,
IntoRc,
TryFromInner,
))]
#[custom_slice(error(type = "Error"))]
#[custom_slice(new_unchecked = "
/// Creates a new `&AbsoluteIriStr` without validation.
unsafe fn new_always_unchecked
")]
pub struct AbsoluteIriStr(str);
#[custom_slice(validator)]
fn validate(s: &str) -> Result<(), Error> {
absolute_iri(s)
}
}
impl AbsoluteIriString {
pub(crate) unsafe fn new_unchecked(s: String) -> Self {
debug_assert_eq!(validate(&s), Ok(()));
Self::new_always_unchecked(s)
}
pub fn shrink_to_fit(&mut self) {
self.0.shrink_to_fit()
}
}
impl AbsoluteIriStr {
pub(crate) unsafe fn new_unchecked(s: &str) -> &Self {
debug_assert_eq!(validate(s), Ok(()));
Self::new_always_unchecked(s)
}
pub fn as_str(&self) -> &str {
self.as_ref()
}
}
impl std::ops::Deref for AbsoluteIriStr {
type Target = IriStr;
fn deref(&self) -> &Self::Target {
self.as_ref()
}
}
impl fmt::Display for AbsoluteIriString {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
AsRef::<AbsoluteIriStr>::as_ref(self).fmt(f)
}
}
impl fmt::Display for &AbsoluteIriStr {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self.as_str())
}
}
impl std::str::FromStr for AbsoluteIriString {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
<&AbsoluteIriStr>::try_from(s).map(ToOwned::to_owned)
}
}
impl_std_traits! {
source: {
owned: AbsoluteIriString,
slice: AbsoluteIriStr,
creation_error: CreationError,
validation_error: Error,
},
target: [
{
owned: IriString,
slice: IriStr,
},
{
owned: IriReferenceString,
slice: IriReferenceStr,
},
],
}
#[cfg(feature = "serde")]
#[derive(Debug, Clone, Copy)]
struct AbsoluteIriStringVisitor;
#[cfg(feature = "serde")]
impl<'de> Visitor<'de> for AbsoluteIriStringVisitor {
type Value = AbsoluteIriString;
fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("an absolute IRI")
}
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
where
E: de::Error,
{
<&AbsoluteIriStr>::try_from(v)
.map(ToOwned::to_owned)
.map_err(E::custom)
}
fn visit_string<E>(self, v: String) -> Result<Self::Value, E>
where
E: de::Error,
{
AbsoluteIriString::try_from(v).map_err(E::custom)
}
}
#[cfg(feature = "serde")]
impl<'de> Deserialize<'de> for AbsoluteIriString {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
deserializer.deserialize_str(AbsoluteIriStringVisitor)
}
}
#[cfg(feature = "serde")]
#[derive(Debug, Clone, Copy)]
struct AbsoluteIriStrVisitor;
#[cfg(feature = "serde")]
impl<'de> Visitor<'de> for AbsoluteIriStrVisitor {
type Value = &'de AbsoluteIriStr;
fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("an absolute IRI")
}
fn visit_borrowed_str<E>(self, v: &'de str) -> Result<Self::Value, E>
where
E: de::Error,
{
<&'de AbsoluteIriStr>::try_from(v).map_err(E::custom)
}
}
#[cfg(feature = "serde")]
impl<'de: 'a, 'a> Deserialize<'de> for &'a AbsoluteIriStr {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
deserializer.deserialize_string(AbsoluteIriStrVisitor)
}
}