-
Notifications
You must be signed in to change notification settings - Fork 664
Expand file tree
/
Copy pathAbstractIoHandler.java
More file actions
193 lines (180 loc) · 7.69 KB
/
Copy pathAbstractIoHandler.java
File metadata and controls
193 lines (180 loc) · 7.69 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
/*******************************************************************************
* 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 java.io.IOException;
import org.apache.mina.core.service.IoHandlerAdapter;
import org.apache.mina.core.session.IoSession;
import org.apache.mina.core.write.WriteToClosedSessionException;
import org.apache.mina.filter.codec.ProtocolCodecException;
import org.apache.mina.filter.codec.ProtocolDecoderException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import quickfix.ConfigError;
import quickfix.FieldConvertError;
import quickfix.InvalidMessage;
import quickfix.Log;
import quickfix.LogUtil;
import quickfix.Message;
import quickfix.MessageUtils;
import quickfix.Session;
import quickfix.SessionID;
import quickfix.SessionSettings;
import static quickfix.MessageSessionUtils.parse;
/**
* Abstract class used for acceptor and initiator IO handlers.
*/
public abstract class AbstractIoHandler extends IoHandlerAdapter {
protected final Logger log = LoggerFactory.getLogger(getClass());
private final NetworkingOptions networkingOptions;
private final EventHandlingStrategy eventHandlingStrategy;
private final SessionSettings sessionSettings;
private boolean logMessageWhenSessionNotFound;
public AbstractIoHandler(SessionSettings settings, NetworkingOptions options, EventHandlingStrategy eventHandlingStrategy) {
sessionSettings = settings;
networkingOptions = options;
this.eventHandlingStrategy = eventHandlingStrategy;
logMessageWhenSessionNotFound = true;
try {
if (sessionSettings.isSetting(Session.SETTING_LOG_MESSAGE_WHEN_SESSION_NOT_FOUND)) {
logMessageWhenSessionNotFound = sessionSettings.getBool(Session.SETTING_LOG_MESSAGE_WHEN_SESSION_NOT_FOUND);
}
} catch (ConfigError | FieldConvertError e) {
// ignore
}
}
@Override
public void exceptionCaught(IoSession ioSession, Throwable cause) throws Exception {
boolean disconnectNeeded = false;
Session quickFixSession = findQFSession(ioSession);
Throwable realCause = cause;
if (cause instanceof ProtocolDecoderException && cause.getCause() != null) {
realCause = cause.getCause();
} else {
Throwable chain = cause;
while (chain != null && chain.getCause() != null) {
chain = chain.getCause();
if (chain instanceof IOException) {
realCause = chain;
break;
}
}
}
String reason;
if (realCause instanceof WriteToClosedSessionException) {
log.debug("Write to closed session ({}): {}", ioSession.getRemoteAddress(), cause.getMessage());
return;
} else if (realCause instanceof IOException) {
if (quickFixSession != null && quickFixSession.isEnabled()) {
reason = "Socket exception (" + ioSession.getRemoteAddress() + "): " + cause;
} else {
reason = "Socket (" + ioSession.getRemoteAddress() + "): " + cause;
}
disconnectNeeded = true;
} else if (realCause instanceof CriticalProtocolCodecException) {
reason = "Critical protocol codec error: " + cause;
disconnectNeeded = true;
} else if (realCause instanceof ProtocolCodecException) {
reason = "Protocol handler exception: " + cause;
} else {
reason = cause.toString();
}
if (disconnectNeeded) {
try {
if (quickFixSession != null) {
quickFixSession.disconnect(reason, true);
} else {
log.error(reason, cause);
ioSession.closeOnFlush();
}
} finally {
ioSession.setAttribute(SessionConnector.QFJ_RESET_IO_CONNECTOR, Boolean.TRUE);
}
} else {
if (quickFixSession != null) {
LogUtil.logThrowable(quickFixSession.getLog(), reason, cause);
} else {
log.error(reason, cause);
}
}
}
@Override
public void sessionClosed(IoSession ioSession) {
try {
Session quickFixSession = findQFSession(ioSession);
if (quickFixSession != null) {
eventHandlingStrategy.onMessage(quickFixSession, EventHandlingStrategy.END_OF_STREAM);
}
} catch (Exception e) {
throw e;
} finally {
ioSession.removeAttribute(SessionConnector.QF_SESSION);
}
}
@Override
public void messageReceived(IoSession ioSession, Object message) throws Exception {
String messageString = (String) message;
SessionID remoteSessionID = MessageUtils.getReverseSessionID(messageString);
Session quickFixSession = findQFSession(ioSession, remoteSessionID);
if (quickFixSession != null) {
final boolean rejectGarbledMessage = quickFixSession.isRejectGarbledMessage();
final Log sessionLog = quickFixSession.getLog();
sessionLog.onIncoming(messageString);
try {
Message fixMessage = parse(quickFixSession, messageString);
processMessage(ioSession, fixMessage);
} catch (InvalidMessage e) {
if (rejectGarbledMessage) {
final Message fixMessage = e.getFixMessage();
if ( fixMessage != null ) {
sessionLog.onErrorEvent("Processing garbled message: " + e.getMessage());
processMessage(ioSession, fixMessage);
return;
}
}
if (MessageUtils.isLogon(messageString)) {
sessionLog.onErrorEvent("Invalid LOGON message, disconnecting: " + e.getMessage());
ioSession.closeNow();
} else {
sessionLog.onErrorEvent("Invalid message: " + e.getMessage());
}
}
} else {
if (logMessageWhenSessionNotFound) {
log.error("Disconnecting; received message for unknown session: {}", messageString);
} else {
log.error("Disconnecting; received message for unknown session. Remote SessionID: {}", remoteSessionID);
}
ioSession.closeNow();
}
}
protected Session findQFSession(IoSession ioSession, SessionID sessionID) {
Session quickfixSession = findQFSession(ioSession);
if (quickfixSession == null) {
quickfixSession = Session.lookupSession(sessionID);
}
return quickfixSession;
}
private Session findQFSession(IoSession ioSession) {
return (Session) ioSession.getAttribute(SessionConnector.QF_SESSION);
}
protected NetworkingOptions getNetworkingOptions() {
return networkingOptions;
}
protected abstract void processMessage(IoSession ioSession, Message message) throws Exception;
}