-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathClientOptions.java
More file actions
241 lines (199 loc) · 7.82 KB
/
ClientOptions.java
File metadata and controls
241 lines (199 loc) · 7.82 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/**
* This file was auto-generated by Fern from our API Definition.
*/
package com.deepgram.core;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
import java.util.function.Supplier;
import okhttp3.OkHttpClient;
public final class ClientOptions {
private final Environment environment;
private final Map<String, String> headers;
private final Map<String, Supplier<String>> headerSuppliers;
private final OkHttpClient httpClient;
private final int timeout;
private final int maxRetries;
private final Optional<WebSocketFactory> webSocketFactory;
private final Optional<LogConfig> logging;
private ClientOptions(
Environment environment,
Map<String, String> headers,
Map<String, Supplier<String>> headerSuppliers,
OkHttpClient httpClient,
int timeout,
int maxRetries,
Optional<WebSocketFactory> webSocketFactory,
Optional<LogConfig> logging) {
this.environment = environment;
this.headers = new HashMap<>();
this.headers.putAll(headers);
this.headers.putAll(new HashMap<String, String>() {
{
put("User-Agent", "com.deepgram:deepgram-java-sdk/0.5.0"); // x-release-please-version
put("X-Fern-Language", "JAVA");
put("X-Fern-SDK-Name", "com.deepgram:deepgram-java-sdk");
put("X-Fern-SDK-Version", "0.5.0"); // x-release-please-version
}
});
this.headerSuppliers = headerSuppliers;
this.httpClient = httpClient;
this.timeout = timeout;
this.maxRetries = maxRetries;
this.webSocketFactory = webSocketFactory;
this.logging = logging;
}
public Environment environment() {
return this.environment;
}
public Map<String, String> headers(RequestOptions requestOptions) {
Map<String, String> values = new HashMap<>(this.headers);
headerSuppliers.forEach((key, supplier) -> {
values.put(key, supplier.get());
});
if (requestOptions != null) {
values.putAll(requestOptions.getHeaders());
}
return values;
}
public int timeout(RequestOptions requestOptions) {
if (requestOptions == null) {
return this.timeout;
}
return requestOptions.getTimeout().orElse(this.timeout);
}
public OkHttpClient httpClient() {
return this.httpClient;
}
public OkHttpClient httpClientWithTimeout(RequestOptions requestOptions) {
if (requestOptions == null) {
return this.httpClient;
}
return this.httpClient
.newBuilder()
.callTimeout(requestOptions.getTimeout().get(), requestOptions.getTimeoutTimeUnit())
.connectTimeout(0, TimeUnit.SECONDS)
.writeTimeout(0, TimeUnit.SECONDS)
.readTimeout(0, TimeUnit.SECONDS)
.build();
}
public int maxRetries() {
return this.maxRetries;
}
public Optional<WebSocketFactory> webSocketFactory() {
return this.webSocketFactory;
}
public Optional<LogConfig> logging() {
return this.logging;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Environment environment;
private final Map<String, String> headers = new HashMap<>();
private final Map<String, Supplier<String>> headerSuppliers = new HashMap<>();
private int maxRetries = 2;
private Optional<Integer> timeout = Optional.empty();
private OkHttpClient httpClient = null;
private Optional<LogConfig> logging = Optional.empty();
private Optional<WebSocketFactory> webSocketFactory = Optional.empty();
public Builder environment(Environment environment) {
this.environment = environment;
return this;
}
public Builder addHeader(String key, String value) {
this.headers.put(key, value);
return this;
}
public Builder addHeader(String key, Supplier<String> value) {
this.headerSuppliers.put(key, value);
return this;
}
/**
* Override the timeout in seconds. Defaults to 60 seconds.
*/
public Builder timeout(int timeout) {
this.timeout = Optional.of(timeout);
return this;
}
/**
* Override the timeout in seconds. Defaults to 60 seconds.
*/
public Builder timeout(Optional<Integer> timeout) {
this.timeout = timeout;
return this;
}
/**
* Override the maximum number of retries. Defaults to 2 retries.
*/
public Builder maxRetries(int maxRetries) {
this.maxRetries = maxRetries;
return this;
}
public Builder httpClient(OkHttpClient httpClient) {
this.httpClient = httpClient;
return this;
}
/**
* Set a custom WebSocketFactory for creating WebSocket connections.
*/
public Builder webSocketFactory(WebSocketFactory webSocketFactory) {
this.webSocketFactory = Optional.of(webSocketFactory);
return this;
}
/**
* Configure logging for the SDK. Silent by default — no log output unless explicitly configured.
*/
public Builder logging(LogConfig logging) {
this.logging = Optional.of(logging);
return this;
}
public ClientOptions build() {
OkHttpClient.Builder httpClientBuilder =
this.httpClient != null ? this.httpClient.newBuilder() : new OkHttpClient.Builder();
if (this.httpClient != null) {
timeout.ifPresent(timeout -> httpClientBuilder
.callTimeout(timeout, TimeUnit.SECONDS)
.connectTimeout(0, TimeUnit.SECONDS)
.writeTimeout(0, TimeUnit.SECONDS)
.readTimeout(0, TimeUnit.SECONDS));
} else {
httpClientBuilder
.callTimeout(this.timeout.orElse(60), TimeUnit.SECONDS)
.connectTimeout(0, TimeUnit.SECONDS)
.writeTimeout(0, TimeUnit.SECONDS)
.readTimeout(0, TimeUnit.SECONDS)
.addInterceptor(new RetryInterceptor(this.maxRetries));
}
Logger logger = Logger.from(this.logging);
httpClientBuilder.addInterceptor(new LoggingInterceptor(logger));
this.httpClient = httpClientBuilder.build();
this.timeout = Optional.of(httpClient.callTimeoutMillis() / 1000);
return new ClientOptions(
environment,
headers,
headerSuppliers,
httpClient,
this.timeout.get(),
this.maxRetries,
this.webSocketFactory,
this.logging);
}
/**
* Create a new Builder initialized with values from an existing ClientOptions
*/
public static Builder from(ClientOptions clientOptions) {
Builder builder = new Builder();
builder.environment = clientOptions.environment();
builder.timeout = Optional.of(clientOptions.timeout(null));
builder.httpClient = clientOptions.httpClient();
builder.headers.putAll(clientOptions.headers);
builder.headerSuppliers.putAll(clientOptions.headerSuppliers);
builder.maxRetries = clientOptions.maxRetries();
builder.logging = clientOptions.logging();
return builder;
}
}
}