forked from quickfix/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathat_application.h
More file actions
218 lines (188 loc) · 6.14 KB
/
Copy pathat_application.h
File metadata and controls
218 lines (188 loc) · 6.14 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
/* -*- C++ -*- */
/****************************************************************************
** Copyright (c) 2001-2014
**
** 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.
**
****************************************************************************/
#include "Application.h"
#include "MessageCracker.h"
#include "Session.h"
#include "fix40/NewOrderSingle.h"
#include "fix41/NewOrderSingle.h"
#include "fix42/NewOrderSingle.h"
#include "fix43/NewOrderSingle.h"
#include "fix44/NewOrderSingle.h"
#include "fix50/NewOrderSingle.h"
#include "fix50sp1/NewOrderSingle.h"
#include "fix50sp2/NewOrderSingle.h"
#include "fix42/SecurityDefinition.h"
#include "fix43/SecurityDefinition.h"
#include "fix44/SecurityDefinition.h"
#include "fix50/SecurityDefinition.h"
#include "fix50sp1/SecurityDefinition.h"
#include "fix50sp2/SecurityDefinition.h"
#include <map>
class MessageCracker : public FIX::MessageCracker
{
public:
void process( const FIX::Message& message, const FIX::SessionID& sessionID )
{
FIX::Message echo = message;
FIX::PossResend possResend( false );
message.getHeader().getFieldIfSet( possResend );
FIX::ClOrdID clOrdID;
message.getField( clOrdID );
std::pair < FIX::ClOrdID, FIX::SessionID > pair =
std::make_pair( clOrdID, sessionID );
if ( possResend == true )
{
if ( m_orderIDs.find( pair ) != m_orderIDs.end() )
return ;
}
m_orderIDs.insert( pair );
FIX::Session::sendToTarget( echo, sessionID );
}
void onMessage( const FIX50SP2::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
void onMessage( const FIX50SP2::SecurityDefinition& message,
const FIX::SessionID& sessionID )
{
FIX50SP2::SecurityDefinition echo = message;
FIX::Session::sendToTarget( echo, sessionID );
}
void onMessage( const FIX50SP1::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
void onMessage( const FIX50SP1::SecurityDefinition& message,
const FIX::SessionID& sessionID )
{
FIX50SP1::SecurityDefinition echo = message;
FIX::Session::sendToTarget( echo, sessionID );
}
void onMessage( const FIX50::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
void onMessage( const FIX50::SecurityDefinition& message,
const FIX::SessionID& sessionID )
{
FIX50::SecurityDefinition echo = message;
FIX::Session::sendToTarget( echo, sessionID );
}
void onMessage( const FIX44::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
void onMessage( const FIX44::SecurityDefinition& message,
const FIX::SessionID& sessionID )
{
FIX44::SecurityDefinition echo = message;
FIX::Session::sendToTarget( echo, sessionID );
}
void onMessage( const FIX43::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
void onMessage( const FIX43::SecurityDefinition& message,
const FIX::SessionID& sessionID )
{
FIX43::SecurityDefinition echo = message;
FIX::Session::sendToTarget( echo, sessionID );
}
void onMessage( const FIX42::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
void onMessage( const FIX42::SecurityDefinition& message,
const FIX::SessionID& sessionID )
{
FIX42::SecurityDefinition echo = message;
FIX::Session::sendToTarget( echo, sessionID );
}
void onMessage( const FIX41::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
void onMessage( const FIX40::NewOrderSingle& message,
const FIX::SessionID& sessionID )
{
process( message, sessionID );
}
std::set < std::pair < FIX::ClOrdID, FIX::SessionID > > m_orderIDs;
public:
void reset() { m_orderIDs.clear(); }
};
class Application : public FIX::Application
{
void onCreate( const FIX::SessionID& sessionID )
{
FIX::Session * pSession = FIX::Session::lookupSession( sessionID );
if ( pSession ) pSession->reset();
}
void onLogon( const FIX::SessionID& sessionID )
EXCEPT( FIX::RejectLogon )
{}
void onLogout( const FIX::SessionID& sessionID )
{
m_cracker.reset();
}
void toAdmin( FIX::Message& message, const FIX::SessionID& )
{}
void toApp( FIX::Message& message, const FIX::SessionID& )
EXCEPT( FIX::DoNotSend )
{}
void fromAdmin( const FIX::Message& message, const FIX::SessionID& sessionID )
EXCEPT( FIX::FieldNotFound, FIX::IncorrectDataFormat, FIX::IncorrectTagValue, FIX::RejectLogon )
{
FIX::MsgType msgType;
message.getHeader().getField( msgType );
if(msgType == FIX::MsgType_Logon)
{
FIX::DefaultApplVerID defaultApplVerID;
if(message.isSetField(defaultApplVerID))
{
message.getField(defaultApplVerID);
FIX::Session::lookupSession(sessionID)->setSenderDefaultApplVerID(defaultApplVerID);
}
}
}
void fromApp( const FIX::Message& message, const FIX::SessionID& sessionID )
EXCEPT( FIX::FieldNotFound, FIX::IncorrectDataFormat, FIX::IncorrectTagValue, FIX::UnsupportedMessageType )
{
FIX::MsgType msgType;
message.getHeader().getField( msgType );
if(msgType == FIX::MsgType_Email)
{
FIX::Message echo = message;
FIX::Session::sendToTarget( echo, sessionID );
}
else
{
m_cracker.crack( message, sessionID );
}
}
MessageCracker m_cracker;
};