/******************************************************************************* * 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; import com.github.lburgazzoli.quickfixj.core.IFIXContext; import quickfix.field.ApplVerID; import quickfix.field.DefaultApplVerID; import java.net.InetAddress; import java.util.Enumeration; import java.util.Hashtable; import java.util.Map; import java.util.Properties; import java.util.Set; /** * Factory for creating sessions. Used by the communications code (acceptors, * initiators) for creating sessions. */ public class DefaultSessionFactory implements SessionFactory { private static final Map<String,DataDictionary> dictionaryCache = new Hashtable<String,DataDictionary>(); private final Application application; private final MessageStoreFactory messageStoreFactory; private final LogFactory logFactory; private final MessageFactory messageFactory; private final IFIXContext context; /** * c-tor * * @param context * @param settings * @param application * @param messageStoreFactory */ public DefaultSessionFactory( final IFIXContext context, final SessionSettings settings, final Application application, final MessageStoreFactory messageStoreFactory) { this(context,settings,application,messageStoreFactory,new DefaultMessageFactory()); } /** * c-tor * * @param context * @param settings * @param application * @param messageStoreFactory * @param messageFactory */ public DefaultSessionFactory( final IFIXContext context, final SessionSettings settings, final Application application, final MessageStoreFactory messageStoreFactory, final MessageFactory messageFactory) { this.application = application; this.messageStoreFactory = messageStoreFactory; this.logFactory = new SLF4JLogFactory(settings); this.messageFactory = messageFactory; this.context = context; } public Session create(SessionID sessionID, SessionSettings settings) throws ConfigError { try { String connectionType = null; final boolean rejectInvalidMessage = getSetting(settings, sessionID, SessionConstants.SETTING_REJECT_INVALID_MESSAGE, true); final boolean rejectMessageOnUnhandledException = getSetting(settings, sessionID, SessionConstants.SETTING_REJECT_MESSAGE_ON_UNHANDLED_EXCEPTION, false); final boolean requiresOrigSendingTime = getSetting(settings, sessionID, SessionConstants.SETTING_REQUIRES_ORIG_SENDING_TIME, true); if (settings.isSetting(SessionFactory.SETTING_CONNECTION_TYPE)) { connectionType = settings.getString(SessionFactory.SETTING_CONNECTION_TYPE); } if (connectionType == null) { throw new ConfigError("Missing ConnectionType"); } if (!connectionType.equals(SessionFactory.ACCEPTOR_CONNECTION_TYPE) && !connectionType.equals(SessionFactory.INITIATOR_CONNECTION_TYPE)) { throw new ConfigError("Invalid ConnectionType"); } if (connectionType.equals(SessionFactory.ACCEPTOR_CONNECTION_TYPE) && settings.isSetting(SessionSettings.SESSION_QUALIFIER)) { throw new ConfigError("SessionQualifier cannot be used with acceptor."); } if (connectionType.equals(SessionFactory.INITIATOR_CONNECTION_TYPE) && settings.isSetting(SessionConstants.SETTING_ALLOWED_REMOTE_ADDRESSES)) { throw new ConfigError("AllowedRemoteAddresses cannot be used with initiator"); } DefaultApplVerID senderDefaultApplVerID = null; if (sessionID.isFIXT()) { if (!settings.isSetting(SessionConstants.SETTING_DEFAULT_APPL_VER_ID)) { throw new ConfigError(SessionConstants.SETTING_DEFAULT_APPL_VER_ID + " is required for FIXT transport"); } senderDefaultApplVerID = new DefaultApplVerID(toApplVerID( settings.getString(SessionConstants.SETTING_DEFAULT_APPL_VER_ID)) .getValue()); } boolean useDataDictionary = true; if (settings.isSetting(SessionConstants.SETTING_USE_DATA_DICTIONARY)) { useDataDictionary = settings.getBool(SessionConstants.SETTING_USE_DATA_DICTIONARY); } DefaultDataDictionaryProvider dataDictionaryProvider = null; if (useDataDictionary) { dataDictionaryProvider = new DefaultDataDictionaryProvider(); if (sessionID.isFIXT()) { processFixtDataDictionaries(sessionID,settings, dataDictionaryProvider); } else { processPreFixtDataDictionary(sessionID,settings, dataDictionaryProvider); } } int heartbeatInterval = 0; if (connectionType.equals(SessionFactory.INITIATOR_CONNECTION_TYPE)) { heartbeatInterval = (int) settings.getLong(SessionConstants.SETTING_HEARTBTINT); if (heartbeatInterval <= 0) { throw new ConfigError("Heartbeat must be greater than zero"); } } final boolean checkLatency = getSetting(settings, sessionID, SessionConstants.SETTING_CHECK_LATENCY, true); final int maxLatency = getSetting(settings, sessionID, SessionConstants.SETTING_MAX_LATENCY, Session.DEFAULT_MAX_LATENCY); final double testRequestDelayMultiplier = getSetting(settings, sessionID, SessionConstants.SETTING_TEST_REQUEST_DELAY_MULTIPLIER, Session.DEFAULT_TEST_REQUEST_DELAY_MULTIPLIER); final boolean millisInTimestamp = getSetting(settings, sessionID, SessionConstants.SETTING_MILLISECONDS_IN_TIMESTAMP, true); final boolean resetOnLogout = getSetting(settings, sessionID, SessionConstants.SETTING_RESET_ON_LOGOUT, false); final boolean resetOnDisconnect = getSetting(settings, sessionID, SessionConstants.SETTING_RESET_ON_DISCONNECT, false); final boolean resetOnLogon = getSetting(settings, sessionID, SessionConstants.SETTING_RESET_ON_LOGON, false); final boolean refreshAtLogon = getSetting(settings, sessionID, SessionConstants.SETTING_REFRESH_ON_LOGON, false); final boolean checkCompID = getSetting(settings, sessionID, SessionConstants.SETTING_CHECK_COMP_ID, true); final boolean redundantResentRequestAllowed = getSetting(settings, sessionID, SessionConstants.SETTING_SEND_REDUNDANT_RESEND_REQUEST, false); final boolean persistMessages = getSetting(settings, sessionID, SessionConstants.SETTING_PERSIST_MESSAGES, true); final boolean useClosedIntervalForResend = getSetting(settings, sessionID, SessionConstants.SETTING_USE_CLOSED_RESEND_INTERVAL, false); final int logonTimeout = getSetting(settings, sessionID, SessionConstants.SETTING_LOGON_TIMEOUT, 10); final int logoutTimeout = getSetting(settings, sessionID, SessionConstants.SETTING_LOGOUT_TIMEOUT, 2); final boolean validateSequenceNumbers = getSetting(settings, sessionID, SessionConstants.SETTING_VALIDATE_SEQUENCE_NUMBERS, true); final boolean validateIncomingMessage = getSetting(settings, sessionID, SessionConstants.SETTING_VALIDATE_INCOMING_MESSAGE, true); final boolean resetOnError = getSetting(settings, sessionID, SessionConstants.SETTING_RESET_ON_ERROR, false); final boolean disconnectOnError = getSetting(settings, sessionID, SessionConstants.SETTING_DISCONNECT_ON_ERROR, false); final boolean disableHeartBeatCheck = getSetting(settings, sessionID, SessionConstants.SETTING_DISABLE_HEART_BEAT_CHECK, false); final boolean forceResendWhenCorruptedStore = getSetting(settings, sessionID, SessionConstants.SETTING_FORCE_RESEND_WHEN_CORRUPTED_STORE, false); final boolean enableNextExpectedMsgSeqNum = getSetting(settings, sessionID, SessionConstants.SETTING_ENABLE_NEXT_EXPECTED_MSG_SEQ_NUM, false); final boolean enableLastMsgSeqNumProcessed = getSetting(settings, sessionID, SessionConstants.SETTING_ENABLE_LAST_MSG_SEQ_NUM_PROCESSED, false); final int resendRequestChunkSize = getSetting(settings, sessionID, SessionConstants.SETTING_RESEND_REQUEST_CHUNK_SIZE, Session.DEFAULT_RESEND_RANGE_CHUNK_SIZE); final int[] logonIntervals = getLogonIntervalsInSeconds(settings, sessionID); final Set<InetAddress> allowedRemoteAddresses = getInetAddresses(settings, sessionID); final Session session = new Session(context,application, messageStoreFactory, sessionID, dataDictionaryProvider, new SessionSchedule(settings, sessionID), logFactory, messageFactory, heartbeatInterval, checkLatency, maxLatency, millisInTimestamp, resetOnLogon, resetOnLogout, resetOnDisconnect, refreshAtLogon, checkCompID, redundantResentRequestAllowed, persistMessages, useClosedIntervalForResend, testRequestDelayMultiplier, senderDefaultApplVerID, validateSequenceNumbers, logonIntervals, resetOnError, disconnectOnError, disableHeartBeatCheck, rejectInvalidMessage, rejectMessageOnUnhandledException, requiresOrigSendingTime, forceResendWhenCorruptedStore, allowedRemoteAddresses, validateIncomingMessage, resendRequestChunkSize, enableNextExpectedMsgSeqNum, enableLastMsgSeqNumProcessed); session.setLogonTimeout(logonTimeout); session.setLogoutTimeout(logoutTimeout); // // Session registration and creation callback is done here instead of in // session constructor to eliminate the possibility of other threads // accessing the session before it's fully constructed. // application.onCreate(session.getContext(),sessionID); return session; } catch (final FieldConvertError e) { throw new ConfigError(e.getMessage()); } } private void processPreFixtDataDictionary(SessionID sessionID, SessionSettings settings, DefaultDataDictionaryProvider dataDictionaryProvider) throws ConfigError, FieldConvertError { final DataDictionary dataDictionary = createDataDictionary(settings, SessionConstants.SETTING_DATA_DICTIONARY, sessionID.getBeginString()); dataDictionaryProvider.addTransportDictionary(sessionID.getBeginString(), dataDictionary); dataDictionaryProvider.addApplicationDictionary( MessageUtils.toApplVerID(sessionID.getBeginString()), dataDictionary); } private DataDictionary createDataDictionary(SessionSettings settings, String settingsKey, String beginString) throws ConfigError, FieldConvertError { final String path = getDictionaryPath(settings, settingsKey, beginString); final DataDictionary dataDictionary = getDataDictionary(path); if (settings.isSetting(SessionConstants.SETTING_VALIDATE_FIELDS_OUT_OF_ORDER)) { dataDictionary.setCheckFieldsOutOfOrder(settings.getBool( SessionConstants.SETTING_VALIDATE_FIELDS_OUT_OF_ORDER)); } if (settings.isSetting(SessionConstants.SETTING_VALIDATE_FIELDS_HAVE_VALUES)) { dataDictionary.setCheckFieldsHaveValues(settings.getBool( SessionConstants.SETTING_VALIDATE_FIELDS_HAVE_VALUES)); } if (settings.isSetting(SessionConstants.SETTING_VALIDATE_UNORDERED_GROUP_FIELDS)) { dataDictionary.setCheckUnorderedGroupFields(settings.getBool( SessionConstants.SETTING_VALIDATE_UNORDERED_GROUP_FIELDS)); } if (settings.isSetting(SessionConstants.SETTING_VALIDATE_UNORDERED_GROUP_FIELDS)) { dataDictionary.setCheckUnorderedGroupFields(settings.getBool( SessionConstants.SETTING_VALIDATE_UNORDERED_GROUP_FIELDS)); } if (settings.isSetting(SessionConstants.SETTING_VALIDATE_USER_DEFINED_FIELDS)) { dataDictionary.setCheckUserDefinedFields(settings.getBool( SessionConstants.SETTING_VALIDATE_USER_DEFINED_FIELDS)); } if (settings.isSetting(SessionConstants.SETTING_ALLOW_UNKNOWN_MSG_FIELDS)) { dataDictionary.setAllowUnknownMessageFields(settings.getBool( SessionConstants.SETTING_ALLOW_UNKNOWN_MSG_FIELDS)); } return dataDictionary; } private void processFixtDataDictionaries(SessionID sessionID, SessionSettings settings, DefaultDataDictionaryProvider dataDictionaryProvider) throws ConfigError, FieldConvertError { dataDictionaryProvider.addTransportDictionary( sessionID.getBeginString(), createDataDictionary(settings, SessionConstants.SETTING_TRANSPORT_DATA_DICTIONARY, sessionID.getBeginString())); final Properties sessionProperties = settings.getProperties(); final Enumeration<?> keys = sessionProperties.propertyNames(); while (keys.hasMoreElements()) { final String key = (String) keys.nextElement(); if (key.startsWith(SessionConstants.SETTING_APP_DATA_DICTIONARY)) { if (key.equals(SessionConstants.SETTING_APP_DATA_DICTIONARY)) { final ApplVerID applVerID = toApplVerID(settings.getString( SessionConstants.SETTING_DEFAULT_APPL_VER_ID)); final DataDictionary dd = createDataDictionary(settings, SessionConstants.SETTING_APP_DATA_DICTIONARY, sessionID.getBeginString()); dataDictionaryProvider.addApplicationDictionary(applVerID, dd); } else { // Process qualified app data dictionary properties final int offset = key.indexOf('.'); if (offset == -1) { throw new ConfigError("Malformed " + SessionConstants.SETTING_APP_DATA_DICTIONARY + ": " + key); } final String beginStringQualifier = key.substring(offset + 1); final DataDictionary dd = createDataDictionary(settings, key, beginStringQualifier); dataDictionaryProvider.addApplicationDictionary( MessageUtils.toApplVerID(beginStringQualifier), dd); } } } } private ApplVerID toApplVerID(String value) { if (isApplVerIdEnum(value)) { return new ApplVerID(value); } else { // value should be a beginString return MessageUtils.toApplVerID(value); } } private boolean isApplVerIdEnum(String value) { return value.matches("[0-9]+"); } private String getDictionaryPath(SessionSettings settings, String settingsKey, String beginString) throws ConfigError, FieldConvertError { String path; if (settings.isSetting(settingsKey)) { path = settings.getString(settingsKey); } else { path = toDictionaryPath(beginString); } return path; } private String toDictionaryPath(String beginString) { return beginString.replaceAll("\\.", "") + ".xml"; } private DataDictionary getDataDictionary(String path) throws ConfigError { synchronized (dictionaryCache) { DataDictionary dataDictionary = dictionaryCache.get(path); if (dataDictionary == null) { dataDictionary = new DataDictionary(path); dictionaryCache.put(path, dataDictionary); } return dataDictionary; } } private int[] getLogonIntervalsInSeconds(SessionSettings settings, SessionID sessionID) throws ConfigError { if (settings.isSetting(SessionSettings.SETTING_RECONNECT_INTERVAL)) { try { final String raw = settings.getString(SessionSettings.SETTING_RECONNECT_INTERVAL); final int[] ret = SessionSettings.parseSettingReconnectInterval(raw); if (ret != null) return ret; } catch (final Throwable e) { throw new ConfigError(e); } } return new int[] { 5 }; // default value } private Set<InetAddress> getInetAddresses(SessionSettings settings, SessionID sessionID) throws ConfigError { if (settings.isSetting(SessionConstants.SETTING_ALLOWED_REMOTE_ADDRESSES)) { try { return SessionSettings.parseRemoteAddresses( settings.getString(SessionConstants.SETTING_ALLOWED_REMOTE_ADDRESSES) ); } catch (final Throwable e) { throw new ConfigError(e); } } return null; // default value } private boolean getSetting(SessionSettings settings, SessionID sessionID, String key, boolean defaultValue) throws ConfigError, FieldConvertError { return settings.isSetting(key) ? settings.getBool(key) : defaultValue; } private int getSetting(SessionSettings settings, SessionID sessionID, String key, int defaultValue) throws ConfigError, FieldConvertError { return settings.isSetting(key) ? (int) settings.getLong(key) : defaultValue; } private double getSetting(SessionSettings settings, SessionID sessionID, String key, double defaultValue) throws ConfigError, FieldConvertError { return settings.isSetting(key) ? Double.parseDouble(settings.getString(key)) : defaultValue; } }