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
use super::{Cri, CriBase, CriRef};
use crate::characterclasses::{PATH_UE, QUERY_UE, FRAGMENT_UE, HOST_UE};
use crate::{traits, accessor};
#[derive(Debug)]
pub struct RuntimeResolved<'a, B: Cri + ?Sized, R: CriRef> {
pub(super) base: &'a B,
pub(super) reference: R,
}
#[derive(Clone)]
pub enum Either<B, R> {
FromBase(B),
FromReference(R),
}
#[derive(Clone)]
pub enum Either2<B, R, const U: crate::characterclasses::AsciiSet> {
FromBase(B),
FromReference(R),
}
#[derive(Clone)]
pub enum Either3<B, R, const U: crate::characterclasses::AsciiSet> {
FromBase(B),
FromReference(R),
}
impl<B: traits::Scheme, R: traits::Scheme> traits::Scheme for Either<B, R> {
fn to_cri_id(&self) -> Option<i16> {
match self {
Either::FromBase(b) => b.to_cri_id(),
Either::FromReference(r) => r.to_cri_id(),
}
}
fn to_text_scheme(&self) -> &str {
match self {
Either::FromBase(b) => b.to_text_scheme(),
Either::FromReference(r) => r.to_text_scheme(),
}
}
}
impl<B: core::fmt::Display, R: core::fmt::Display> core::fmt::Display for Either<B, R> {
fn fmt(&self, w: &mut core::fmt::Formatter<'_>) -> Result<(), core::fmt::Error> {
match self {
Either::FromBase(b) => b.fmt(w),
Either::FromReference(r) => r.fmt(w),
}
}
}
impl<const U: crate::characterclasses::AsciiSet, B: traits::TextOrPet<U>, R: traits::TextOrPet<U>> traits::TextOrPet<U> for Either<B, R> {
type UriEncoded<'a> = impl core::fmt::Display where Self: 'a;
fn to_uri_component(&self) -> Self::UriEncoded<'_> {
match self {
Either::FromBase(b) => Either::FromBase(b.to_uri_component()),
Either::FromReference(r) => Either::FromReference(r.to_uri_component()),
}
}
}
impl<const U: crate::characterclasses::AsciiSet, BI: traits::TextOrPet<U>, B: Iterator<Item=BI>, RI: traits::TextOrPet<U>, R: Iterator<Item=RI>> Iterator for Either2<B, R, U> {
type Item = Either<BI, RI>;
fn next(&mut self) -> Option<Self::Item> {
Some(match self {
Either2::FromBase(b) => Either::FromBase(b.next()?),
Either2::FromReference(r) => Either::FromReference(r.next()?),
})
}
}
impl<const U: crate::characterclasses::AsciiSet, BI: traits::TextOrPet<HOST_UE>, B: Clone + IntoIterator<Item=BI>, RI: traits::TextOrPet<HOST_UE>, R: Clone + IntoIterator<Item=RI>> IntoIterator for Either3<B, R, U> {
type Item = Either<BI, RI>;
type IntoIter = Either2<B::IntoIter, R::IntoIter, HOST_UE>;
fn into_iter(self) -> <Self as IntoIterator>::IntoIter {
match self {
Either3::FromBase(b) => Either2::FromBase(b.into_iter()),
Either3::FromReference(r) => Either2::FromReference(r.into_iter()),
}
}
}
impl<B: traits::Host, R: traits::Host> traits::Host for Either<B, R> {
type HostItem<'a> = Either<B::HostItem<'a>, R::HostItem<'a>> where Self: 'a;
type HostIter<'a> = Either3<B::HostIter<'a>, R::HostIter<'a>, HOST_UE> where Self: 'a;
fn as_ref(&self) -> traits::HostRef<'_, Self::HostItem<'_>, Self::HostIter<'_>> {
match self {
Either::FromBase(b) => match b.as_ref() {
traits::HostRef::IPv4(a) => traits::HostRef::IPv4(a),
traits::HostRef::IPv6 { address, zone } => traits::HostRef::IPv6 { address, zone },
traits::HostRef::Hostname(iter) => {
traits::HostRef::Hostname(Either3::FromBase(iter))
}
},
Either::FromReference(r) => match r.as_ref() {
traits::HostRef::IPv4(a) => traits::HostRef::IPv4(a),
traits::HostRef::IPv6 { address, zone } => traits::HostRef::IPv6 { address, zone },
traits::HostRef::Hostname(iter) => {
traits::HostRef::Hostname(Either3::FromReference(iter))
}
},
}
}
}
struct Chain<I, A: Iterator<Item=I>, B: Iterator<Item=I>> {
first: Option<A>,
second: B,
}
impl<I, A: Iterator<Item=I>, B: Iterator<Item=I>> Iterator for Chain<I, A, B> {
type Item = I;
fn next(&mut self) -> Option<Self::Item> {
if let Some(item) = self.first.as_mut().and_then(|f| f.next()) {
Some(item)
} else {
self.first = None;
self.second.next()
}
}
}
impl<I, A: ExactSizeIterator + Iterator<Item=I>, B: ExactSizeIterator + Iterator<Item=I>> ExactSizeIterator for Chain<I, A, B> {
fn len(&self) -> usize {
self.first.as_ref().map(|f| f.len()).unwrap_or(0) + self.second.len()
}
}
impl<'a, B: Cri + ?Sized, R: CriRef> RuntimeResolved<'a, B, R> {
fn query_and_fragment_from_reference(&self) -> bool {
match self.reference.discard() {
accessor::Discard::All => true,
accessor::Discard::Some(n) if n > 0 => true,
_ => self.reference.path().next().is_some() || self.reference.query().next().is_some(),
}
}
}
impl<'a, B: Cri + ?Sized, R: CriRef> CriBase for RuntimeResolved<'a, B, R> {
type Scheme<'b> = Either<B::Scheme<'b>, R::Scheme<'b>> where Self: 'b;
type Host<'b> = impl traits::Host where Self: 'b;
type PathItem<'b> = impl traits::TextOrPet<PATH_UE> where Self: 'b;
type QueryItem<'b> = impl traits::TextOrPet<QUERY_UE> where Self: 'b;
type FragmentItem<'b> = impl traits::TextOrPet<FRAGMENT_UE> where Self: 'b;
type UserInfoItem<'b> = impl traits::TextOrPet<HOST_UE> where Self: 'b;
type PathIter<'b> = impl Iterator<Item=Self::PathItem<'b>> + ExactSizeIterator where Self: 'b;
type QueryIter<'b> = impl Iterator<Item=Self::QueryItem<'b>> where Self: 'b;
fn path(&self) -> Self::PathIter<'_> {
let base_to_take = match self.reference.discard() {
accessor::Discard::All => 0,
accessor::Discard::Some(n) => self.base.path().len().saturating_sub(n.into()),
};
let first = self.base.path().take(base_to_take)
.map(Either::FromBase);
let second = self.reference.path()
.map(Either::FromReference);
Chain { first: Some(first), second }
}
fn query(&self) -> Self::QueryIter<'_> {
if self.query_and_fragment_from_reference() {
Either2::FromReference(self.reference.query())
} else {
Either2::FromBase(self.base.query())
}
}
fn fragment(&self) -> Option<Self::FragmentItem<'_>> {
Some(if self.query_and_fragment_from_reference() || self.reference.fragment().is_some() {
Either::FromReference(self.reference.fragment()?)
} else {
Either::FromBase(self.base.fragment()?)
})
}
fn userinfo(&self) -> Option<Self::UserInfoItem<'_>> {
Some(if let Some(_) = self.reference.authority() {
Either::FromReference(self.reference.userinfo()?)
} else {
Either::FromBase(self.base.userinfo()?)
})
}
fn host(&self) -> Self::Host<'_> {
if let Some(_) = self.reference.authority() {
Either::FromReference(self.reference.host())
} else {
Either::FromBase(self.base.host())
}
}
fn port(&self) -> Option<u16> {
if let Some(_) = self.reference.authority() {
self.reference.port()
} else {
self.base.port()
}
}
}
impl<'a, B: Cri + ?Sized, R: CriRef> Cri for RuntimeResolved<'a, B, R> {
fn scheme(&self) -> Self::Scheme<'_> {
self.reference.scheme()
.map(|r| Either::FromReference(r))
.unwrap_or_else(|| Either::FromBase(self.base.scheme()))
}
fn authority(&self) -> traits::Authority {
if let Some(ref_authority) = self.reference.authority() {
ref_authority
} else {
self.base.authority()
}
}
}