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
use super::mime::Mime;
use assert_impl::assert_impl;
use qiniu_apis::{
http::Extensions,
http_client::{FileName, RegionsProvider},
};
use qiniu_utils::ObjectName;
use std::{collections::HashMap, mem::take, sync::Arc};
#[derive(Debug, Default, Clone)]
pub struct ObjectParams(Arc<ObjectParamsInner>);
#[derive(Debug, Default)]
struct ObjectParamsInner {
region_provider: Option<Box<dyn RegionsProvider>>,
object_name: Option<ObjectName>,
file_name: Option<FileName>,
content_type: Option<Mime>,
metadata: HashMap<String, String>,
custom_vars: HashMap<String, String>,
extensions: Extensions,
}
impl ObjectParams {
#[inline]
pub fn builder() -> ObjectParamsBuilder {
Default::default()
}
#[inline]
pub fn region_provider(&self) -> Option<&dyn RegionsProvider> {
self.0.region_provider.as_deref()
}
#[inline]
pub fn object_name(&self) -> Option<&str> {
self.0.object_name.as_deref()
}
#[inline]
pub fn file_name(&self) -> Option<&str> {
self.0.file_name.as_deref()
}
#[inline]
pub fn content_type(&self) -> Option<&Mime> {
self.0.content_type.as_ref()
}
#[inline]
pub fn metadata(&self) -> &HashMap<String, String> {
&self.0.metadata
}
#[inline]
pub fn custom_vars(&self) -> &HashMap<String, String> {
&self.0.custom_vars
}
#[inline]
pub fn extensions(&self) -> &Extensions {
&self.0.extensions
}
#[allow(dead_code)]
fn assert() {
assert_impl!(Send: Self);
assert_impl!(Sync: Self);
}
}
#[derive(Debug)]
pub struct ObjectParamsBuilder(ObjectParamsInner);
impl Default for ObjectParamsBuilder {
fn default() -> Self {
Self(ObjectParamsInner {
region_provider: Default::default(),
object_name: Default::default(),
file_name: Default::default(),
content_type: Default::default(),
metadata: Default::default(),
custom_vars: Default::default(),
extensions: Default::default(),
})
}
}
impl ObjectParamsBuilder {
#[inline]
pub fn region_provider(&mut self, region_provider: impl RegionsProvider + 'static) -> &mut Self {
self.0.region_provider = Some(Box::new(region_provider));
self
}
#[inline]
pub fn object_name(&mut self, object_name: impl Into<ObjectName>) -> &mut Self {
self.0.object_name = Some(object_name.into());
self
}
#[inline]
pub fn file_name(&mut self, file_name: impl Into<FileName>) -> &mut Self {
self.0.file_name = Some(file_name.into());
self
}
#[inline]
pub fn content_type(&mut self, content_type: Mime) -> &mut Self {
self.0.content_type = Some(content_type);
self
}
#[inline]
pub fn metadata(&mut self, metadata: HashMap<String, String>) -> &mut Self {
self.0.metadata = metadata;
self
}
#[inline]
pub fn insert_metadata<K: Into<String>, V: Into<String>>(&mut self, key: K, value: V) -> &mut Self {
self.0.metadata.insert(key.into(), value.into());
self
}
#[inline]
pub fn custom_vars(&mut self, custom_vars: HashMap<String, String>) -> &mut Self {
self.0.custom_vars = custom_vars;
self
}
#[inline]
pub fn insert_custom_var<K: Into<String>, V: Into<String>>(&mut self, key: K, value: V) -> &mut Self {
self.0.custom_vars.insert(key.into(), value.into());
self
}
#[inline]
pub fn extensions(&mut self, extensions: Extensions) -> &mut Self {
self.0.extensions = extensions;
self
}
#[inline]
pub fn insert_extension<T: Send + Sync + 'static>(&mut self, val: T) -> &mut Self {
self.0.extensions.insert(val);
self
}
#[inline]
pub fn build(&mut self) -> ObjectParams {
ObjectParams(Arc::new(take(&mut self.0)))
}
#[allow(dead_code)]
fn assert() {
assert_impl!(Send: Self);
assert_impl!(Sync: Self);
}
}