opendal/services/dbfs/
error.rs1use std::fmt::Debug;
19
20use http::Response;
21use http::StatusCode;
22use serde::Deserialize;
23
24use crate::raw::*;
25use crate::*;
26
27#[derive(Default, Deserialize)]
29struct DbfsError {
30 error_code: String,
31 message: String,
32}
33
34impl Debug for DbfsError {
35 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
36 let mut de = f.debug_struct("DbfsError");
37 de.field("error_code", &self.error_code);
38 de.field("message", &self.message.replace('\n', " "));
40
41 de.finish()
42 }
43}
44
45pub(super) fn parse_error(resp: Response<Buffer>) -> Error {
46 let (parts, body) = resp.into_parts();
47 let bs = body.to_bytes();
48
49 let (kind, retryable) = match parts.status {
50 StatusCode::NOT_FOUND => (ErrorKind::NotFound, false),
51 StatusCode::UNAUTHORIZED | StatusCode::FORBIDDEN => (ErrorKind::PermissionDenied, false),
52 StatusCode::PRECONDITION_FAILED => (ErrorKind::ConditionNotMatch, false),
53 StatusCode::INTERNAL_SERVER_ERROR
54 | StatusCode::BAD_GATEWAY
55 | StatusCode::SERVICE_UNAVAILABLE
56 | StatusCode::GATEWAY_TIMEOUT => (ErrorKind::Unexpected, true),
57 _ => (ErrorKind::Unexpected, false),
58 };
59
60 let message = match serde_json::from_slice::<DbfsError>(&bs) {
61 Ok(dbfs_error) => format!("{:?}", dbfs_error.message),
62 Err(_) => String::from_utf8_lossy(&bs).into_owned(),
63 };
64
65 let mut err = Error::new(kind, message);
66
67 err = with_error_response_context(err, parts);
68
69 if retryable {
70 err = err.set_temporary();
71 }
72
73 err
74}