-
-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathServer.java
More file actions
321 lines (285 loc) · 9.15 KB
/
Server.java
File metadata and controls
321 lines (285 loc) · 9.15 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/*
* Jooby https://jooby.io
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
* Copyright 2014 Edgar Espina
*/
package io.jooby;
import static java.util.Collections.emptyList;
import static java.util.Collections.singletonList;
import static java.util.Spliterators.spliteratorUnknownSize;
import static java.util.stream.StreamSupport.stream;
import java.io.EOFException;
import java.io.IOException;
import java.net.BindException;
import java.nio.channels.ClosedChannelException;
import java.util.*;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.Executor;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import org.jspecify.annotations.Nullable;
import org.slf4j.LoggerFactory;
import io.jooby.exception.StartupException;
import io.jooby.internal.MutedServer;
import io.jooby.output.OutputFactory;
/**
* Web server contract. Defines operations to start, join and stop a web server. Jooby comes with
* three web server implementation: Jetty, Netty and Undertow.
*
* <p>A web server is automatically discovered using the Java Service Loader API. All you need is to
* add the server dependency to your project classpath.
*
* <p>When service loader is not an option or do you want to manually bootstrap a server:
*
* <pre>{@code
* Server server = new NettyServer(); // or JettyServer or UndertowServer
*
* App app = new App();
*
* server.start(app);
*
* ...
*
* server.stop();
*
* }</pre>
*
* @author edgar
* @since 2.0.0
*/
public interface Server {
/** Base class for server. */
abstract class Base implements Server {
private static final Predicate<Throwable> CONNECTION_LOST =
cause -> {
if (cause instanceof IOException) {
String message = cause.getMessage();
if (message != null) {
String msg = message.toLowerCase();
return msg.contains("reset by peer")
|| msg.contains("broken pipe")
|| msg.contains("forcibly closed")
|| msg.contains("connection reset");
}
}
return (cause instanceof ClosedChannelException) || (cause instanceof EOFException);
};
private static final Predicate<Throwable> ADDRESS_IN_USE =
cause ->
(cause instanceof BindException)
|| (Optional.ofNullable(cause)
.map(Throwable::getMessage)
.map(String::toLowerCase)
.filter(msg -> msg.contains("address already in use"))
.isPresent());
private static final List<Predicate<Throwable>> connectionLostListeners =
new CopyOnWriteArrayList<>(singletonList(CONNECTION_LOST));
private static final List<Predicate<Throwable>> addressInUseListeners =
new CopyOnWriteArrayList<>(singletonList(ADDRESS_IN_USE));
private static final boolean useShutdownHook =
Boolean.parseBoolean(System.getProperty("jooby.useShutdownHook", "true"));
private final AtomicBoolean stopping = new AtomicBoolean();
protected void fireStart(List<Jooby> applications, Executor defaultWorker) {
for (Jooby app : applications) {
app.setDefaultWorker(defaultWorker).start(this);
}
}
protected void fireReady(List<Jooby> applications) {
for (Jooby app : applications) {
app.ready(this);
}
}
protected void fireStop(@Nullable List<Jooby> applications) {
if (applications != null) {
if (stopping.compareAndSet(false, true)) {
for (Jooby app : applications) {
app.stop();
}
}
}
}
protected void addShutdownHook() {
if (useShutdownHook) {
Runtime.getRuntime().addShutdownHook(new Thread(MutedServer.mute(this)::stop));
}
}
private ServerOptions options = new ServerOptions(true);
/** Default constructor. */
public Base() {}
@Override
public final ServerOptions getOptions() {
return options;
}
@Override
public Server setOptions(ServerOptions options) {
this.options = options;
return this;
}
}
/**
* Called once during application startup time.
*
* @param application Application being deployed.
* @return This instance.
*/
default Server init(Jooby application) {
var registry = application.getServices();
var options = getOptions();
options.setServer(getName());
registry.put(ServerOptions.class, options);
registry.put(Server.class, this);
return this;
}
/**
* Output buffer required for using native/server buffers.
*
* @return Output buffer required for using native/server buffers.
*/
OutputFactory getOutputFactory();
/**
* Set server options. This method should be called once, calling this method multiple times will
* print a warning.
*
* @param options Server options.
* @return This server.
*/
Server setOptions(ServerOptions options);
/**
* Get server name.
*
* @return Server name.
*/
String getName();
/**
* Get server options.
*
* @return Server options.
*/
ServerOptions getOptions();
/**
* Start an application.
*
* @param application Application to start.
* @return This server.
*/
Server start(Jooby... application);
/**
* Utility method to turn off odd logger. This helps to ensure same startup log lines across
* server implementations.
*
* <p>These logs are silent at application startup time.
*
* @return Name of the logs we want to temporarily silent.
*/
default List<String> getLoggerOff() {
return emptyList();
}
/**
* Stop the server.
*
* @return Stop the server.
*/
Server stop();
/**
* Add a connection lost predicate. On unexpected exception, this method allows to customize which
* error are considered connection lost. If the error is considered a connection lost, no log
* statement will be emitted by the application.
*
* @param predicate Customize connection lost error.
*/
static void addConnectionLost(Predicate<Throwable> predicate) {
Base.connectionLostListeners.add(predicate);
}
/**
* Add an address in use predicate. On unexpected exception, this method allows to customize which
* error are considered address in use. If the error is considered an address in use, no log
* statement will be emitted by the application.
*
* @param predicate Customize connection lost error.
*/
static void addAddressInUse(Predicate<Throwable> predicate) {
Base.addressInUseListeners.add(predicate);
}
/**
* Test whenever the given exception is a connection-lost. Connection-lost exceptions don't
* generate log.error statements.
*
* @param cause Exception to check.
* @return True for connection lost.
*/
static boolean connectionLost(@Nullable Throwable cause) {
for (Predicate<Throwable> connectionLost : Base.connectionLostListeners) {
if (connectionLost.test(cause)) {
return true;
}
}
return false;
}
/**
* Whenever the given exception is an address already in use. This probably won't work in none
* English locale systems.
*
* @param cause Exception to check.
* @return True address already in use.
*/
static boolean isAddressInUse(@Nullable Throwable cause) {
for (Predicate<Throwable> addressInUse : Base.addressInUseListeners) {
if (addressInUse.test(cause)) {
return true;
}
}
return false;
}
/**
* Load server from classpath using {@link ServiceLoader}.
*
* @return A server.
*/
static Server loadServer() {
return loadServer(new ServerOptions(true));
}
/**
* Load server from classpath using {@link ServiceLoader}.
*
* @param options Optional server options.
* @return A server.
*/
static Server loadServer(ServerOptions options) {
List<Server> servers =
stream(
spliteratorUnknownSize(
ServiceLoader.load(Server.class).iterator(), Spliterator.ORDERED),
false)
.toList();
if (servers.isEmpty()) {
throw new StartupException("Server not found.");
}
Predicate<Server> vertxServer = it -> it.getClass().getSimpleName().equals("VertxServer");
Server server;
if (servers.size() > 1) {
boolean warn;
// Must be Netty and Vertx
var supported =
servers.stream().map(it -> it.getClass().getSimpleName()).collect(Collectors.toSet());
supported.remove("NettyServer");
supported.remove("VertxServer");
if (!supported.isEmpty()) {
// Never choose vertx when there is any other implementation.
vertxServer = vertxServer.negate();
warn = true;
} else {
warn = false;
}
server = servers.stream().filter(vertxServer).findFirst().orElse(servers.getFirst());
if (warn) {
var names = servers.stream().map(Server::getName).collect(Collectors.toList());
var log = LoggerFactory.getLogger(server.getClass());
log.warn("Multiple servers found {}. Using: {}", names, server.getName());
}
} else {
server = servers.getFirst();
}
return server.setOptions(options);
}
}