forked from jooby-project/jooby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExec.java
More file actions
384 lines (353 loc) · 12 KB
/
Exec.java
File metadata and controls
384 lines (353 loc) · 12 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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.jooby.exec;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.concurrent.Executor;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory;
import java.util.concurrent.ForkJoinWorkerThread;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.atomic.AtomicLong;
import java.util.function.BiConsumer;
import java.util.function.Supplier;
import org.jooby.Env;
import org.jooby.Jooby.Module;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Splitter;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import com.google.inject.Binder;
import com.google.inject.Key;
import com.google.inject.name.Names;
import com.typesafe.config.Config;
import com.typesafe.config.ConfigFactory;
import com.typesafe.config.ConfigObject;
import com.typesafe.config.ConfigValue;
import com.typesafe.config.ConfigValueFactory;
import com.typesafe.config.ConfigValueType;
import javaslang.Function4;
import javaslang.control.Try;
/**
* <h1>executor</h1>
* <p>
* Manage the life cycle of {@link ExecutorService} and build async apps, schedule tasks, etc...
* </p>
*
* <h2>usage</h2>
*
* <pre>{@code
* ...
* import org.jooby.exec.Exec;
* ...
*
* {
* use(new Exec());
*
* get("/", req -> {
* ExecutorService executor = req.require(ExecutorService.class);
* // work with executor
* });
* }
* }</pre>
*
* <p>
* The default executor is a {@link Executors#newFixedThreadPool(int)} with threads defined by
* {@link Runtime#availableProcessors()}
* </p>
*
* <h2>explicit creation</h2>
* <p>
* The default {@link ExecutorService} is nice and give you something that just works out of the
* box. But, what if you need to control the number of threads?
* </p>
* <p>
* Explicit control is provided via <code>executors</code> which allow the following syntax:
* </p>
*
* <pre>
* type (= int)? (, daemon (= boolean)? )? (, priority (= int)? )?
* </pre>
*
* <p>
* Let's see some examples:
* </p>
*
* <pre>
* # fixed thread pool with a max number of threads equals to the available runtime processors
* executors = "fixed"
* </pre>
*
* <pre>
* # fixed thread pool with a max number of 10 threads
* executors = "fixed = 10"
* </pre>
*
* <pre>
* # fixed thread pool with a max number of 10 threads
* executors = "fixed = 10"
* </pre>
*
* <pre>
* # scheduled thread pool with a max number of 10 threads
* executors = "scheduled = 10"
* </pre>
*
* <pre>
* # cached thread pool with daemon threads and max priority
* executors = "cached, daemon = true, priority = 10"
* </pre>
*
* <pre>
* # forkjoin thread pool with asyncMode
* executors = "forkjoin, asyncMode = true"
* </pre>
*
* <h2>multiple executors</h2>
* <p>
* Multiple executors are provided by expanding the <code>executors</code> properties, like:
* </p>
*
* <pre>
* executors {
* pool1: fixed
* jobs: forkjoin
* }
* </pre>
*
* <p>
* Later, you can request your executor like:
* </p>
* <pre>{@code
* {
* get("/", req -> {
* ExecutorService pool1 = req.require("pool1", ExecutorService.class);
* ExecutorService jobs = req.require("jobs", ExecutorService.class);
* });
* }
* }</pre>
*
* <h2>shutdown</h2>
* <p>
* Any {@link ExecutorService} created by this module will automatically shutdown on application
* shutdown time.
* </p>
*
* @author edgar
* @since 0.16.0
*/
public class Exec implements Module {
private static final BiConsumer<String, Executor> NOOP = (n, e) -> {
};
/** The logging system. */
private final Logger log = LoggerFactory.getLogger(getClass());
private boolean daemon = true;
private int priority = Thread.NORM_PRIORITY;
private Map<String, Function4<String, Integer, Supplier<ThreadFactory>, Map<String, Object>, ExecutorService>> f =
/** executor factory. */
ImmutableMap
.of(
"cached", (name, n, tf, opts) -> Executors.newCachedThreadPool(tf.get()),
"fixed", (name, n, tf, opts) -> Executors.newFixedThreadPool(n, tf.get()),
"scheduled", (name, n, tf, opts) -> Executors.newScheduledThreadPool(n, tf.get()),
"forkjoin", (name, n, tf, opts) -> {
boolean asyncMode = Boolean.parseBoolean(opts.getOrDefault("asyncMode", "false")
.toString());
return new ForkJoinPool(n, fjwtf(name), null, asyncMode);
});
private String namespace;
protected Exec(final String namespace) {
this.namespace = namespace;
}
public Exec() {
this("executors");
}
/**
* Defined the default value for daemon. This value is used when a executor spec doesn't define a
* value for daemon. Default is: <code>true</code>
*
* @param daemon True for default daemon.
* @return This module.
*/
public Exec daemon(final boolean daemon) {
this.daemon = daemon;
return this;
}
/**
* Defined the default value for priority. This value is used when a executor spec doesn't define
* a value for priority. Default is: {@link Thread#NORM_PRIORITY}.
*
* @param priority One of {@link Thread#MIN_PRIORITY}, {@link Thread#NORM_PRIORITY} or
* {@link Thread#MAX_PRIORITY}.
* @return This module.
*/
public Exec priority(final int priority) {
this.priority = priority;
return this;
}
@Override
public Config config() {
return ConfigFactory.empty("exec.conf").withValue(namespace,
ConfigValueFactory.fromAnyRef("fixed"));
}
@Override
public void configure(final Env env, final Config conf, final Binder binder) {
configure(env, conf, binder, NOOP);
}
protected void configure(final Env env, final Config conf, final Binder binder,
final BiConsumer<String, Executor> callback) {
List<Map<String, Object>> executors = conf.hasPath(namespace)
? executors(conf.getValue(namespace), daemon, priority,
Runtime.getRuntime().availableProcessors())
: Collections.emptyList();
List<Entry<String, ExecutorService>> services = new ArrayList<>(executors.size());
for (Map<String, Object> options : executors) {
// thread factory options
String name = (String) options.remove("name");
log.debug("found executor: {}{}", name, options);
Boolean daemon = (Boolean) options.remove("daemon");
Integer priority = (Integer) options.remove("priority");
String type = String.valueOf(options.remove("type"));
// number of processors
Integer n = (Integer) options.remove(type);
// create executor
Function4<String, Integer, Supplier<ThreadFactory>, Map<String, Object>, ExecutorService> factory = f
.get(type);
if (factory == null) {
throw new IllegalArgumentException(
"Unknown executor: " + type + " must be one of " + f.keySet());
}
ExecutorService executor = factory.apply(type, n, () -> factory(name, daemon, priority),
options);
bind(binder, name, executor);
callback.accept(name, executor);
services.add(Maps.immutableEntry(name, executor));
}
services.stream()
.filter(it -> it.getKey().equals("default"))
.findFirst()
.ifPresent(e -> {
bind(binder, null, e.getValue());
});
env.onStop(() -> {
services.forEach(exec -> Try.run(() -> exec.getValue().shutdown()).onFailure(cause -> {
log.error("shutdown of {} resulted in error", exec.getKey(), cause);
}));
services.clear();
});
}
@SuppressWarnings({"rawtypes", "unchecked" })
private static void bind(final Binder binder, final String name, final ExecutorService executor) {
Class klass = executor.getClass();
Set<Class> types = collector(klass);
for (Class type : types) {
Key key = name == null ? Key.get(type) : Key.get(type, Names.named(name));
binder.bind(key).toInstance(executor);
}
}
@SuppressWarnings("rawtypes")
private static Set<Class> collector(final Class type) {
if (type != null && Executor.class.isAssignableFrom(type)) {
Set<Class> types = new HashSet<>();
if (type.isInterface() || !Modifier.isAbstract(type.getModifiers())) {
types.add(type);
}
types.addAll(collector(type.getSuperclass()));
Arrays.asList(type.getInterfaces()).forEach(it -> types.addAll(collector(it)));
return types;
}
return Collections.emptySet();
}
private static ThreadFactory factory(final String name, final boolean daemon,
final int priority) {
AtomicLong id = new AtomicLong(0);
return r -> {
Thread thread = new Thread(r, name + "-" + id.incrementAndGet());
thread.setDaemon(daemon);
thread.setPriority(priority);
return thread;
};
}
private static ForkJoinWorkerThreadFactory fjwtf(final String name) {
AtomicLong id = new AtomicLong();
return pool -> {
ForkJoinWorkerThread thread = ForkJoinPool.defaultForkJoinWorkerThreadFactory.newThread(pool);
thread.setName(name + "-" + id.incrementAndGet());
return thread;
};
}
private static List<Map<String, Object>> executors(final ConfigValue candidate,
final boolean daemon, final int priority, final int n) {
if (candidate.valueType() == ConfigValueType.STRING) {
Map<String, Object> options = executor("default", daemon, priority, n,
candidate.unwrapped());
return ImmutableList.of(options);
}
ConfigObject conf = (ConfigObject) candidate;
List<Map<String, Object>> result = new ArrayList<>();
for (Entry<String, ConfigValue> executor : conf.entrySet()) {
String name = executor.getKey();
Object value = executor.getValue().unwrapped();
Map<String, Object> options = new HashMap<>();
options.putAll(executor(name, daemon, priority, n, value));
result.add(options);
}
return result;
}
private static Map<String, Object> executor(final String name, final boolean daemon,
final int priority,
final int n,
final Object value) {
Map<String, Object> options = new HashMap<>();
options.put("name", name);
options.put("daemon", daemon);
options.put("priority", priority);
Iterable<String> spec = Splitter.on(",").trimResults().omitEmptyStrings()
.split(value.toString());
for (String option : spec) {
String[] opt = option.split("=");
String optname = opt[0].trim();
Object optvalue;
if (optname.equals("daemon")) {
optvalue = opt.length > 1 ? Boolean.parseBoolean(opt[1].trim()) : daemon;
} else if (optname.equals("asyncMode")) {
optvalue = opt.length > 1 ? Boolean.parseBoolean(opt[1].trim()) : false;
} else if (optname.equals("priority")) {
optvalue = opt.length > 1 ? Integer.parseInt(opt[1].trim()) : priority;
} else {
optvalue = opt.length > 1 ? Integer.parseInt(opt[1].trim()) : n;
options.put("type", optname);
}
options.put(optname, optvalue);
}
return options;
}
}