quickfix_ruby_ud 2.0.7-x86_64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/quickfix/Acceptor.cpp +257 -0
- data/ext/quickfix/Acceptor.h +127 -0
- data/ext/quickfix/Allocator.h +9 -0
- data/ext/quickfix/Application.h +137 -0
- data/ext/quickfix/DOMDocument.h +70 -0
- data/ext/quickfix/DataDictionary.cpp +679 -0
- data/ext/quickfix/DataDictionary.h +607 -0
- data/ext/quickfix/DataDictionaryProvider.cpp +66 -0
- data/ext/quickfix/DataDictionaryProvider.h +67 -0
- data/ext/quickfix/DatabaseConnectionID.h +98 -0
- data/ext/quickfix/DatabaseConnectionPool.h +84 -0
- data/ext/quickfix/Dictionary.cpp +157 -0
- data/ext/quickfix/Dictionary.h +89 -0
- data/ext/quickfix/Event.h +89 -0
- data/ext/quickfix/Except.h +39 -0
- data/ext/quickfix/Exceptions.h +257 -0
- data/ext/quickfix/Field.h +654 -0
- data/ext/quickfix/FieldConvertors.cpp +86 -0
- data/ext/quickfix/FieldConvertors.h +800 -0
- data/ext/quickfix/FieldMap.cpp +254 -0
- data/ext/quickfix/FieldMap.h +327 -0
- data/ext/quickfix/FieldNumbers.h +44 -0
- data/ext/quickfix/FieldTypes.cpp +62 -0
- data/ext/quickfix/FieldTypes.h +817 -0
- data/ext/quickfix/Fields.h +30 -0
- data/ext/quickfix/FileLog.cpp +176 -0
- data/ext/quickfix/FileLog.h +110 -0
- data/ext/quickfix/FileStore.cpp +369 -0
- data/ext/quickfix/FileStore.h +131 -0
- data/ext/quickfix/FixCommonFields.h +13 -0
- data/ext/quickfix/FixFieldNumbers.h +6132 -0
- data/ext/quickfix/FixFields.h +6133 -0
- data/ext/quickfix/FixValues.h +5790 -0
- data/ext/quickfix/Group.cpp +44 -0
- data/ext/quickfix/Group.h +78 -0
- data/ext/quickfix/HostDetailsProvider.cpp +79 -0
- data/ext/quickfix/HostDetailsProvider.h +44 -0
- data/ext/quickfix/HtmlBuilder.h +178 -0
- data/ext/quickfix/HttpConnection.cpp +914 -0
- data/ext/quickfix/HttpConnection.h +74 -0
- data/ext/quickfix/HttpMessage.cpp +229 -0
- data/ext/quickfix/HttpMessage.h +112 -0
- data/ext/quickfix/HttpParser.cpp +49 -0
- data/ext/quickfix/HttpParser.h +49 -0
- data/ext/quickfix/HttpServer.cpp +152 -0
- data/ext/quickfix/HttpServer.h +76 -0
- data/ext/quickfix/Initiator.cpp +310 -0
- data/ext/quickfix/Initiator.h +151 -0
- data/ext/quickfix/Log.cpp +71 -0
- data/ext/quickfix/Log.h +254 -0
- data/ext/quickfix/Message.cpp +617 -0
- data/ext/quickfix/Message.h +419 -0
- data/ext/quickfix/MessageCracker.h +171 -0
- data/ext/quickfix/MessageSorters.cpp +101 -0
- data/ext/quickfix/MessageSorters.h +185 -0
- data/ext/quickfix/MessageStore.cpp +182 -0
- data/ext/quickfix/MessageStore.h +164 -0
- data/ext/quickfix/Mutex.h +120 -0
- data/ext/quickfix/MySQLConnection.h +187 -0
- data/ext/quickfix/MySQLLog.cpp +262 -0
- data/ext/quickfix/MySQLLog.h +158 -0
- data/ext/quickfix/MySQLStore.cpp +323 -0
- data/ext/quickfix/MySQLStore.h +161 -0
- data/ext/quickfix/MySQLStubs.h +203 -0
- data/ext/quickfix/NullStore.cpp +40 -0
- data/ext/quickfix/NullStore.h +89 -0
- data/ext/quickfix/OdbcConnection.h +241 -0
- data/ext/quickfix/OdbcLog.cpp +230 -0
- data/ext/quickfix/OdbcLog.h +109 -0
- data/ext/quickfix/OdbcStore.cpp +313 -0
- data/ext/quickfix/OdbcStore.h +124 -0
- data/ext/quickfix/PUGIXML_DOMDocument.cpp +112 -0
- data/ext/quickfix/PUGIXML_DOMDocument.h +81 -0
- data/ext/quickfix/Parser.cpp +111 -0
- data/ext/quickfix/Parser.h +50 -0
- data/ext/quickfix/PostgreSQLConnection.h +163 -0
- data/ext/quickfix/PostgreSQLLog.cpp +263 -0
- data/ext/quickfix/PostgreSQLLog.h +157 -0
- data/ext/quickfix/PostgreSQLStore.cpp +327 -0
- data/ext/quickfix/PostgreSQLStore.h +160 -0
- data/ext/quickfix/PostgreSQLStubs.h +203 -0
- data/ext/quickfix/Queue.h +66 -0
- data/ext/quickfix/QuickfixRuby.cpp +131900 -0
- data/ext/quickfix/QuickfixRuby.h +56 -0
- data/ext/quickfix/Responder.h +41 -0
- data/ext/quickfix/SSLSocketAcceptor.cpp +409 -0
- data/ext/quickfix/SSLSocketAcceptor.h +186 -0
- data/ext/quickfix/SSLSocketConnection.cpp +434 -0
- data/ext/quickfix/SSLSocketConnection.h +221 -0
- data/ext/quickfix/SSLSocketInitiator.cpp +558 -0
- data/ext/quickfix/SSLSocketInitiator.h +203 -0
- data/ext/quickfix/SSLStubs.h +129 -0
- data/ext/quickfix/Session.cpp +1437 -0
- data/ext/quickfix/Session.h +343 -0
- data/ext/quickfix/SessionFactory.cpp +314 -0
- data/ext/quickfix/SessionFactory.h +84 -0
- data/ext/quickfix/SessionID.h +136 -0
- data/ext/quickfix/SessionSettings.cpp +165 -0
- data/ext/quickfix/SessionSettings.h +283 -0
- data/ext/quickfix/SessionState.h +260 -0
- data/ext/quickfix/Settings.cpp +160 -0
- data/ext/quickfix/Settings.h +56 -0
- data/ext/quickfix/SharedArray.h +274 -0
- data/ext/quickfix/SocketAcceptor.cpp +216 -0
- data/ext/quickfix/SocketAcceptor.h +77 -0
- data/ext/quickfix/SocketConnection.cpp +256 -0
- data/ext/quickfix/SocketConnection.h +102 -0
- data/ext/quickfix/SocketConnector.cpp +112 -0
- data/ext/quickfix/SocketConnector.h +76 -0
- data/ext/quickfix/SocketInitiator.cpp +241 -0
- data/ext/quickfix/SocketInitiator.h +76 -0
- data/ext/quickfix/SocketMonitor.h +26 -0
- data/ext/quickfix/SocketMonitor_UNIX.cpp +238 -0
- data/ext/quickfix/SocketMonitor_UNIX.h +101 -0
- data/ext/quickfix/SocketMonitor_WIN32.cpp +248 -0
- data/ext/quickfix/SocketMonitor_WIN32.h +99 -0
- data/ext/quickfix/SocketServer.cpp +163 -0
- data/ext/quickfix/SocketServer.h +100 -0
- data/ext/quickfix/ThreadedSSLSocketAcceptor.cpp +436 -0
- data/ext/quickfix/ThreadedSSLSocketAcceptor.h +209 -0
- data/ext/quickfix/ThreadedSSLSocketConnection.cpp +364 -0
- data/ext/quickfix/ThreadedSSLSocketConnection.h +191 -0
- data/ext/quickfix/ThreadedSSLSocketInitiator.cpp +434 -0
- data/ext/quickfix/ThreadedSSLSocketInitiator.h +193 -0
- data/ext/quickfix/ThreadedSocketAcceptor.cpp +242 -0
- data/ext/quickfix/ThreadedSocketAcceptor.h +95 -0
- data/ext/quickfix/ThreadedSocketConnection.cpp +227 -0
- data/ext/quickfix/ThreadedSocketConnection.h +89 -0
- data/ext/quickfix/ThreadedSocketInitiator.cpp +238 -0
- data/ext/quickfix/ThreadedSocketInitiator.h +78 -0
- data/ext/quickfix/TimeRange.cpp +227 -0
- data/ext/quickfix/TimeRange.h +215 -0
- data/ext/quickfix/Utility.cpp +639 -0
- data/ext/quickfix/Utility.h +255 -0
- data/ext/quickfix/UtilitySSL.cpp +1612 -0
- data/ext/quickfix/UtilitySSL.h +274 -0
- data/ext/quickfix/Values.h +63 -0
- data/ext/quickfix/config-all.h +10 -0
- data/ext/quickfix/config.h +10 -0
- data/ext/quickfix/config_unix.h +178 -0
- data/ext/quickfix/config_windows.h +0 -0
- data/ext/quickfix/dirent_windows.h +838 -0
- data/ext/quickfix/double-conversion/bignum-dtoa.cc +641 -0
- data/ext/quickfix/double-conversion/bignum-dtoa.h +84 -0
- data/ext/quickfix/double-conversion/bignum.cc +766 -0
- data/ext/quickfix/double-conversion/bignum.h +144 -0
- data/ext/quickfix/double-conversion/cached-powers.cc +176 -0
- data/ext/quickfix/double-conversion/cached-powers.h +64 -0
- data/ext/quickfix/double-conversion/diy-fp.cc +57 -0
- data/ext/quickfix/double-conversion/diy-fp.h +118 -0
- data/ext/quickfix/double-conversion/double-conversion.cc +994 -0
- data/ext/quickfix/double-conversion/double-conversion.h +543 -0
- data/ext/quickfix/double-conversion/fast-dtoa.cc +665 -0
- data/ext/quickfix/double-conversion/fast-dtoa.h +88 -0
- data/ext/quickfix/double-conversion/fixed-dtoa.cc +404 -0
- data/ext/quickfix/double-conversion/fixed-dtoa.h +56 -0
- data/ext/quickfix/double-conversion/ieee.h +402 -0
- data/ext/quickfix/double-conversion/strtod.cc +557 -0
- data/ext/quickfix/double-conversion/strtod.h +45 -0
- data/ext/quickfix/double-conversion/utils.h +374 -0
- data/ext/quickfix/extconf.rb +76 -0
- data/ext/quickfix/index.h +37 -0
- data/ext/quickfix/pugiconfig.hpp +77 -0
- data/ext/quickfix/pugixml.cpp +13237 -0
- data/ext/quickfix/pugixml.hpp +1516 -0
- data/ext/quickfix/scope_guard.hpp +215 -0
- data/ext/quickfix/stdint_msvc.h +254 -0
- data/ext/quickfix/strptime.h +7 -0
- data/lib/2.4/quickfix.so +0 -0
- data/lib/2.5/quickfix.so +0 -0
- data/lib/2.6/quickfix.so +0 -0
- data/lib/2.7/quickfix.so +0 -0
- data/lib/3.0/quickfix.so +0 -0
- data/lib/3.1/quickfix.so +0 -0
- data/lib/3.2/quickfix.so +0 -0
- data/lib/3.3/quickfix.so +0 -0
- data/lib/3.4/quickfix.so +0 -0
- data/lib/quickfix40.rb +274 -0
- data/lib/quickfix41.rb +351 -0
- data/lib/quickfix42.rb +1184 -0
- data/lib/quickfix43.rb +3504 -0
- data/lib/quickfix44.rb +14040 -0
- data/lib/quickfix50.rb +20051 -0
- data/lib/quickfix50sp1.rb +23596 -0
- data/lib/quickfix50sp2.rb +412444 -0
- data/lib/quickfix_fields.rb +79393 -0
- data/lib/quickfix_ruby.rb +82 -0
- data/lib/quickfixt11.rb +65 -0
- data/spec/FIX40.xml +862 -0
- data/spec/FIX41.xml +1282 -0
- data/spec/FIX42.xml +2743 -0
- data/spec/FIX43.xml +4230 -0
- data/spec/FIX44.xml +6600 -0
- data/spec/FIX50.xml +8142 -0
- data/spec/FIX50SP1.xml +9506 -0
- data/spec/FIX50SP2.xml +26069 -0
- data/spec/FIXT11.xml +252 -0
- data/test/DataDictionaryTestCase.rb +268 -0
- data/test/DictionaryTestCase.rb +112 -0
- data/test/FieldBaseTestCase.rb +24 -0
- data/test/MessageStoreTestCase.rb +19 -0
- data/test/MessageTestCase.rb +368 -0
- data/test/SessionSettingsTestCase.rb +41 -0
- metadata +247 -0
@@ -0,0 +1,368 @@
|
|
1
|
+
require 'quickfix_ruby'
|
2
|
+
require 'test/unit'
|
3
|
+
|
4
|
+
class MessageTestCase < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@object = Quickfix::Message.new()
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_isAdmin
|
11
|
+
assert( !@object.isAdmin() )
|
12
|
+
@object.getHeader().setField( Quickfix::MsgType.new("A") )
|
13
|
+
assert( @object.isAdmin() )
|
14
|
+
@object.getHeader().setField( Quickfix::MsgType.new("D") )
|
15
|
+
assert( !@object.isAdmin() )
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_isApp
|
19
|
+
assert( !@object.isApp() )
|
20
|
+
@object.getHeader().setField( Quickfix::MsgType.new("A") )
|
21
|
+
assert( !@object.isApp() )
|
22
|
+
@object.getHeader().setField( Quickfix::MsgType.new("D") )
|
23
|
+
assert( @object.isApp() )
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_isEmpty
|
27
|
+
message = Quickfix::Message.new
|
28
|
+
assert( message.isEmpty() )
|
29
|
+
message.getHeader().setField( Quickfix::BeginString.new("FIX.4.2") )
|
30
|
+
assert( !message.isEmpty() )
|
31
|
+
message.clear()
|
32
|
+
assert( message.isEmpty() )
|
33
|
+
message.setField( Quickfix::Symbol.new("MSFT") )
|
34
|
+
assert( !message.isEmpty() )
|
35
|
+
message.clear()
|
36
|
+
assert( message.isEmpty() )
|
37
|
+
message.getTrailer().setField( Quickfix::CheckSum.new(10) )
|
38
|
+
assert( !message.isEmpty() )
|
39
|
+
message.clear()
|
40
|
+
assert( message.isEmpty() )
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_setString
|
44
|
+
strGood = "8=FIX.4.2\0019=45\00135=0\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\00110=218\001"
|
45
|
+
strNull = "8=FIX.4.2\0019=46\00135=0\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\000\00110=219\001"
|
46
|
+
strTrailingCharacter = "8=FIX.4.2\0019=45\00135=0\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\00110=218\001 "
|
47
|
+
strNoChk = "8=FIX.4.2\0019=45\00135=0\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\001"
|
48
|
+
strBadChk = "8=FIX.4.2\0019=45\00135=0\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\00110=000\001"
|
49
|
+
strBad = "8=FIX.4.2\0019=45\00135=0\00134=3\00149garbled=TW\00152=20000426-12:05:06\00156=ISLD\00110=000\001"
|
50
|
+
strBadHeaderOrder = "8=FIX.4.2\00135=0\0019=45\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\00110=218\001"
|
51
|
+
strBodyFields = "8=FIX.4.2\0019=60\00135=D\00111=ORDERID\00121=3\00140=2\00154=1\00155=MSFT\00160=19000101-00:00:00\00110=226\001"
|
52
|
+
strNoLengthAndChk = "8=FIX.4.2\00135=0\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\001";
|
53
|
+
strJunk = "paste your FIX message here, then hit ENTER"
|
54
|
+
strEmpty = ""
|
55
|
+
|
56
|
+
begin
|
57
|
+
@object.setString( strGood )
|
58
|
+
@object.setString( strNull )
|
59
|
+
@object.setString( strNoLengthAndChk, false )
|
60
|
+
rescue Quickfix::InvalidMessage
|
61
|
+
assert( false )
|
62
|
+
end
|
63
|
+
|
64
|
+
begin
|
65
|
+
@object.setString( strTrailingCharacter )
|
66
|
+
assert(false)
|
67
|
+
rescue Quickfix::InvalidMessage
|
68
|
+
end
|
69
|
+
|
70
|
+
begin
|
71
|
+
@object.setString( strNoChk )
|
72
|
+
assert(false)
|
73
|
+
rescue Quickfix::InvalidMessage
|
74
|
+
end
|
75
|
+
|
76
|
+
begin
|
77
|
+
@object.setString( strBadChk )
|
78
|
+
assert(false)
|
79
|
+
rescue Quickfix::InvalidMessage
|
80
|
+
end
|
81
|
+
|
82
|
+
begin
|
83
|
+
@object.setString( strBad )
|
84
|
+
assert(false)
|
85
|
+
rescue Quickfix::InvalidMessage
|
86
|
+
end
|
87
|
+
|
88
|
+
begin
|
89
|
+
@object.setString( strBadHeaderOrder )
|
90
|
+
assert(false)
|
91
|
+
rescue Quickfix::InvalidMessage
|
92
|
+
end
|
93
|
+
|
94
|
+
begin
|
95
|
+
@object.setString( strNoLengthAndChk )
|
96
|
+
assert(false)
|
97
|
+
rescue Quickfix::InvalidMessage
|
98
|
+
end
|
99
|
+
|
100
|
+
begin
|
101
|
+
@object.setString( strJunk )
|
102
|
+
assert(false)
|
103
|
+
rescue Quickfix::InvalidMessage
|
104
|
+
end
|
105
|
+
|
106
|
+
begin
|
107
|
+
@object.setString( strEmpty )
|
108
|
+
assert(false)
|
109
|
+
rescue Quickfix::InvalidMessage
|
110
|
+
end
|
111
|
+
|
112
|
+
dataDictionary = Quickfix::DataDictionary.new
|
113
|
+
dataDictionary.addHeaderField( 11, false )
|
114
|
+
dataDictionary.addTrailerField( 60, false )
|
115
|
+
|
116
|
+
clOrdID = Quickfix::ClOrdID.new
|
117
|
+
transactTime = Quickfix::TransactTime.new
|
118
|
+
symbol = Quickfix::Symbol.new
|
119
|
+
|
120
|
+
begin
|
121
|
+
@object.setString( strBodyFields, true, dataDictionary )
|
122
|
+
rescue Quickfix::InvalidMessage
|
123
|
+
assert( false )
|
124
|
+
end
|
125
|
+
|
126
|
+
assert( @object.getHeader().isSetField( clOrdID ) );
|
127
|
+
assert( @object.getTrailer().isSetField( transactTime ) );
|
128
|
+
assert( @object.isSetField( symbol ) );
|
129
|
+
end
|
130
|
+
|
131
|
+
def test_setStringWithGroup
|
132
|
+
dataDictionary = Quickfix::DataDictionary.new( "spec/FIX43.xml" )
|
133
|
+
str = "8=FIX.4.3\0019=199\00135=E\00134=126\00149=BUYSIDE\00150=00303\00152=20040916-16:19:18.328\00156=SELLSIDE\00166=1095350459\00168=2\00173=2\00111=1095350459\00167=1\0011=00303\00155=fred\00154=1\00140=1\00159=3\00111=1095350460\00167=2\0011=00303\00155=fred\00154=1\00140=1\00159=3\001394=3\00110=138\001"
|
134
|
+
|
135
|
+
begin
|
136
|
+
@object.setString( str, true, dataDictionary )
|
137
|
+
assert_equal( str, @object.toString() )
|
138
|
+
rescue Quickfix::InvalidMessage
|
139
|
+
assert( false )
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
def test_setStringWithHeaderGroup
|
144
|
+
dataDictionary = Quickfix::DataDictionary.new( "spec/FIX43.xml" )
|
145
|
+
str = "8=FIX.4.3\0019=152\00135=A\00134=125\00149=BUYSIDE\00152=20040916-16:19:18.328\00156=SELLSIDE\001627=2\001628=HOP1\001629=20040916-16:19:18.328\001630=ID1\001628=HOP2\001629=20040916-16:19:18.328\001630=ID2\00110=079\001"
|
146
|
+
|
147
|
+
begin
|
148
|
+
@object.setString( str, true, dataDictionary )
|
149
|
+
assert_equal( str, @object.toString() )
|
150
|
+
rescue Quickfix::InvalidMessage
|
151
|
+
assert( false )
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
def test_noEndingDelim
|
156
|
+
str = "8=FIX.4.2\0019=45\00135=0\00134=3\00149=TW\00152=20000426-12:05:06\00156=ISLD\00110=218"
|
157
|
+
|
158
|
+
begin
|
159
|
+
@object.setString( str )
|
160
|
+
assert(false)
|
161
|
+
rescue Quickfix::InvalidMessage
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
def test_outOfOrder
|
166
|
+
str = "54=1\00120=0\00131=109.03125\00160=00000000-00:00:00\0018=FIX.4.2\0016=109.03125\0011=acct1\001151=0\001150=2\00117=2\00139=2\00138=3000\00149=MEK\00115=USD\00137=1\00148=123ABC789\00114=3000\00135=8\00156=KEM\00134=2\00155=ABCD\00111=ID1\00122=1\001"
|
167
|
+
expected = "8=FIX.4.2\0019=171\00135=8\00134=2\00149=MEK\00156=KEM\0011=acct1\0016=109.03125\00111=ID1\00114=3000\00115=USD\00117=2\00120=0\00122=1\00131=109.03125\00137=1\00138=3000\00139=2\00148=123ABC789\00154=1\00155=ABCD\00160=00000000-00:00:00\001150=2\001151=0\00110=225\001"
|
168
|
+
|
169
|
+
begin
|
170
|
+
@object.setString( str, false )
|
171
|
+
assert_equal( expected, @object.toString() )
|
172
|
+
rescue Quickfix::InvalidMessage
|
173
|
+
assert( false )
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
177
|
+
def test_getXML
|
178
|
+
Quickfix::Message::InitializeXML("spec/FIX42.xml")
|
179
|
+
message = Quickfix::Message.new
|
180
|
+
message.getHeader().setField(Quickfix::BeginString.new("FIX.4.2"))
|
181
|
+
message.getHeader().setField(Quickfix::SenderCompID.new("SENDER"))
|
182
|
+
message.getHeader().setField(Quickfix::TargetCompID.new("TARGET"))
|
183
|
+
message.getHeader().setField(Quickfix::MsgType.new(Quickfix::MsgType_Logon()))
|
184
|
+
message.setField(Quickfix::Account.new("ACCOUNT"))
|
185
|
+
message.setField(Quickfix::ClOrdID.new("CLORDID"))
|
186
|
+
message.setField(Quickfix::SecurityIDSource.new(Quickfix::SecurityIDSource_CUSIP()))
|
187
|
+
message.setField(Quickfix::NoMsgTypes.new(2))
|
188
|
+
group = Quickfix::Group.new(384, 372)
|
189
|
+
group.setField(Quickfix::RefMsgType.new("A"))
|
190
|
+
group.setField(Quickfix::MsgDirection.new('0'))
|
191
|
+
message.addGroup(group)
|
192
|
+
group.setField(Quickfix::RefMsgType.new("0"))
|
193
|
+
group.setField(Quickfix::MsgDirection.new('1'))
|
194
|
+
message.addGroup(group)
|
195
|
+
message.getTrailer().setField(Quickfix::CheckSum.new(132))
|
196
|
+
end
|
197
|
+
|
198
|
+
# skip test for now
|
199
|
+
def test_reverseRoute
|
200
|
+
return
|
201
|
+
header = Quickfix::FieldMap.new
|
202
|
+
beginString = Quickfix::BeginString.new( "FIX.4.2" )
|
203
|
+
senderCompID = Quickfix::SenderCompID.new( "SenderCompID" )
|
204
|
+
targetCompID = Quickfix::TargetCompID.new( "TargetCompID" )
|
205
|
+
onBehalfOfCompID = Quickfix::OnBehalfOfCompID.new( "OnBehalfOfCompID" )
|
206
|
+
onBehalfOfSubID = Quickfix::OnBehalfOfSubID.new( "OnBehalfOfSubID" )
|
207
|
+
onBehalfOfLocationID = Quickfix::OnBehalfOfLocationID.new( "OnBehalfOfLocationID" )
|
208
|
+
deliverToCompID = Quickfix::DeliverToCompID.new( "DeliverToCompID" )
|
209
|
+
deliverToSubID = Quickfix::DeliverToSubID.new( "DeliverToSubID" )
|
210
|
+
deliverToLocationID = Quickfix::DeliverToLocationID.new( "DeliverToLocationID" )
|
211
|
+
|
212
|
+
reversedMessage = Quickfix::Message.new
|
213
|
+
reversedHeader = reversedMessage.getHeader()
|
214
|
+
|
215
|
+
header.setField( beginString )
|
216
|
+
header.setField( senderCompID )
|
217
|
+
header.setField( targetCompID )
|
218
|
+
header.setField( onBehalfOfCompID )
|
219
|
+
header.setField( onBehalfOfSubID )
|
220
|
+
header.setField( onBehalfOfLocationID )
|
221
|
+
header.setField( deliverToCompID )
|
222
|
+
header.setField( deliverToSubID )
|
223
|
+
header.setField( deliverToLocationID )
|
224
|
+
|
225
|
+
reversedMessage.reverseRoute( header );
|
226
|
+
assert( reversedHeader.getField( beginString ).getString() == "FIX.4.2" )
|
227
|
+
assert( reversedHeader.getField( senderCompID ).getString() == "TargetCompID" )
|
228
|
+
assert( reversedHeader.getField( targetCompID ).getString() == "SenderCompID" )
|
229
|
+
assert( reversedHeader.getField( onBehalfOfCompID ).getString() == "DeliverToCompID" )
|
230
|
+
assert( reversedHeader.getField( onBehalfOfSubID ).getString() == "DeliverToSubID" )
|
231
|
+
assert( reversedHeader.getField( onBehalfOfLocationID ).getString() == "DeliverToLocationID" )
|
232
|
+
assert( reversedHeader.getField( deliverToCompID ).getString() == "OnBehalfOfCompID" )
|
233
|
+
assert( reversedHeader.getField( deliverToSubID ).getString() == "OnBehalfOfSubID" )
|
234
|
+
assert( reversedHeader.getField( deliverToLocationID ).getString() == "OnBehalfOfLocationID" )
|
235
|
+
|
236
|
+
header.setField( Quickfix::BeginString.new("FIX.4.0" ) )
|
237
|
+
reversedMessage.reverseRoute( header )
|
238
|
+
assert( !reversedHeader.isSetField( onBehalfOfLocationID ) )
|
239
|
+
assert( !reversedHeader.isSetField( deliverToLocationID ) )
|
240
|
+
|
241
|
+
header.setField( beginString )
|
242
|
+
reversedMessage.reverseRoute( header )
|
243
|
+
|
244
|
+
header.removeField( Quickfix::OnBehalfOfCompID.field )
|
245
|
+
reversedMessage.reverseRoute( header )
|
246
|
+
assert( !reversedHeader.isSetField(deliverToCompID) )
|
247
|
+
header.removeField( Quickfix::DeliverToCompID.field )
|
248
|
+
reversedMessage.reverseRoute( header )
|
249
|
+
assert( !reversedHeader.isSetField(onBehalfOfCompID) )
|
250
|
+
header.removeField( Quickfix::OnBehalfOfSubID.field )
|
251
|
+
reversedMessage.reverseRoute( header )
|
252
|
+
assert( !reversedHeader.isSetField(deliverToSubID) )
|
253
|
+
header.removeField( Quickfix::DeliverToSubID.field )
|
254
|
+
reversedMessage.reverseRoute( header )
|
255
|
+
assert( !reversedHeader.isSetField(onBehalfOfSubID) )
|
256
|
+
header.removeField( Quickfix::OnBehalfOfLocationID.field )
|
257
|
+
reversedMessage.reverseRoute( header )
|
258
|
+
assert( !reversedHeader.isSetField(deliverToLocationID) )
|
259
|
+
header.removeField( Quickfix::DeliverToLocationID.field )
|
260
|
+
reversedMessage.reverseRoute( header )
|
261
|
+
assert( !reversedHeader.isSetField(onBehalfOfLocationID) )
|
262
|
+
end
|
263
|
+
|
264
|
+
def test_addRemoveGroup
|
265
|
+
@object.setField( Quickfix::ListID.new( "1" ) )
|
266
|
+
@object.setField( Quickfix::BidType.new( 0 ) )
|
267
|
+
@object.setField( Quickfix::TotNoOrders.new( 3 ) )
|
268
|
+
|
269
|
+
group = Quickfix42::NewOrderList::NoOrders.new
|
270
|
+
group.setField( Quickfix::ClOrdID.new( "A" ) )
|
271
|
+
group.setField( Quickfix::ListSeqNo.new( 1 ) )
|
272
|
+
group.setField( Quickfix::Symbol.new( "DELL" ) )
|
273
|
+
group.setField( Quickfix::Side.new( '1' ) )
|
274
|
+
@object.addGroup( group )
|
275
|
+
|
276
|
+
group.setField( Quickfix::ClOrdID.new( "B" ) )
|
277
|
+
group.setField( Quickfix::ListSeqNo.new( 2 ) )
|
278
|
+
group.setField( Quickfix::Symbol.new( "LNUX" ) )
|
279
|
+
group.setField( Quickfix::Side.new( '2' ) )
|
280
|
+
@object.addGroup( group )
|
281
|
+
|
282
|
+
group.setField( Quickfix::ClOrdID.new( "C" ) )
|
283
|
+
group.setField( Quickfix::ListSeqNo.new( 3 ) )
|
284
|
+
group.setField( Quickfix::Symbol.new( "RHAT" ) )
|
285
|
+
group.setField( Quickfix::Side.new( '3' ) )
|
286
|
+
@object.addGroup( group )
|
287
|
+
|
288
|
+
noOrders = Quickfix::NoOrders.new
|
289
|
+
|
290
|
+
assert( @object.hasGroup(1, group) )
|
291
|
+
assert( @object.hasGroup(2, group) )
|
292
|
+
assert( @object.hasGroup(3, group) )
|
293
|
+
assert_equal( 3, @object.groupCount(Quickfix::NoOrders.field) )
|
294
|
+
@object.getField( noOrders )
|
295
|
+
assert_equal( 3, noOrders.getValue() )
|
296
|
+
|
297
|
+
@object.removeGroup( 2, group )
|
298
|
+
assert( @object.hasGroup(1, group) )
|
299
|
+
assert( @object.hasGroup(2, group) )
|
300
|
+
assert( !@object.hasGroup(3, group) )
|
301
|
+
assert_equal( 2, @object.groupCount(Quickfix::NoOrders.field) )
|
302
|
+
@object.getField( noOrders )
|
303
|
+
assert_equal( 2, noOrders.getValue() )
|
304
|
+
|
305
|
+
@object.removeGroup( 1, group )
|
306
|
+
assert( @object.hasGroup(1, group) )
|
307
|
+
assert( !@object.hasGroup(2, group) )
|
308
|
+
assert( !@object.hasGroup(3, group) )
|
309
|
+
assert_equal( 1, @object.groupCount(Quickfix::NoOrders.field) )
|
310
|
+
@object.getField( noOrders )
|
311
|
+
assert_equal( 1, noOrders.getValue() )
|
312
|
+
|
313
|
+
@object.removeGroup( group )
|
314
|
+
assert( !@object.hasGroup(1, group) )
|
315
|
+
assert( !@object.hasGroup(2, group) )
|
316
|
+
assert( !@object.hasGroup(3, group) )
|
317
|
+
assert_equal( 0, @object.groupCount(Quickfix::NoOrders.field) )
|
318
|
+
!@object.isSetField( noOrders )
|
319
|
+
end
|
320
|
+
|
321
|
+
def test_replaceGroup
|
322
|
+
@object.setField( Quickfix::ListID.new( "1" ) )
|
323
|
+
@object.setField( Quickfix::BidType.new( 0 ) )
|
324
|
+
@object.setField( Quickfix::TotNoOrders.new( 3 ) )
|
325
|
+
|
326
|
+
group = Quickfix42::NewOrderList::NoOrders.new
|
327
|
+
group.setField( Quickfix::ClOrdID.new( "A" ) )
|
328
|
+
group.setField( Quickfix::ListSeqNo.new( 1 ) )
|
329
|
+
group.setField( Quickfix::Symbol.new( "DELL" ) )
|
330
|
+
group.setField( Quickfix::Side.new( '1' ) )
|
331
|
+
@object.addGroup( group )
|
332
|
+
|
333
|
+
group.setField( Quickfix::ClOrdID.new( "B" ) )
|
334
|
+
group.setField( Quickfix::ListSeqNo.new( 2 ) )
|
335
|
+
group.setField( Quickfix::Symbol.new( "LNUX" ) )
|
336
|
+
group.setField( Quickfix::Side.new( '2' ) )
|
337
|
+
@object.addGroup( group );
|
338
|
+
|
339
|
+
group.setField( Quickfix::ClOrdID.new( "C" ) )
|
340
|
+
group.setField( Quickfix::ListSeqNo.new( 3 ) )
|
341
|
+
group.setField( Quickfix::Symbol.new( "RHAT" ) )
|
342
|
+
group.setField( Quickfix::Side.new( '3' ) )
|
343
|
+
@object.addGroup( group );
|
344
|
+
|
345
|
+
group.setField( Quickfix::ClOrdID.new( "D" ) )
|
346
|
+
group.setField( Quickfix::ListSeqNo.new( 4 ) )
|
347
|
+
group.setField( Quickfix::Symbol.new( "AAPL" ) )
|
348
|
+
group.setField( Quickfix::Side.new( '4' ) )
|
349
|
+
@object.replaceGroup( 2, group );
|
350
|
+
|
351
|
+
noOrders = Quickfix::NoOrders.new
|
352
|
+
|
353
|
+
assert( @object.hasGroup(1, group) )
|
354
|
+
assert( @object.hasGroup(2, group) )
|
355
|
+
assert( @object.hasGroup(3, group) )
|
356
|
+
assert_equal( 3, @object.groupCount(Quickfix::NoOrders.field) )
|
357
|
+
@object.getField( noOrders )
|
358
|
+
assert_equal( 3, noOrders.getValue() )
|
359
|
+
|
360
|
+
clOrdID = Quickfix::ClOrdID.new
|
361
|
+
@object.getGroup( 1, group )
|
362
|
+
assert_equal( "A", group.getField(clOrdID).getString() )
|
363
|
+
@object.getGroup( 2, group )
|
364
|
+
assert_equal( "D", group.getField(clOrdID).getString() )
|
365
|
+
@object.getGroup( 3, group )
|
366
|
+
assert_equal( "C", group.getField(clOrdID).getString() )
|
367
|
+
end
|
368
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'quickfix_ruby'
|
2
|
+
require 'test/unit'
|
3
|
+
|
4
|
+
class SessionSettingsTestCase < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@object = Quickfix::SessionSettings.new()
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_validate
|
11
|
+
sessionID = Quickfix::SessionID.new( "FIX.4.2", "SenderCompID", "TargetCompID" )
|
12
|
+
|
13
|
+
dictionary = Quickfix::Dictionary.new
|
14
|
+
begin
|
15
|
+
@object.set( sessionID, dictionary )
|
16
|
+
assert( false )
|
17
|
+
rescue Quickfix::ConfigError
|
18
|
+
end
|
19
|
+
|
20
|
+
dictionary.setString( Quickfix::CONNECTION_TYPE(), "badvalue" )
|
21
|
+
begin
|
22
|
+
@object.set( sessionID, dictionary );
|
23
|
+
assert( false );
|
24
|
+
rescue Quickfix::ConfigError
|
25
|
+
end
|
26
|
+
|
27
|
+
dictionary.setString( Quickfix::CONNECTION_TYPE(), "initiator" )
|
28
|
+
begin
|
29
|
+
@object.set( sessionID, dictionary );
|
30
|
+
rescue Quickfix::ConfigError
|
31
|
+
assert( false )
|
32
|
+
end
|
33
|
+
|
34
|
+
sessionID = Quickfix::SessionID.new( "FIX4.2", "SenderCompID", "TargetCompID" )
|
35
|
+
begin
|
36
|
+
@object.set( sessionID, dictionary )
|
37
|
+
assert( false )
|
38
|
+
rescue Quickfix::ConfigError
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
metadata
ADDED
@@ -0,0 +1,247 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: quickfix_ruby_ud
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.7
|
5
|
+
platform: x86_64-linux
|
6
|
+
authors:
|
7
|
+
- Oren Miller
|
8
|
+
- Tom Kerr
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-04-21 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: FIX (Financial Information eXchange) protocol implementation
|
14
|
+
email: tom.kerr@underdogfantasy.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- ext/quickfix/Acceptor.cpp
|
20
|
+
- ext/quickfix/Acceptor.h
|
21
|
+
- ext/quickfix/Allocator.h
|
22
|
+
- ext/quickfix/Application.h
|
23
|
+
- ext/quickfix/DOMDocument.h
|
24
|
+
- ext/quickfix/DataDictionary.cpp
|
25
|
+
- ext/quickfix/DataDictionary.h
|
26
|
+
- ext/quickfix/DataDictionaryProvider.cpp
|
27
|
+
- ext/quickfix/DataDictionaryProvider.h
|
28
|
+
- ext/quickfix/DatabaseConnectionID.h
|
29
|
+
- ext/quickfix/DatabaseConnectionPool.h
|
30
|
+
- ext/quickfix/Dictionary.cpp
|
31
|
+
- ext/quickfix/Dictionary.h
|
32
|
+
- ext/quickfix/Event.h
|
33
|
+
- ext/quickfix/Except.h
|
34
|
+
- ext/quickfix/Exceptions.h
|
35
|
+
- ext/quickfix/Field.h
|
36
|
+
- ext/quickfix/FieldConvertors.cpp
|
37
|
+
- ext/quickfix/FieldConvertors.h
|
38
|
+
- ext/quickfix/FieldMap.cpp
|
39
|
+
- ext/quickfix/FieldMap.h
|
40
|
+
- ext/quickfix/FieldNumbers.h
|
41
|
+
- ext/quickfix/FieldTypes.cpp
|
42
|
+
- ext/quickfix/FieldTypes.h
|
43
|
+
- ext/quickfix/Fields.h
|
44
|
+
- ext/quickfix/FileLog.cpp
|
45
|
+
- ext/quickfix/FileLog.h
|
46
|
+
- ext/quickfix/FileStore.cpp
|
47
|
+
- ext/quickfix/FileStore.h
|
48
|
+
- ext/quickfix/FixCommonFields.h
|
49
|
+
- ext/quickfix/FixFieldNumbers.h
|
50
|
+
- ext/quickfix/FixFields.h
|
51
|
+
- ext/quickfix/FixValues.h
|
52
|
+
- ext/quickfix/Group.cpp
|
53
|
+
- ext/quickfix/Group.h
|
54
|
+
- ext/quickfix/HostDetailsProvider.cpp
|
55
|
+
- ext/quickfix/HostDetailsProvider.h
|
56
|
+
- ext/quickfix/HtmlBuilder.h
|
57
|
+
- ext/quickfix/HttpConnection.cpp
|
58
|
+
- ext/quickfix/HttpConnection.h
|
59
|
+
- ext/quickfix/HttpMessage.cpp
|
60
|
+
- ext/quickfix/HttpMessage.h
|
61
|
+
- ext/quickfix/HttpParser.cpp
|
62
|
+
- ext/quickfix/HttpParser.h
|
63
|
+
- ext/quickfix/HttpServer.cpp
|
64
|
+
- ext/quickfix/HttpServer.h
|
65
|
+
- ext/quickfix/Initiator.cpp
|
66
|
+
- ext/quickfix/Initiator.h
|
67
|
+
- ext/quickfix/Log.cpp
|
68
|
+
- ext/quickfix/Log.h
|
69
|
+
- ext/quickfix/Message.cpp
|
70
|
+
- ext/quickfix/Message.h
|
71
|
+
- ext/quickfix/MessageCracker.h
|
72
|
+
- ext/quickfix/MessageSorters.cpp
|
73
|
+
- ext/quickfix/MessageSorters.h
|
74
|
+
- ext/quickfix/MessageStore.cpp
|
75
|
+
- ext/quickfix/MessageStore.h
|
76
|
+
- ext/quickfix/Mutex.h
|
77
|
+
- ext/quickfix/MySQLConnection.h
|
78
|
+
- ext/quickfix/MySQLLog.cpp
|
79
|
+
- ext/quickfix/MySQLLog.h
|
80
|
+
- ext/quickfix/MySQLStore.cpp
|
81
|
+
- ext/quickfix/MySQLStore.h
|
82
|
+
- ext/quickfix/MySQLStubs.h
|
83
|
+
- ext/quickfix/NullStore.cpp
|
84
|
+
- ext/quickfix/NullStore.h
|
85
|
+
- ext/quickfix/OdbcConnection.h
|
86
|
+
- ext/quickfix/OdbcLog.cpp
|
87
|
+
- ext/quickfix/OdbcLog.h
|
88
|
+
- ext/quickfix/OdbcStore.cpp
|
89
|
+
- ext/quickfix/OdbcStore.h
|
90
|
+
- ext/quickfix/PUGIXML_DOMDocument.cpp
|
91
|
+
- ext/quickfix/PUGIXML_DOMDocument.h
|
92
|
+
- ext/quickfix/Parser.cpp
|
93
|
+
- ext/quickfix/Parser.h
|
94
|
+
- ext/quickfix/PostgreSQLConnection.h
|
95
|
+
- ext/quickfix/PostgreSQLLog.cpp
|
96
|
+
- ext/quickfix/PostgreSQLLog.h
|
97
|
+
- ext/quickfix/PostgreSQLStore.cpp
|
98
|
+
- ext/quickfix/PostgreSQLStore.h
|
99
|
+
- ext/quickfix/PostgreSQLStubs.h
|
100
|
+
- ext/quickfix/Queue.h
|
101
|
+
- ext/quickfix/QuickfixRuby.cpp
|
102
|
+
- ext/quickfix/QuickfixRuby.h
|
103
|
+
- ext/quickfix/Responder.h
|
104
|
+
- ext/quickfix/SSLSocketAcceptor.cpp
|
105
|
+
- ext/quickfix/SSLSocketAcceptor.h
|
106
|
+
- ext/quickfix/SSLSocketConnection.cpp
|
107
|
+
- ext/quickfix/SSLSocketConnection.h
|
108
|
+
- ext/quickfix/SSLSocketInitiator.cpp
|
109
|
+
- ext/quickfix/SSLSocketInitiator.h
|
110
|
+
- ext/quickfix/SSLStubs.h
|
111
|
+
- ext/quickfix/Session.cpp
|
112
|
+
- ext/quickfix/Session.h
|
113
|
+
- ext/quickfix/SessionFactory.cpp
|
114
|
+
- ext/quickfix/SessionFactory.h
|
115
|
+
- ext/quickfix/SessionID.h
|
116
|
+
- ext/quickfix/SessionSettings.cpp
|
117
|
+
- ext/quickfix/SessionSettings.h
|
118
|
+
- ext/quickfix/SessionState.h
|
119
|
+
- ext/quickfix/Settings.cpp
|
120
|
+
- ext/quickfix/Settings.h
|
121
|
+
- ext/quickfix/SharedArray.h
|
122
|
+
- ext/quickfix/SocketAcceptor.cpp
|
123
|
+
- ext/quickfix/SocketAcceptor.h
|
124
|
+
- ext/quickfix/SocketConnection.cpp
|
125
|
+
- ext/quickfix/SocketConnection.h
|
126
|
+
- ext/quickfix/SocketConnector.cpp
|
127
|
+
- ext/quickfix/SocketConnector.h
|
128
|
+
- ext/quickfix/SocketInitiator.cpp
|
129
|
+
- ext/quickfix/SocketInitiator.h
|
130
|
+
- ext/quickfix/SocketMonitor.h
|
131
|
+
- ext/quickfix/SocketMonitor_UNIX.cpp
|
132
|
+
- ext/quickfix/SocketMonitor_UNIX.h
|
133
|
+
- ext/quickfix/SocketMonitor_WIN32.cpp
|
134
|
+
- ext/quickfix/SocketMonitor_WIN32.h
|
135
|
+
- ext/quickfix/SocketServer.cpp
|
136
|
+
- ext/quickfix/SocketServer.h
|
137
|
+
- ext/quickfix/ThreadedSSLSocketAcceptor.cpp
|
138
|
+
- ext/quickfix/ThreadedSSLSocketAcceptor.h
|
139
|
+
- ext/quickfix/ThreadedSSLSocketConnection.cpp
|
140
|
+
- ext/quickfix/ThreadedSSLSocketConnection.h
|
141
|
+
- ext/quickfix/ThreadedSSLSocketInitiator.cpp
|
142
|
+
- ext/quickfix/ThreadedSSLSocketInitiator.h
|
143
|
+
- ext/quickfix/ThreadedSocketAcceptor.cpp
|
144
|
+
- ext/quickfix/ThreadedSocketAcceptor.h
|
145
|
+
- ext/quickfix/ThreadedSocketConnection.cpp
|
146
|
+
- ext/quickfix/ThreadedSocketConnection.h
|
147
|
+
- ext/quickfix/ThreadedSocketInitiator.cpp
|
148
|
+
- ext/quickfix/ThreadedSocketInitiator.h
|
149
|
+
- ext/quickfix/TimeRange.cpp
|
150
|
+
- ext/quickfix/TimeRange.h
|
151
|
+
- ext/quickfix/Utility.cpp
|
152
|
+
- ext/quickfix/Utility.h
|
153
|
+
- ext/quickfix/UtilitySSL.cpp
|
154
|
+
- ext/quickfix/UtilitySSL.h
|
155
|
+
- ext/quickfix/Values.h
|
156
|
+
- ext/quickfix/config-all.h
|
157
|
+
- ext/quickfix/config.h
|
158
|
+
- ext/quickfix/config_unix.h
|
159
|
+
- ext/quickfix/config_windows.h
|
160
|
+
- ext/quickfix/dirent_windows.h
|
161
|
+
- ext/quickfix/double-conversion/bignum-dtoa.cc
|
162
|
+
- ext/quickfix/double-conversion/bignum-dtoa.h
|
163
|
+
- ext/quickfix/double-conversion/bignum.cc
|
164
|
+
- ext/quickfix/double-conversion/bignum.h
|
165
|
+
- ext/quickfix/double-conversion/cached-powers.cc
|
166
|
+
- ext/quickfix/double-conversion/cached-powers.h
|
167
|
+
- ext/quickfix/double-conversion/diy-fp.cc
|
168
|
+
- ext/quickfix/double-conversion/diy-fp.h
|
169
|
+
- ext/quickfix/double-conversion/double-conversion.cc
|
170
|
+
- ext/quickfix/double-conversion/double-conversion.h
|
171
|
+
- ext/quickfix/double-conversion/fast-dtoa.cc
|
172
|
+
- ext/quickfix/double-conversion/fast-dtoa.h
|
173
|
+
- ext/quickfix/double-conversion/fixed-dtoa.cc
|
174
|
+
- ext/quickfix/double-conversion/fixed-dtoa.h
|
175
|
+
- ext/quickfix/double-conversion/ieee.h
|
176
|
+
- ext/quickfix/double-conversion/strtod.cc
|
177
|
+
- ext/quickfix/double-conversion/strtod.h
|
178
|
+
- ext/quickfix/double-conversion/utils.h
|
179
|
+
- ext/quickfix/extconf.rb
|
180
|
+
- ext/quickfix/index.h
|
181
|
+
- ext/quickfix/pugiconfig.hpp
|
182
|
+
- ext/quickfix/pugixml.cpp
|
183
|
+
- ext/quickfix/pugixml.hpp
|
184
|
+
- ext/quickfix/scope_guard.hpp
|
185
|
+
- ext/quickfix/stdint_msvc.h
|
186
|
+
- ext/quickfix/strptime.h
|
187
|
+
- lib/2.4/quickfix.so
|
188
|
+
- lib/2.5/quickfix.so
|
189
|
+
- lib/2.6/quickfix.so
|
190
|
+
- lib/2.7/quickfix.so
|
191
|
+
- lib/3.0/quickfix.so
|
192
|
+
- lib/3.1/quickfix.so
|
193
|
+
- lib/3.2/quickfix.so
|
194
|
+
- lib/3.3/quickfix.so
|
195
|
+
- lib/3.4/quickfix.so
|
196
|
+
- lib/quickfix40.rb
|
197
|
+
- lib/quickfix41.rb
|
198
|
+
- lib/quickfix42.rb
|
199
|
+
- lib/quickfix43.rb
|
200
|
+
- lib/quickfix44.rb
|
201
|
+
- lib/quickfix50.rb
|
202
|
+
- lib/quickfix50sp1.rb
|
203
|
+
- lib/quickfix50sp2.rb
|
204
|
+
- lib/quickfix_fields.rb
|
205
|
+
- lib/quickfix_ruby.rb
|
206
|
+
- lib/quickfixt11.rb
|
207
|
+
- spec/FIX40.xml
|
208
|
+
- spec/FIX41.xml
|
209
|
+
- spec/FIX42.xml
|
210
|
+
- spec/FIX43.xml
|
211
|
+
- spec/FIX44.xml
|
212
|
+
- spec/FIX50.xml
|
213
|
+
- spec/FIX50SP1.xml
|
214
|
+
- spec/FIX50SP2.xml
|
215
|
+
- spec/FIXT11.xml
|
216
|
+
- test/DataDictionaryTestCase.rb
|
217
|
+
- test/DictionaryTestCase.rb
|
218
|
+
- test/FieldBaseTestCase.rb
|
219
|
+
- test/MessageStoreTestCase.rb
|
220
|
+
- test/MessageTestCase.rb
|
221
|
+
- test/SessionSettingsTestCase.rb
|
222
|
+
homepage: https://www.quickfixengine.org
|
223
|
+
licenses:
|
224
|
+
- Apache Style
|
225
|
+
metadata: {}
|
226
|
+
rdoc_options:
|
227
|
+
- "--exclude=ext"
|
228
|
+
require_paths:
|
229
|
+
- lib
|
230
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
231
|
+
requirements:
|
232
|
+
- - ">="
|
233
|
+
- !ruby/object:Gem::Version
|
234
|
+
version: '2.4'
|
235
|
+
- - "<"
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
version: 3.5.dev
|
238
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
239
|
+
requirements:
|
240
|
+
- - ">="
|
241
|
+
- !ruby/object:Gem::Version
|
242
|
+
version: '0'
|
243
|
+
requirements: []
|
244
|
+
rubygems_version: 3.6.2
|
245
|
+
specification_version: 4
|
246
|
+
summary: QuickFIX
|
247
|
+
test_files: []
|