quickfix_ruby 1.14.3.1 → 1.15.1

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.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/ext/quickfix/Acceptor.h +2 -0
  3. data/ext/quickfix/AtomicCount.h +82 -12
  4. data/ext/quickfix/DOMDocument.h +9 -7
  5. data/ext/quickfix/DataDictionary.cpp +77 -14
  6. data/ext/quickfix/DataDictionary.h +90 -16
  7. data/ext/quickfix/Dictionary.cpp +1 -2
  8. data/ext/quickfix/Exceptions.h +3 -5
  9. data/ext/quickfix/Field.h +83 -32
  10. data/ext/quickfix/FieldConvertors.cpp +93 -0
  11. data/ext/quickfix/FieldConvertors.h +129 -275
  12. data/ext/quickfix/FieldMap.cpp +53 -13
  13. data/ext/quickfix/FieldMap.h +200 -62
  14. data/ext/quickfix/FieldTypes.cpp +10 -10
  15. data/ext/quickfix/FieldTypes.h +293 -44
  16. data/ext/quickfix/FileLog.cpp +6 -10
  17. data/ext/quickfix/FileLog.h +4 -10
  18. data/ext/quickfix/FileStore.cpp +19 -6
  19. data/ext/quickfix/FileStore.h +4 -0
  20. data/ext/quickfix/FixFieldNumbers.h +1462 -1461
  21. data/ext/quickfix/FixFields.h +1462 -1461
  22. data/ext/quickfix/FixValues.h +3230 -3227
  23. data/ext/quickfix/HttpConnection.cpp +1 -1
  24. data/ext/quickfix/Initiator.cpp +7 -1
  25. data/ext/quickfix/Initiator.h +2 -0
  26. data/ext/quickfix/Log.h +6 -12
  27. data/ext/quickfix/Message.cpp +186 -57
  28. data/ext/quickfix/Message.h +109 -47
  29. data/ext/quickfix/MySQLConnection.h +1 -1
  30. data/ext/quickfix/PostgreSQLConnection.h +1 -1
  31. data/ext/quickfix/QuickfixRuby.cpp +79141 -77959
  32. data/ext/quickfix/QuickfixRuby.h +1 -1
  33. data/ext/quickfix/SSLSocketAcceptor.cpp +410 -0
  34. data/ext/quickfix/SSLSocketAcceptor.h +185 -0
  35. data/ext/quickfix/SSLSocketConnection.cpp +427 -0
  36. data/ext/quickfix/SSLSocketConnection.h +206 -0
  37. data/ext/quickfix/SSLSocketInitiator.cpp +485 -0
  38. data/ext/quickfix/SSLSocketInitiator.h +196 -0
  39. data/ext/quickfix/Session.cpp +113 -20
  40. data/ext/quickfix/Session.h +18 -4
  41. data/ext/quickfix/SessionFactory.cpp +10 -3
  42. data/ext/quickfix/SessionSettings.cpp +5 -3
  43. data/ext/quickfix/SessionSettings.h +97 -5
  44. data/ext/quickfix/Settings.cpp +72 -2
  45. data/ext/quickfix/Settings.h +3 -0
  46. data/ext/quickfix/SharedArray.h +140 -6
  47. data/ext/quickfix/SocketConnection.cpp +2 -2
  48. data/ext/quickfix/SocketConnector.cpp +5 -2
  49. data/ext/quickfix/SocketConnector.h +3 -2
  50. data/ext/quickfix/SocketInitiator.cpp +28 -4
  51. data/ext/quickfix/SocketInitiator.h +1 -1
  52. data/ext/quickfix/SocketMonitor.cpp +5 -5
  53. data/ext/quickfix/ThreadedSSLSocketAcceptor.cpp +455 -0
  54. data/ext/quickfix/ThreadedSSLSocketAcceptor.h +217 -0
  55. data/ext/quickfix/ThreadedSSLSocketConnection.cpp +404 -0
  56. data/ext/quickfix/ThreadedSSLSocketConnection.h +189 -0
  57. data/ext/quickfix/ThreadedSSLSocketInitiator.cpp +469 -0
  58. data/ext/quickfix/ThreadedSSLSocketInitiator.h +201 -0
  59. data/ext/quickfix/ThreadedSocketAcceptor.cpp +5 -1
  60. data/ext/quickfix/ThreadedSocketConnection.cpp +8 -2
  61. data/ext/quickfix/ThreadedSocketConnection.h +4 -1
  62. data/ext/quickfix/ThreadedSocketInitiator.cpp +24 -4
  63. data/ext/quickfix/ThreadedSocketInitiator.h +1 -1
  64. data/ext/quickfix/Utility.cpp +23 -1
  65. data/ext/quickfix/Utility.h +28 -2
  66. data/ext/quickfix/UtilitySSL.cpp +1733 -0
  67. data/ext/quickfix/UtilitySSL.h +277 -0
  68. data/ext/quickfix/config-all.h +10 -0
  69. data/ext/quickfix/dirent_windows.h +838 -0
  70. data/ext/quickfix/double-conversion/bignum-dtoa.cc +641 -0
  71. data/ext/quickfix/double-conversion/bignum-dtoa.h +84 -0
  72. data/ext/quickfix/double-conversion/bignum.cc +766 -0
  73. data/ext/quickfix/double-conversion/bignum.h +144 -0
  74. data/ext/quickfix/double-conversion/cached-powers.cc +176 -0
  75. data/ext/quickfix/double-conversion/cached-powers.h +64 -0
  76. data/ext/quickfix/double-conversion/diy-fp.cc +57 -0
  77. data/ext/quickfix/double-conversion/diy-fp.h +118 -0
  78. data/ext/quickfix/double-conversion/double-conversion.cc +994 -0
  79. data/ext/quickfix/double-conversion/double-conversion.h +543 -0
  80. data/ext/quickfix/double-conversion/fast-dtoa.cc +665 -0
  81. data/ext/quickfix/double-conversion/fast-dtoa.h +88 -0
  82. data/ext/quickfix/double-conversion/fixed-dtoa.cc +404 -0
  83. data/ext/quickfix/double-conversion/fixed-dtoa.h +56 -0
  84. data/ext/quickfix/double-conversion/ieee.h +402 -0
  85. data/ext/quickfix/double-conversion/strtod.cc +557 -0
  86. data/ext/quickfix/double-conversion/strtod.h +45 -0
  87. data/ext/quickfix/double-conversion/utils.h +372 -0
  88. data/ext/quickfix/stdint_msvc.h +254 -0
  89. data/lib/quickfix44.rb +3329 -10
  90. data/lib/quickfix50.rb +6649 -81
  91. data/lib/quickfix50sp1.rb +8054 -142
  92. data/lib/quickfix50sp2.rb +10900 -234
  93. data/lib/quickfix_fields.rb +7662 -7649
  94. data/spec/FIX40.xml +28 -28
  95. data/spec/FIX41.xml +29 -29
  96. data/spec/FIX42.xml +47 -47
  97. data/spec/FIX43.xml +148 -148
  98. data/spec/FIX44.xml +1078 -1081
  99. data/spec/FIX50.xml +1292 -1289
  100. data/spec/FIX50SP1.xml +1811 -1802
  101. data/spec/FIX50SP2.xml +1948 -1939
  102. data/spec/FIXT11.xml +5 -8
  103. data/test/test_FieldBaseTestCase.rb +1 -1
  104. data/test/test_MessageTestCase.rb +2 -2
  105. metadata +42 -6
@@ -27,7 +27,11 @@
27
27
  <field name='XmlData' required='N'/>
28
28
  <field name='MessageEncoding' required='N'/>
29
29
  <field name='LastMsgSeqNumProcessed' required='N'/>
30
- <component name='HopGrp' required='N'/>
30
+ <group name='NoHops' required='N'>
31
+ <field name='HopCompID' required='N' />
32
+ <field name='HopSendingTime' required='N' />
33
+ <field name='HopRefID' required='N' />
34
+ </group>
31
35
  <field name='ApplVerID' required='N'/>
32
36
  <field name='CstmApplVerID' required='N'/>
33
37
  </header>
@@ -81,13 +85,6 @@
81
85
  </message>
82
86
  </messages>
83
87
  <components>
84
- <component name='HopGrp'>
85
- <group name='NoHops' required='N'>
86
- <field name='HopCompID' required='N'/>
87
- <field name='HopSendingTime' required='N'/>
88
- <field name='HopRefID' required='N'/>
89
- </group>
90
- </component>
91
88
  <component name='MsgTypeGrp'>
92
89
  <group name='NoMsgTypes' required='N'>
93
90
  <field name='RefMsgType' required='N'/>
@@ -16,7 +16,7 @@ class FieldBaseTestCase < Test::Unit::TestCase
16
16
  assert(@object.getFixString() == "12=VALUF\001")
17
17
  assert(@object.getTotal() == 543)
18
18
  assert(@object.getLength() == 9)
19
- @object.setField(13)
19
+ @object.setTag(13)
20
20
  assert(@object.getFixString() == "13=VALUF\001")
21
21
  assert(@object.getTotal() == 544)
22
22
  assert(@object.getLength() == 9)
@@ -302,7 +302,7 @@ class MessageTestCase < Test::Unit::TestCase
302
302
  @object.getField( noOrders )
303
303
  assert_equal( 2, noOrders.getValue() )
304
304
 
305
- @object.removeGroup( group )
305
+ @object.removeGroup( 1, group )
306
306
  assert( @object.hasGroup(1, group) )
307
307
  assert( !@object.hasGroup(2, group) )
308
308
  assert( !@object.hasGroup(3, group) )
@@ -365,4 +365,4 @@ class MessageTestCase < Test::Unit::TestCase
365
365
  @object.getGroup( 3, group )
366
366
  assert_equal( "C", group.getField(clOrdID).getString() )
367
367
  end
368
- end
368
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quickfix_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.3.1
4
+ version: 1.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oren Miller
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-15 00:00:00.000000000 Z
11
+ date: 2018-04-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: FIX (Financial Information eXchange) protocol implementation
14
14
  email: oren@quickfixengine.org
@@ -34,6 +34,7 @@ files:
34
34
  - ext/quickfix/Event.h
35
35
  - ext/quickfix/Exceptions.h
36
36
  - ext/quickfix/Field.h
37
+ - ext/quickfix/FieldConvertors.cpp
37
38
  - ext/quickfix/FieldConvertors.h
38
39
  - ext/quickfix/FieldMap.cpp
39
40
  - ext/quickfix/FieldMap.h
@@ -97,6 +98,12 @@ files:
97
98
  - ext/quickfix/QuickfixRuby.cpp
98
99
  - ext/quickfix/QuickfixRuby.h
99
100
  - ext/quickfix/Responder.h
101
+ - ext/quickfix/SSLSocketAcceptor.cpp
102
+ - ext/quickfix/SSLSocketAcceptor.h
103
+ - ext/quickfix/SSLSocketConnection.cpp
104
+ - ext/quickfix/SSLSocketConnection.h
105
+ - ext/quickfix/SSLSocketInitiator.cpp
106
+ - ext/quickfix/SSLSocketInitiator.h
100
107
  - ext/quickfix/Session.cpp
101
108
  - ext/quickfix/Session.h
102
109
  - ext/quickfix/SessionFactory.cpp
@@ -120,6 +127,12 @@ files:
120
127
  - ext/quickfix/SocketMonitor.h
121
128
  - ext/quickfix/SocketServer.cpp
122
129
  - ext/quickfix/SocketServer.h
130
+ - ext/quickfix/ThreadedSSLSocketAcceptor.cpp
131
+ - ext/quickfix/ThreadedSSLSocketAcceptor.h
132
+ - ext/quickfix/ThreadedSSLSocketConnection.cpp
133
+ - ext/quickfix/ThreadedSSLSocketConnection.h
134
+ - ext/quickfix/ThreadedSSLSocketInitiator.cpp
135
+ - ext/quickfix/ThreadedSSLSocketInitiator.h
123
136
  - ext/quickfix/ThreadedSocketAcceptor.cpp
124
137
  - ext/quickfix/ThreadedSocketAcceptor.h
125
138
  - ext/quickfix/ThreadedSocketConnection.cpp
@@ -130,14 +143,37 @@ files:
130
143
  - ext/quickfix/TimeRange.h
131
144
  - ext/quickfix/Utility.cpp
132
145
  - ext/quickfix/Utility.h
146
+ - ext/quickfix/UtilitySSL.cpp
147
+ - ext/quickfix/UtilitySSL.h
133
148
  - ext/quickfix/Values.h
149
+ - ext/quickfix/config-all.h
134
150
  - ext/quickfix/config.h
135
151
  - ext/quickfix/config_windows.h
152
+ - ext/quickfix/dirent_windows.h
153
+ - ext/quickfix/double-conversion/bignum-dtoa.cc
154
+ - ext/quickfix/double-conversion/bignum-dtoa.h
155
+ - ext/quickfix/double-conversion/bignum.cc
156
+ - ext/quickfix/double-conversion/bignum.h
157
+ - ext/quickfix/double-conversion/cached-powers.cc
158
+ - ext/quickfix/double-conversion/cached-powers.h
159
+ - ext/quickfix/double-conversion/diy-fp.cc
160
+ - ext/quickfix/double-conversion/diy-fp.h
161
+ - ext/quickfix/double-conversion/double-conversion.cc
162
+ - ext/quickfix/double-conversion/double-conversion.h
163
+ - ext/quickfix/double-conversion/fast-dtoa.cc
164
+ - ext/quickfix/double-conversion/fast-dtoa.h
165
+ - ext/quickfix/double-conversion/fixed-dtoa.cc
166
+ - ext/quickfix/double-conversion/fixed-dtoa.h
167
+ - ext/quickfix/double-conversion/ieee.h
168
+ - ext/quickfix/double-conversion/strtod.cc
169
+ - ext/quickfix/double-conversion/strtod.h
170
+ - ext/quickfix/double-conversion/utils.h
136
171
  - ext/quickfix/extconf.rb
137
172
  - ext/quickfix/index.h
138
173
  - ext/quickfix/pugiconfig.hpp
139
174
  - ext/quickfix/pugixml.cpp
140
175
  - ext/quickfix/pugixml.hpp
176
+ - ext/quickfix/stdint_msvc.h
141
177
  - ext/quickfix/strptime.h
142
178
  - lib/quickfix40.rb
143
179
  - lib/quickfix41.rb
@@ -170,22 +206,22 @@ licenses:
170
206
  metadata: {}
171
207
  post_install_message:
172
208
  rdoc_options:
173
- - --exclude=ext
209
+ - "--exclude=ext"
174
210
  require_paths:
175
211
  - lib
176
212
  required_ruby_version: !ruby/object:Gem::Requirement
177
213
  requirements:
178
- - - ! '>='
214
+ - - ">="
179
215
  - !ruby/object:Gem::Version
180
216
  version: '0'
181
217
  required_rubygems_version: !ruby/object:Gem::Requirement
182
218
  requirements:
183
- - - ! '>='
219
+ - - ">="
184
220
  - !ruby/object:Gem::Version
185
221
  version: '0'
186
222
  requirements: []
187
223
  rubyforge_project:
188
- rubygems_version: 2.2.2
224
+ rubygems_version: 2.5.2.1
189
225
  signing_key:
190
226
  specification_version: 4
191
227
  summary: QuickFIX