1#![cfg_attr(target_arch = "wasm32", allow(unused))]
2use std::error::Error as StdError;
3use std::fmt;
4use std::io;
5
6use crate::{StatusCode, Url};
7
8pub type Result<T> = std::result::Result<T, Error>;
10
11pub struct Error {
17 inner: Box<Inner>,
18}
19
20pub(crate) type BoxError = Box<dyn StdError + Send + Sync>;
21
22struct Inner {
23 kind: Kind,
24 source: Option<BoxError>,
25 url: Option<Url>,
26}
27
28impl Error {
29 pub(crate) fn new<E>(kind: Kind, source: Option<E>) -> Error
30 where
31 E: Into<BoxError>,
32 {
33 Error {
34 inner: Box::new(Inner {
35 kind,
36 source: source.map(Into::into),
37 url: None,
38 }),
39 }
40 }
41
42 pub fn url(&self) -> Option<&Url> {
60 self.inner.url.as_ref()
61 }
62
63 pub fn url_mut(&mut self) -> Option<&mut Url> {
69 self.inner.url.as_mut()
70 }
71
72 pub fn with_url(mut self, url: Url) -> Self {
74 self.inner.url = Some(url);
75 self
76 }
77
78 pub fn without_url(mut self) -> Self {
81 self.inner.url = None;
82 self
83 }
84
85 pub fn is_builder(&self) -> bool {
87 matches!(self.inner.kind, Kind::Builder)
88 }
89
90 pub fn is_redirect(&self) -> bool {
92 matches!(self.inner.kind, Kind::Redirect)
93 }
94
95 pub fn is_status(&self) -> bool {
97 matches!(self.inner.kind, Kind::Status(_))
98 }
99
100 pub fn is_timeout(&self) -> bool {
102 let mut source = self.source();
103
104 while let Some(err) = source {
105 if err.is::<TimedOut>() {
106 return true;
107 }
108 if let Some(io) = err.downcast_ref::<io::Error>() {
109 if io.kind() == io::ErrorKind::TimedOut {
110 return true;
111 }
112 }
113 source = err.source();
114 }
115
116 false
117 }
118
119 pub fn is_request(&self) -> bool {
121 matches!(self.inner.kind, Kind::Request)
122 }
123
124 #[cfg(not(target_arch = "wasm32"))]
125 pub fn is_connect(&self) -> bool {
127 let mut source = self.source();
128
129 while let Some(err) = source {
130 if let Some(hyper_err) = err.downcast_ref::<hyper_util::client::legacy::Error>() {
131 if hyper_err.is_connect() {
132 return true;
133 }
134 }
135
136 source = err.source();
137 }
138
139 false
140 }
141
142 pub fn is_body(&self) -> bool {
144 matches!(self.inner.kind, Kind::Body)
145 }
146
147 pub fn is_decode(&self) -> bool {
149 matches!(self.inner.kind, Kind::Decode)
150 }
151
152 pub fn status(&self) -> Option<StatusCode> {
154 match self.inner.kind {
155 Kind::Status(code) => Some(code),
156 _ => None,
157 }
158 }
159
160 #[allow(unused)]
163 pub(crate) fn into_io(self) -> io::Error {
164 io::Error::new(io::ErrorKind::Other, self)
165 }
166}
167
168impl fmt::Debug for Error {
169 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
170 let mut builder = f.debug_struct("reqwest::Error");
171
172 builder.field("kind", &self.inner.kind);
173
174 if let Some(ref url) = self.inner.url {
175 builder.field("url", url);
176 }
177 if let Some(ref source) = self.inner.source {
178 builder.field("source", source);
179 }
180
181 builder.finish()
182 }
183}
184
185impl fmt::Display for Error {
186 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
187 match self.inner.kind {
188 Kind::Builder => f.write_str("builder error")?,
189 Kind::Request => f.write_str("error sending request")?,
190 Kind::Body => f.write_str("request or response body error")?,
191 Kind::Decode => f.write_str("error decoding response body")?,
192 Kind::Redirect => f.write_str("error following redirect")?,
193 Kind::Upgrade => f.write_str("error upgrading connection")?,
194 Kind::Status(ref code) => {
195 let prefix = if code.is_client_error() {
196 "HTTP status client error"
197 } else {
198 debug_assert!(code.is_server_error());
199 "HTTP status server error"
200 };
201 write!(f, "{prefix} ({code})")?;
202 }
203 };
204
205 if let Some(url) = &self.inner.url {
206 write!(f, " for url ({url})")?;
207 }
208
209 Ok(())
210 }
211}
212
213impl StdError for Error {
214 fn source(&self) -> Option<&(dyn StdError + 'static)> {
215 self.inner.source.as_ref().map(|e| &**e as _)
216 }
217}
218
219#[cfg(target_arch = "wasm32")]
220impl From<crate::error::Error> for wasm_bindgen::JsValue {
221 fn from(err: Error) -> wasm_bindgen::JsValue {
222 js_sys::Error::from(err).into()
223 }
224}
225
226#[cfg(target_arch = "wasm32")]
227impl From<crate::error::Error> for js_sys::Error {
228 fn from(err: Error) -> js_sys::Error {
229 js_sys::Error::new(&format!("{err}"))
230 }
231}
232
233#[derive(Debug)]
234pub(crate) enum Kind {
235 Builder,
236 Request,
237 Redirect,
238 Status(StatusCode),
239 Body,
240 Decode,
241 Upgrade,
242}
243
244pub(crate) fn builder<E: Into<BoxError>>(e: E) -> Error {
247 Error::new(Kind::Builder, Some(e))
248}
249
250pub(crate) fn body<E: Into<BoxError>>(e: E) -> Error {
251 Error::new(Kind::Body, Some(e))
252}
253
254pub(crate) fn decode<E: Into<BoxError>>(e: E) -> Error {
255 Error::new(Kind::Decode, Some(e))
256}
257
258pub(crate) fn request<E: Into<BoxError>>(e: E) -> Error {
259 Error::new(Kind::Request, Some(e))
260}
261
262pub(crate) fn redirect<E: Into<BoxError>>(e: E, url: Url) -> Error {
263 Error::new(Kind::Redirect, Some(e)).with_url(url)
264}
265
266pub(crate) fn status_code(url: Url, status: StatusCode) -> Error {
267 Error::new(Kind::Status(status), None::<Error>).with_url(url)
268}
269
270pub(crate) fn url_bad_scheme(url: Url) -> Error {
271 Error::new(Kind::Builder, Some(BadScheme)).with_url(url)
272}
273
274pub(crate) fn url_invalid_uri(url: Url) -> Error {
275 Error::new(Kind::Builder, Some("Parsed Url is not a valid Uri")).with_url(url)
276}
277
278if_wasm! {
279 pub(crate) fn wasm(js_val: wasm_bindgen::JsValue) -> BoxError {
280 format!("{js_val:?}").into()
281 }
282}
283
284pub(crate) fn upgrade<E: Into<BoxError>>(e: E) -> Error {
285 Error::new(Kind::Upgrade, Some(e))
286}
287
288pub(crate) fn into_io(e: BoxError) -> io::Error {
291 io::Error::new(io::ErrorKind::Other, e)
292}
293
294#[allow(unused)]
295pub(crate) fn decode_io(e: io::Error) -> Error {
296 if e.get_ref().map(|r| r.is::<Error>()).unwrap_or(false) {
297 *e.into_inner()
298 .expect("io::Error::get_ref was Some(_)")
299 .downcast::<Error>()
300 .expect("StdError::is() was true")
301 } else {
302 decode(e)
303 }
304}
305
306#[derive(Debug)]
309pub(crate) struct TimedOut;
310
311impl fmt::Display for TimedOut {
312 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
313 f.write_str("operation timed out")
314 }
315}
316
317impl StdError for TimedOut {}
318
319#[derive(Debug)]
320pub(crate) struct BadScheme;
321
322impl fmt::Display for BadScheme {
323 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
324 f.write_str("URL scheme is not allowed")
325 }
326}
327
328impl StdError for BadScheme {}
329
330#[cfg(test)]
331mod tests {
332 use super::*;
333
334 fn assert_send<T: Send>() {}
335 fn assert_sync<T: Sync>() {}
336
337 #[test]
338 fn test_source_chain() {
339 let root = Error::new(Kind::Request, None::<Error>);
340 assert!(root.source().is_none());
341
342 let link = super::body(root);
343 assert!(link.source().is_some());
344 assert_send::<Error>();
345 assert_sync::<Error>();
346 }
347
348 #[test]
349 fn mem_size_of() {
350 use std::mem::size_of;
351 assert_eq!(size_of::<Error>(), size_of::<usize>());
352 }
353
354 #[test]
355 fn roundtrip_io_error() {
356 let orig = super::request("orig");
357 let io = orig.into_io();
359 let err = super::decode_io(io);
361 match err.inner.kind {
363 Kind::Request => (),
364 _ => panic!("{err:?}"),
365 }
366 }
367
368 #[test]
369 fn from_unknown_io_error() {
370 let orig = io::Error::new(io::ErrorKind::Other, "orly");
371 let err = super::decode_io(orig);
372 match err.inner.kind {
373 Kind::Decode => (),
374 _ => panic!("{err:?}"),
375 }
376 }
377
378 #[test]
379 fn is_timeout() {
380 let err = super::request(super::TimedOut);
381 assert!(err.is_timeout());
382
383 let io = io::Error::new(io::ErrorKind::Other, err);
384 let nested = super::request(io);
385 assert!(nested.is_timeout());
386 }
387}