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
#![allow(missing_docs)]
use reqwest::header::{self, HeaderMap, HeaderName};
use serde::Deserialize;
use super::super::common::protocol;
use super::super::{Error, ErrorKind};
#[derive(Debug, Clone, Deserialize)]
pub struct Container {
pub bytes: u64,
pub name: String,
#[serde(rename = "count")]
pub object_count: u64,
}
#[derive(Debug, Clone, Deserialize)]
pub struct Object {
pub bytes: u64,
pub content_type: Option<String>,
pub name: String,
}
static CONTENT_LENGTH: HeaderName = header::CONTENT_LENGTH;
static CONTENT_TYPE: HeaderName = header::CONTENT_TYPE;
impl Container {
pub fn from_headers(name: &str, value: &HeaderMap) -> Result<Container, Error> {
let bytes_header = HeaderName::from_static("x-container-bytes-used");
let count_header = HeaderName::from_static("x-container-object-count");
let bytes: u64 = protocol::get_required_header(value, &bytes_header)?
.parse()
.map_err(|e| {
Error::new(
ErrorKind::InvalidResponse,
format!("Container-Object-Count is not an integer: {}", e),
)
})?;
let count: u64 = protocol::get_required_header(value, &count_header)?
.parse()
.map_err(|e| {
Error::new(
ErrorKind::InvalidResponse,
format!("Container-Object-Count is not an integer: {}", e),
)
})?;
Ok(Container {
bytes,
name: name.into(),
object_count: count,
})
}
}
impl Object {
pub fn from_headers(name: &str, value: &HeaderMap) -> Result<Object, Error> {
let size: u64 = protocol::get_required_header(value, &CONTENT_LENGTH)?
.parse()
.map_err(|e| {
Error::new(
ErrorKind::InvalidResponse,
format!("ContentLength is not an integer: {}", e),
)
})?;
let ct = protocol::get_header(value, &CONTENT_TYPE)?.map(From::from);
Ok(Object {
bytes: size,
content_type: ct,
name: name.into(),
})
}
}