-
Notifications
You must be signed in to change notification settings - Fork 662
Expand file tree
/
Copy pathThreadPerSessionEventHandlingStrategy.java
More file actions
318 lines (279 loc) · 11.5 KB
/
ThreadPerSessionEventHandlingStrategy.java
File metadata and controls
318 lines (279 loc) · 11.5 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
/*
******************************************************************************
* Copyright (c) quickfixengine.org All rights reserved.
*
* This file is part of the QuickFIX FIX Engine
*
* This file may be distributed under the terms of the quickfixengine.org
* license as defined by quickfixengine.org and appearing in the file
* LICENSE included in the packaging of this file.
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
* THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE.
*
* See http://www.quickfixengine.org/LICENSE for licensing information.
*
* Contact ask@quickfixengine.org if any conditions of this licensing
* are not clear to you.
******************************************************************************/
package quickfix.mina;
import quickfix.*;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executor;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;
import static quickfix.mina.QueueTrackers.newDefaultQueueTracker;
import static quickfix.mina.QueueTrackers.newSingleSessionWatermarkTracker;
/**
* Processes messages in a session-specific thread.
*/
public class ThreadPerSessionEventHandlingStrategy implements EventHandlingStrategy {
private final ConcurrentMap<SessionID, MessageDispatchingThread> dispatchers = new ConcurrentHashMap<>();
private final SessionConnector sessionConnector;
private final int queueCapacity;
private final int queueLowerWatermark;
private final int queueUpperWatermark;
private volatile Executor executor;
public ThreadPerSessionEventHandlingStrategy(SessionConnector connector, int queueCapacity) {
sessionConnector = connector;
this.queueCapacity = queueCapacity;
this.queueLowerWatermark = -1;
this.queueUpperWatermark = -1;
}
public ThreadPerSessionEventHandlingStrategy(SessionConnector connector, int queueLowerWatermark, int queueUpperWatermark) {
sessionConnector = connector;
this.queueCapacity = -1;
this.queueLowerWatermark = queueLowerWatermark;
this.queueUpperWatermark = queueUpperWatermark;
}
public void setExecutor(Executor executor) {
this.executor = executor;
}
MessageDispatchingThread createDispatcherThread(Session quickfixSession) {
return new MessageDispatchingThread(quickfixSession, executor);
}
@Override
public void onMessage(Session quickfixSession, Message message) {
MessageDispatchingThread dispatcher = dispatchers.get(quickfixSession.getSessionID());
if (dispatcher == null) {
dispatcher = dispatchers.computeIfAbsent(quickfixSession.getSessionID(), sessionID -> {
final MessageDispatchingThread newDispatcher = createDispatcherThread(quickfixSession);
startDispatcherThread(newDispatcher);
return newDispatcher;
});
}
if (message != null) {
dispatcher.enqueue(message);
}
}
/**
* The SessionConnector is not directly required for thread-per-session handler - we don't multiplex
* between multiple sessions here.
* However it is made available here for other callers (such as SessionProviders wishing to register dynamic sessions).
* @return the SessionConnector
*/
@Override
public SessionConnector getSessionConnector() {
return sessionConnector;
}
protected void startDispatcherThread(MessageDispatchingThread dispatcher) {
dispatcher.start();
}
public void stopDispatcherThreads() {
// Snapshot the dispatchers to avoid live-view surprises during concurrent modification
final List<MessageDispatchingThread> dispatchersToShutdown = new ArrayList<>(dispatchers.values());
for (final MessageDispatchingThread dispatcher : dispatchersToShutdown) {
dispatcher.stopDispatcher();
}
// Wait for each dispatcher thread to actually finish
for (final MessageDispatchingThread dispatcher : dispatchersToShutdown) {
try {
dispatcher.awaitTermination(5, TimeUnit.SECONDS);
} catch (final InterruptedException e) {
Thread.currentThread().interrupt();
return;
}
}
}
/**
* A stand-in for the Thread class that delegates to an Executor.
* Implements all the API required by pre-existing QFJ code.
*/
protected static abstract class ThreadAdapter implements Runnable {
private final Executor executor;
private final String name;
private final CountDownLatch startedLatch = new CountDownLatch(1);
private volatile Thread runnerThread;
public ThreadAdapter(String name, Executor executor) {
this.name = name;
this.executor = executor != null ? executor : new DedicatedThreadExecutor(name);
}
public void start() {
executor.execute(this);
}
@Override
public final void run() {
runnerThread = Thread.currentThread();
startedLatch.countDown();
Thread currentThread = Thread.currentThread();
String threadName = currentThread.getName();
try {
if (!name.equals(threadName)) {
currentThread.setName(name + " (" + threadName + ")");
}
doRun();
} finally {
currentThread.setName(threadName);
}
}
/**
* Blocks until the dispatcher thread has fully terminated, or the timeout elapses.
* Uses {@link Thread#join} so that when this method returns the thread's
* {@code isAlive()} is guaranteed to be {@code false}.
*/
public void awaitTermination(long timeout, TimeUnit unit) throws InterruptedException {
long deadlineMs = System.currentTimeMillis() + unit.toMillis(timeout);
if (startedLatch.await(timeout, unit)) {
long remaining = deadlineMs - System.currentTimeMillis();
if (remaining > 0) {
runnerThread.join(remaining);
}
}
}
abstract void doRun();
/**
* An Executor that uses its own dedicated Thread. Provides equivalent
* behavior to the prior non-Executor approach.
*/
static final class DedicatedThreadExecutor implements Executor {
private final String name;
DedicatedThreadExecutor(String name) {
this.name = name;
}
@Override
public void execute(Runnable command) {
new Thread(command, name).start();
}
}
}
protected class MessageDispatchingThread extends ThreadAdapter {
private final Session quickfixSession;
private final BlockingQueue<Message> messages;
private final QueueTracker<Message> queueTracker;
private volatile boolean stopped;
private volatile boolean stopping;
private MessageDispatchingThread(Session session, Executor executor) {
super("QF/J Session dispatcher: " + session.getSessionID(), executor);
quickfixSession = session;
if (queueCapacity >= 0) {
messages = new LinkedBlockingQueue<>(queueCapacity);
queueTracker = newDefaultQueueTracker(messages);
} else {
messages = new LinkedBlockingQueue<>();
if (queueLowerWatermark > 0 && queueUpperWatermark > 0) {
queueTracker = newSingleSessionWatermarkTracker(messages, queueLowerWatermark, queueUpperWatermark,
quickfixSession);
} else {
queueTracker = newDefaultQueueTracker(messages);
}
}
}
public void enqueue(Message message) {
if (message == END_OF_STREAM && stopping) {
return;
}
try {
queueTracker.put(message);
} catch (final InterruptedException e) {
quickfixSession.getLog().onErrorEvent(e.toString());
Thread.currentThread().interrupt();
}
}
public int getQueueSize() {
return messages.size();
}
@Override
void doRun() {
while (!stopping) {
try {
final Message message = getNextMessage(queueTracker);
if (message == null) {
// no message available in polling interval
continue;
}
quickfixSession.next(message);
if (message == END_OF_STREAM) {
stopping = true;
}
} catch (final InterruptedException e) {
LogUtil.logThrowable(quickfixSession.getSessionID(),
"Message dispatcher interrupted", e);
stopping = true;
Thread.currentThread().interrupt();
} catch (final Throwable e) {
LogUtil.logThrowable(quickfixSession.getSessionID(),
"Error during message processing", e);
}
}
if (!messages.isEmpty()) {
final List<Message> tempList = new ArrayList<>(messages.size());
queueTracker.drainTo(tempList);
for (Message message : tempList) {
try {
quickfixSession.next(message);
} catch (final Throwable e) {
LogUtil.logThrowable(quickfixSession.getSessionID(),
"Error during message processing", e);
}
}
}
dispatchers.remove(quickfixSession.getSessionID());
stopped = true;
}
public void stopDispatcher() {
enqueue(END_OF_STREAM);
stopping = true;
}
public boolean isStopped() {
return stopped;
}
}
protected MessageDispatchingThread getDispatcher(SessionID sessionID) {
return dispatchers.get(sessionID);
}
/**
* Get the next message from the messages {@link java.util.concurrent.BlockingQueue}.
* <p>
* We do not block indefinitely as that would prevent this thread from ever stopping
*
* @see #THREAD_WAIT_FOR_MESSAGE_MS
* @param queueTracker
* @return next message or null if nothing arrived within the timeout period
* @throws InterruptedException
*/
protected Message getNextMessage(QueueTracker<Message> queueTracker) throws InterruptedException {
return queueTracker.poll(THREAD_WAIT_FOR_MESSAGE_MS, TimeUnit.MILLISECONDS);
}
@Override
public int getQueueSize() {
int ret = 0;
for (final MessageDispatchingThread mdt : dispatchers.values()) {
ret += mdt.getQueueSize();
}
return ret;
}
@Override
public int getQueueSize(SessionID sessionID) {
MessageDispatchingThread dispatchingThread = dispatchers.get(sessionID);
if (dispatchingThread != null) {
return dispatchingThread.getQueueSize();
}
return 0;
}
}