-
Notifications
You must be signed in to change notification settings - Fork 492
/
Copy pathBaseArgs.java
138 lines (119 loc) · 4.8 KB
/
BaseArgs.java
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
/*
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2020 MinIO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.minio;
import com.google.common.collect.HashMultimap;
import com.google.common.collect.Multimap;
import com.google.common.collect.Multimaps;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Consumer;
import okhttp3.HttpUrl;
/** Base argument class. */
public abstract class BaseArgs {
protected Multimap<String, String> extraHeaders =
Multimaps.unmodifiableMultimap(HashMultimap.create());
protected Multimap<String, String> extraQueryParams =
Multimaps.unmodifiableMultimap(HashMultimap.create());
public Multimap<String, String> extraHeaders() {
return extraHeaders;
}
public Multimap<String, String> extraQueryParams() {
return extraQueryParams;
}
protected void checkSse(ServerSideEncryption sse, HttpUrl url) {
if (sse == null) {
return;
}
if (sse.tlsRequired() && !url.isHttps()) {
throw new IllegalArgumentException(
sse + " operations must be performed over a secure connection.");
}
}
/** Base builder which builds arguments. */
public abstract static class Builder<B extends Builder<B, A>, A extends BaseArgs> {
protected List<Consumer<A>> operations;
protected abstract void validate(A args);
public Builder() {
this.operations = new ArrayList<>();
}
@SuppressWarnings("unchecked") // Its safe to type cast to B as B extends this class.
public B extraHeaders(Multimap<String, String> headers) {
final Multimap<String, String> extraHeaders = Utils.newMultimap(headers);
operations.add(args -> args.extraHeaders = extraHeaders);
return (B) this;
}
@SuppressWarnings("unchecked") // Its safe to type cast to B as B extends this class.
public B extraQueryParams(Multimap<String, String> queryParams) {
final Multimap<String, String> extraQueryParams = Utils.newMultimap(queryParams);
operations.add(args -> args.extraQueryParams = extraQueryParams);
return (B) this;
}
@SuppressWarnings("unchecked") // Its safe to type cast to B as B extends this class.
public B extraHeaders(Map<String, String> headers) {
final Multimap<String, String> extraHeaders = Utils.newMultimap(headers);
operations.add(args -> args.extraHeaders = extraHeaders);
return (B) this;
}
@SuppressWarnings("unchecked") // Its safe to type cast to B as B extends this class.
public B extraQueryParams(Map<String, String> queryParams) {
final Multimap<String, String> extraQueryParams = Utils.newMultimap(queryParams);
operations.add(args -> args.extraQueryParams = extraQueryParams);
return (B) this;
}
@SuppressWarnings("unchecked") // safe as B will always be the builder of the current args class
private A newInstance() {
try {
for (Constructor<?> constructor :
this.getClass().getEnclosingClass().getDeclaredConstructors()) {
if (constructor.getParameterCount() == 0) {
return (A) constructor.newInstance();
}
}
throw new RuntimeException(
this.getClass().getEnclosingClass() + " must have no argument constructor");
} catch (InstantiationException
| IllegalAccessException
| InvocationTargetException
| SecurityException e) {
// Args class must have no argument constructor with at least protected access.
throw new RuntimeException(e);
}
}
/** Creates derived Args class with each attribute populated. */
public A build() throws IllegalArgumentException {
A args = newInstance();
operations.forEach(operation -> operation.accept(args));
validate(args);
return args;
}
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof BaseArgs)) return false;
BaseArgs baseArgs = (BaseArgs) o;
return Objects.equals(extraHeaders, baseArgs.extraHeaders)
&& Objects.equals(extraQueryParams, baseArgs.extraQueryParams);
}
@Override
public int hashCode() {
return Objects.hash(extraHeaders, extraQueryParams);
}
}