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
288


use crate::prelude::*;




#[ cfg (feature = "hss-resources") ]
pub struct FileResource {
	pub path : path::PathBuf,
	pub content_type : Option<ContentType>,
	pub cache : Option<Arc<RwLock<Option<Bytes>>>>,
}


#[ cfg (feature = "hss-resources") ]
impl FileResource {
	
	pub fn new (_path : impl AsRef<path::Path>, _content_type : Option<ContentType>, _should_cache : bool) -> Self {
		FileResource {
				path : _path.as_ref () .into (),
				content_type : _content_type,
				cache : if _should_cache {
						Some (Arc::new (RwLock::new (None)))
					} else {
						None
					},
			}
	}
	
	pub fn load (&self) -> ServerResult<Bytes> {
		if let Some (_cache) = self.cache.as_ref () {
			let _cache = _cache.read () .or_wrap (0x6801d05a) ?;
			if let Some (_data) = _cache.as_ref () {
				return Ok (_data.clone ());
			}
			drop (_cache);
		}
		let _data = fs::read (&self.path) .or_wrap (0x0db95839) ?;
		let _data = Bytes::from (_data);
		if let Some (_cache) = self.cache.as_ref () {
			let mut _cache = _cache.write () .or_panic (0xf103624b);
			*_cache = Some (_data.clone ());
		}
		Ok (_data)
	}
	
	pub fn new_text (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Text), false)
	}
	
	pub fn new_html (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Html), false)
	}
	
	pub fn new_css (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Css), false)
	}
	
	pub fn new_js (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Js), false)
	}
	
	pub fn new_json (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Json), false)
	}
	
	pub fn new_xml (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Xml), false)
	}
	
	pub fn new_png (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Png), false)
	}
	
	pub fn new_jpeg (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Jpeg), false)
	}
	
	pub fn new_svg (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Svg), false)
	}
	
	pub fn new_icon (_path : impl AsRef<path::Path>) -> Self {
		Self::new (_path, Some (ContentType::Icon), false)
	}
	
	pub fn response (&self) -> ServerResult<Response<Body>> {
		let _data = self.load () ?;
		let _response = Response::new_200_with_body (_data, self.content_type);
		Ok (_response)
	}
}


#[ cfg (feature = "hss-handler") ]
#[ cfg (feature = "hss-resources") ]
impl Handler for FileResource {
	
	type Future = future::Ready<ServerResult<Response<Self::ResponseBody>>>;
	type ResponseBody = BodyWrapper<Body>;
	type ResponseBodyError = ServerError;
	
	fn handle (&self, _request : Request<Body>) -> Self::Future {
		match self.response () {
			Ok (_response) => {
				future::ready (Ok (_response.map (BodyWrapper::new)))
			}
			Err (_error) =>
				future::ready (Err (_error)),
		}
	}
}




#[ cfg (feature = "hss-resources") ]
pub struct BytesResource {
	pub data : Bytes,
	pub content_type : Option<ContentType>,
}


#[ cfg (feature = "hss-resources") ]
impl BytesResource {
	
	pub fn new (_data : impl Into<Bytes>, _content_type : Option<ContentType>) -> Self {
		BytesResource {
				data : _data.into (),
				content_type : _content_type,
			}
	}
	
	pub fn new_text (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Text))
	}
	
	pub fn new_html (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Html))
	}
	
	pub fn new_css (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Css))
	}
	
	pub fn new_js (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Js))
	}
	
	pub fn new_json (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Json))
	}
	
	pub fn new_xml (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Xml))
	}
	
	pub fn new_png (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Png))
	}
	
	pub fn new_jpeg (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Jpeg))
	}
	
	pub fn new_svg (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Svg))
	}
	
	pub fn new_icon (_data : impl Into<Bytes>) -> Self {
		Self::new (_data, Some (ContentType::Icon))
	}
	
	pub fn load_from_path (_path : impl AsRef<path::Path>, _content_type : Option<ContentType>) -> ServerResult<Self> {
		let _data = fs::read (_path) ?;
		Ok (Self::new (_data, _content_type))
	}
	
	pub fn response (&self) -> Response<Body> {
		Response::new_200_with_body (self.data.clone (), self.content_type)
	}
}


#[ cfg (feature = "hss-handler") ]
#[ cfg (feature = "hss-resources") ]
impl Handler for BytesResource {
	
	type Future = future::Ready<ServerResult<Response<Self::ResponseBody>>>;
	type ResponseBody = BodyWrapper<Body>;
	type ResponseBodyError = ServerError;
	
	fn handle (&self, _request : Request<Body>) -> Self::Future {
		let _response = self.response ();
		future::ready (Ok (_response.map (BodyWrapper::new)))
	}
}




#[ cfg (feature = "hss-resources") ]
pub struct EmbeddedResource {
	pub data : &'static [u8],
	pub content_type : Option<ContentType>,
}


#[ cfg (feature = "hss-handler") ]
#[ cfg (feature = "hss-resources") ]
impl EmbeddedResource {
	
	pub fn new (_data : &'static (impl AsRef<[u8]> + ?Sized), _content_type : Option<ContentType>) -> Self {
		let _data = _data.as_ref ();
		EmbeddedResource {
				data : _data,
				content_type : _content_type,
			}
	}
	
	pub const fn new_const (_data : &'static [u8], _content_type : Option<ContentType>) -> Self {
		EmbeddedResource {
				data : _data,
				content_type : _content_type,
			}
	}
	
	pub fn new_text (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Text))
	}
	
	pub fn new_html (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Html))
	}
	
	pub fn new_css (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Css))
	}
	
	pub fn new_js (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Js))
	}
	
	pub fn new_json (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Json))
	}
	
	pub fn new_xml (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Xml))
	}
	
	pub fn new_png (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Png))
	}
	
	pub fn new_jpeg (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Jpeg))
	}
	
	pub fn new_svg (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Svg))
	}
	
	pub fn new_icon (_data : &'static (impl AsRef<[u8]> + ?Sized)) -> Self {
		Self::new (_data, Some (ContentType::Icon))
	}
	
	pub fn response (&self) -> Response<Body> {
		Response::new_200_with_body (self.data, self.content_type)
	}
}


#[ cfg (feature = "hss-handler") ]
#[ cfg (feature = "hss-resources") ]
impl Handler for EmbeddedResource {
	
	type Future = future::Ready<ServerResult<Response<Self::ResponseBody>>>;
	type ResponseBody = BodyWrapper<Body>;
	type ResponseBodyError = ServerError;
	
	fn handle (&self, _request : Request<Body>) -> Self::Future {
		let _response = self.response ();
		future::ready (Ok (_response.map (BodyWrapper::new)))
	}
}