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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
use pct_str::PctStr;
use std::cmp::{Ord, Ordering, PartialOrd};
use std::convert::TryFrom;
use std::hash::{Hash, Hasher};
use std::ops::Range;
use std::{cmp, fmt};

use super::{Error, Host, Port, UserInfo};
use crate::parsing::{self, ParsedAuthority};

pub struct Authority<'a> {
	/// Authority slice.
	pub(crate) data: &'a [u8],

	/// Authority positions.
	pub(crate) p: ParsedAuthority,
}

impl<'a> Hash for Authority<'a> {
	#[inline]
	fn hash<H: Hasher>(&self, hasher: &mut H) {
		self.userinfo().hash(hasher);
		self.host().hash(hasher);
		self.port().hash(hasher);
	}
}

impl<'a> Authority<'a> {
	/// Checks if the authority is empty.
	///
	/// It is empty if it has no user info, an empty host string, and no port.
	/// Note that empty user info or port is different from no user info and port.
	/// For instance, the authorities `@`, `:` and `@:` are not empty.
	#[inline]
	pub fn is_empty(&self) -> bool {
		self.p.userinfo_len.is_none() && self.p.host_len == 0 && self.p.port_len.is_none()
	}

	/// Returns a reference to the byte representation of the authority.
	#[inline]
	pub fn as_bytes(&self) -> &[u8] {
		self.data
	}

	#[inline]
	pub fn as_str(&self) -> &str {
		unsafe { std::str::from_utf8_unchecked(&self.data[0..self.p.len()]) }
	}

	#[inline]
	pub fn as_pct_str(&self) -> &PctStr {
		unsafe { PctStr::new_unchecked(self.as_str()) }
	}

	#[inline]
	pub fn userinfo(&self) -> Option<UserInfo> {
		self.p.userinfo_len.map(|len| UserInfo {
			data: &self.data[0..len],
		})
	}

	#[inline]
	pub fn host(&self) -> Host {
		let len = self.p.host_len;
		let offset = self.p.host_offset();
		Host {
			data: &self.data[offset..(offset + len)],
		}
	}

	#[inline]
	pub fn port(&self) -> Option<Port> {
		if let Some(len) = self.p.port_len {
			let offset = self.p.port_offset();
			Some(Port {
				data: &self.data[offset..(offset + len)],
			})
		} else {
			None
		}
	}
}

impl<'a> AsRef<[u8]> for Authority<'a> {
	#[inline]
	fn as_ref(&self) -> &[u8] {
		self.as_bytes()
	}
}

impl<'a> TryFrom<&'a str> for Authority<'a> {
	type Error = Error;

	#[inline]
	fn try_from(str: &'a str) -> Result<Authority<'a>, Error> {
		let parsed_authority = parsing::parse_authority(str.as_ref(), 0)?;
		if parsed_authority.len() < str.len() {
			Err(Error::InvalidAuthority)
		} else {
			Ok(Authority {
				data: str.as_ref(),
				p: parsed_authority,
			})
		}
	}
}

impl<'a> fmt::Display for Authority<'a> {
	#[inline]
	fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
		self.as_str().fmt(f)
	}
}

impl<'a> fmt::Debug for Authority<'a> {
	#[inline]
	fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
		self.as_str().fmt(f)
	}
}

impl<'a> cmp::PartialEq for Authority<'a> {
	#[inline]
	fn eq(&self, other: &Authority) -> bool {
		self.userinfo() == other.userinfo()
			&& self.port() == other.port()
			&& self.host() == other.host()
	}
}

impl<'a> PartialOrd for Authority<'a> {
	#[inline]
	fn partial_cmp(&self, other: &Authority<'a>) -> Option<Ordering> {
		Some(self.cmp(other))
	}
}

impl<'a> Ord for Authority<'a> {
	#[inline]
	fn cmp(&self, other: &Authority<'a>) -> Ordering {
		self.as_pct_str().cmp(other.as_pct_str())
	}
}

impl<'a> Eq for Authority<'a> {}

impl<'a> cmp::PartialEq<&'a str> for Authority<'a> {
	#[inline]
	fn eq(&self, other: &&'a str) -> bool {
		self.as_pct_str() == *other
	}
}

pub struct AuthorityMut<'a> {
	/// The whole IRI data.
	pub(crate) data: &'a mut Vec<u8>,

	pub(crate) offset: usize,

	/// Authority positions.
	pub(crate) p: &'a mut ParsedAuthority,
}

impl<'a> AuthorityMut<'a> {
	#[inline]
	pub fn as_authority(&'a self) -> Authority<'a> {
		Authority {
			data: self.data.as_slice(),
			p: *self.p,
		}
	}

	#[inline]
	pub fn is_empty(&self) -> bool {
		self.as_authority().is_empty()
	}

	#[inline]
	pub fn as_str(&self) -> &str {
		unsafe {
			let offset = self.offset;
			std::str::from_utf8_unchecked(&self.data[offset..(offset + self.p.len())])
		}
	}

	#[inline]
	fn replace(&mut self, range: Range<usize>, content: &[u8]) {
		crate::replace(self.data, range, content)
	}

	#[inline]
	pub fn userinfo(&self) -> Option<UserInfo> {
		if let Some(len) = self.p.userinfo_len {
			let offset = self.offset;
			Some(UserInfo {
				data: &self.data[offset..(offset + len)],
			})
		} else {
			None
		}
	}

	#[inline]
	pub fn set_userinfo(&mut self, userinfo: Option<UserInfo>) {
		let offset = self.offset;

		if let Some(new_userinfo) = userinfo {
			if let Some(userinfo_len) = self.p.userinfo_len {
				self.replace(offset..(offset + userinfo_len), new_userinfo.as_ref());
			} else {
				self.replace(offset..offset, b"@");
				self.replace(offset..offset, new_userinfo.as_ref());
			}

			self.p.userinfo_len = Some(new_userinfo.as_ref().len());
		} else {
			if let Some(userinfo_len) = self.p.userinfo_len {
				self.replace(offset..(offset + userinfo_len + 1), &[]);
			}

			self.p.userinfo_len = None;
		}
	}

	#[inline]
	pub fn host(&self) -> Host {
		let offset = self.offset + self.p.host_offset();
		let len = self.p.host_len;
		Host {
			data: &self.data[offset..(offset + len)],
		}
	}

	#[inline]
	pub fn set_host(&mut self, host: Host) {
		let offset = self.offset + self.p.host_offset();
		self.replace(offset..(offset + self.p.host_len), host.as_ref());
		self.p.host_len = host.as_ref().len();
	}

	#[inline]
	pub fn port(&self) -> Option<Port> {
		if let Some(len) = self.p.port_len {
			let offset = self.offset + self.p.port_offset();
			Some(Port {
				data: &self.data[offset..(offset + len)],
			})
		} else {
			None
		}
	}

	#[inline]
	pub fn set_port(&mut self, port: Option<Port>) {
		let offset = self.offset + self.p.port_offset();

		if let Some(new_port) = port {
			if let Some(port_len) = self.p.port_len {
				self.replace(offset..(offset + port_len), new_port.as_ref());
			} else {
				self.replace(offset..offset, b":");
				self.replace((offset + 1)..(offset + 1), new_port.as_ref());
			}

			self.p.port_len = Some(new_port.as_ref().len());
		} else {
			if let Some(port_len) = self.p.port_len {
				self.replace((offset - 1)..(offset + port_len), &[]);
			}

			self.p.port_len = None;
		}
	}
}

#[cfg(test)]
mod tests {
	use crate::Iri;

	#[test]
	fn explicit_empty_with_authority_alike_path() {
		let iri = Iri::new("scheme:////").unwrap();
		let authority = iri.authority();

		assert!(authority.unwrap().is_empty());
	}
}