-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathChangeLog
More file actions
9191 lines (7897 loc) · 359 KB
/
Copy pathChangeLog
File metadata and controls
9191 lines (7897 loc) · 359 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Mon May 10 18:25:55 UTC 2010 Dale Wilson <[email protected]>
* .:
* src/Examples/MulticastInterpreter:
* src/Messages/MessageAccessor.h:
* src/Codecs/DataDestinationString.cpp:
* src/Tests/DataDestinationMock.h:
Merge recent changes from trunk into ValueBasedEncoding
Thu Apr 29 20:00:15 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionBlob.h:
* src/Codecs/FieldInstructionBlob.cpp:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/FieldInstructionTemplateRef.cpp:
* src/Codecs/FieldInstructionUInt32.h:
* src/Messages/Field.h:
* src/Messages/Field.cpp:
* src/Messages/FieldInt16.h:
* src/Messages/FieldInt16.cpp:
* src/Messages/FieldInt32.h:
* src/Messages/FieldInt32.cpp:
* src/Messages/FieldInt64.h:
* src/Messages/FieldInt64.cpp:
* src/Messages/FieldInt8.h:
* src/Messages/FieldInt8.cpp:
* src/Messages/FieldUInt16.h:
* src/Messages/FieldUInt16.cpp:
* src/Messages/FieldUInt32.h:
* src/Messages/FieldUInt32.cpp:
* src/Messages/FieldUInt64.h:
* src/Messages/FieldUInt64.cpp:
* src/Messages/FieldUInt8.h:
* src/Messages/FieldUInt8.cpp:
* src/Messages/MessageAccessor.h:
* src/Messages/SpecialAccessors.h:
Preliminary: MessageAccessor now returns values directly
rather than return a field object from which values can be
extracted.
* src/Tests/testGroupReferences.cpp:
BOOST_REQUIRE to avoid using null pointer.
* src/Common/StringBuffer.h:
Add assignment & comparison with std::string
Add != operator.
Tue Apr 27 21:21:44 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConfiguration.h:
* src/Application/DecoderConnection.cpp:
* src/Codecs/FixedSizeHeaderAnalyzer.h:
* src/Codecs/FixedSizeHeaderAnalyzer.cpp:
* src/Codecs/NoHeaderAnalyzer.h:
* src/Examples/InterpretApplication/InterpretApplication.cpp:
Add a hook for testing the "skip this packet" feature.
TestSkip forces the header analyzer to
skip every 'n'th packet.
* src/Codecs/Encoder.cpp:
Fix a spelling mistake
* src/Common/Decimal.cpp:
Add leading zero before decimal point in toString.
Avoid making a temporary to return the string value.
* src/Messages/FieldSet.cpp:
* src/Tests/testGroupReferences.cpp:
* src/Tests/testRoundTripFieldOps.cpp:
Issue #52 heap allocation error after decoding.
If field set needed to grow to support additional fields
it grew by 50% (i.e. size = size * 3 / 2.)
This worked fine unless size started at 1 (oops).
Thu Apr 22 15:11:47 UTC 2010 Dale Wilson <[email protected]>
* src/Common/Logger.h:
Add virtual destructor to Logger. See Issue # 48.
Thu Apr 22 14:54:02 UTC 2010 Dale Wilson <[email protected]>
* src/Communication/LinkedBuffer.h:
Add a missing return statement. See Issue#47.
Wed Apr 14 19:43:47 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConfiguration.h:
The nonstandard_ member variable was not initialized
* src/Application/DecoderConnection.cpp:
Decoder Connection was not opening the XML file in binary mode on Windows
* src/Common/Decimal.cpp:
Decimal formatting using boost lexical cast was producing sloppy results
i.e. 3.99999999999999 rather than 4.0
I hand coded a formatter that produces a string that exactly represents the decimal value.
* src/Examples/InterpretApplication/InterpretApplication.cpp:
Cosmetic: Fix a line that was indented incorrectly.
Wed Apr 14 18:15:30 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConnection.cpp:
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionAscii.h:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionBlob.h:
* src/Codecs/FieldInstructionBlob.cpp:
* src/Codecs/FieldInstructionDecimal.h:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionExponent.h:
* src/Codecs/FieldInstructionGroup.h:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/FieldInstructionMantissa.h:
* src/Codecs/FieldInstructionSequence.h:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/FieldInstructionTemplateRef.h:
* src/Codecs/FieldInstructionTemplateRef.cpp:
* src/Codecs/FieldInstructionUInt32.h:
* src/Codecs/FieldOp.h:
* src/Codecs/FieldOp.cpp:
* src/Codecs/FieldOpConstant.h:
* src/Codecs/FieldOpConstant.cpp:
* src/Codecs/FieldOpCopy.h:
* src/Codecs/FieldOpCopy.cpp:
* src/Codecs/FieldOpDefault.h:
* src/Codecs/FieldOpDefault.cpp:
* src/Codecs/FieldOpDelta.h:
* src/Codecs/FieldOpDelta.cpp:
* src/Codecs/FieldOpIncrement.h:
* src/Codecs/FieldOpIncrement.cpp:
* src/Codecs/FieldOpNop.h:
* src/Codecs/FieldOpTail.h:
* src/Codecs/FieldOpTail.cpp:
* src/Codecs/SegmentBody.h:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/XMLTemplateParser.cpp:
* src/Common/Types.h:
* src/Common/Types.cpp:
* src/DotNet/ImplField.cpp:
* src/Examples/Examples/MessageInterpreter.cpp:
* src/Messages/FieldIdentity.cpp:
* src/Tests/FieldInstructionMock.h:
* src/Tests/testFieldInstructions.cpp:
* src/Tests/testXMLTemplateParser.cpp:
Issue#42 pointed out a problem with the way the presence map interacted
with groups. There are three parts to this checkin:
1) Add a display(ostream, indent) method to the various components of
an in-memory template/template registry. This allows the contents
of the registry to be dumped after the XML file is compiled. The
dump includes information about PMAP usage that was used to
diagnose this problem.
2) Add a new unit test in testXMLTemplateParser: testGroupsAndSequencesVsPMAP.
This test detected the problem and verfied that it was fixed.
Also correct an incorrect test in testFieldInstructions which
was triggered by the fix.
3) Fix the problem (the change is in in FieldInstructionGroup)
* Output/TestData:
This was used by the old .NET tests which are gone. We need new tests,
but when they happen they won't read templates from a file.
Tue Apr 13 21:02:51 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionBlob.cpp:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionInteger.h:
One more pass at Issue #43. The case of an optional field with no default value
was still not being handled correctly. Apply the fix to Blobs and Decimals, too.
* src/Tests/testFieldOperations.cpp:
Tests for Issue #43. Currently integers and Ascii strings are tested. It would be
worthwhile to have similar tests for Decimals and Blobs.
* src/Codecs/SegmentBody.h:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/Template.h:
* src/Codecs/Template.cpp:
* src/Codecs/TemplateRegistry.h:
* src/Codecs/TemplateRegistry.cpp:
* src/Messages/FieldIdentity.h:
* src/Messages/FieldIdentity.cpp:
Add a display() method to template components to allow dumping
of the decoded templates for verification/debugging purposes.
Mon Apr 12 23:49:19 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionInteger.h:
Fix a mistake in the previous checkin.
Mon Apr 12 22:31:21 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Tests/testFieldOperations.cpp:
Issue #43. Ascii string encodeCopy optional, no initial value not handled
correctly.
Unit test test_issue_38 finds it.
This checkin fixes it.
Mon Apr 12 21:11:14 UTC 2010 Dale Wilson <[email protected]>
* src/Examples/TutorialApplication/TutorialApplication.cpp:
Issue # 44. Error from XML parser because Xerces expects
the file to be open in binary mode on Windows.
Thu Apr 8 22:00:49 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstructionAscii.h:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionBlob.h:
* src/Codecs/FieldInstructionBlob.cpp:
* src/Codecs/FieldInstructionDecimal.h:
* src/Codecs/FieldInstructionGroup.h:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/FieldInstructionSequence.h:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/FieldInstructionTemplateRef.h:
* src/Codecs/FieldInstructionTemplateRef.cpp:
Cosmetics. Cleaning up parameter names to match
actual data types (which changed long ago.)
Tue Apr 6 16:54:38 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConfiguration.h:
* src/Application/DecoderConnection.cpp:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/XMLTemplateParser.h:
* src/Codecs/XMLTemplateParser.cpp:
* src/Examples/InterpretApplication/InterpretApplication.cpp:
Add support for nonstandard usage by Shanghai Exchange:
They encode:
<sequence name="Abc" presence="optional>
<length name="NoAbc/>
As
<sequence name="Abc">
<length name="NoAbc presence="optional">
This patch assigns numbers to nonstandard FAST features
NONSTANDARD_PresenceOnLengthInstruction = 1
and a setNonstandard(feature) method on the template parser
to enable support for the feature.
InterpretApplication now has a new parameter:
-nonstandard n
to use/test this capability.
Mon Apr 5 22:55:28 UTC 2010 Dale Wilson <[email protected]>
* src/Common/Version.h:
Set Version to 1.3 [Preliminary]
Mon Apr 5 21:11:28 UTC 2010 Dale Wilson <[email protected]>
* src/Common/Version.h:
Prepare V1.2 release.
Mon Apr 5 20:55:21 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
Add doxygen comment for ignoreOverflow_
* src/Application/DecoderConnection.cpp:
avoid deleting cout and cerr when used as an echo file.
* src/Codecs/DataSource.h:
* src/Codecs/DataSource.cpp:
Add additional info to echo display: interpret FAST encoded data
as string and as raw integer (warning, field nullability so the
actual decoded value may need adjusting.)
* src/Examples/Examples.mpc:
Add standard boilerplate comments.
Mon Apr 5 20:55:21 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConnection.cpp:
avoid deleting cout and cerr when used as an echo file.
* src/Codecs/DataSource.h:
* src/Codecs/DataSource.cpp:
Add additional info to echo display: interpret FAST encoded data
as string and as raw integer (warning, field nullability so the
actual decoded value may need adjusting.)
* src/Examples/Examples.mpc:
Add standard boilerplate comments.
Fri Apr 2 16:31:58 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Messages/FieldIdentity.h:
Move the "no-overflow" flag into the field instruction where it belongs.
* src/Examples/InterpretApplication/InterpretApplication.h:
* src/Examples/InterpretApplication/InterpretApplication.cpp:
Add support for decoding-from-a-buffer.
Wed Mar 31 14:30:29 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConfiguration.h:
* src/Application/DecoderConnection.h:
* src/Application/DecoderConnection.cpp:
* src/Codecs/FieldInstruction.h:
* src/Codecs/MessagePerPacketAssembler.h:
* src/Codecs/MessagePerPacketAssembler.cpp:
* src/Codecs/StreamingAssembler.h:
* src/Codecs/StreamingAssembler.cpp:
* src/Communication/Assembler.h:
* src/Communication/BufferReceiver.h:
* src/Communication/BufferReceiver_fwd.h:
* src/Communication/LinkedBuffer.h:
* src/Communication/PCapFileReceiver_fwd.h:
* src/Communication/Receiver.h:
* src/Communication/SynchReceiver.h:
* src/DotNet/DNDecoderConnection.h:
* src/DotNet/DNDecoderConnection.cpp:
* src/DotNet/ImplField.h:
* src/DotNet/ImplMessageDeliverer.h:
* src/DotNet/Stopwatch.h:
* src/DotNetExamples/InterpretFASTDotNet/InterpretFASTDotNet.cs:
* src/Tests/testCommon.cpp:
Add support to DNDecoderConnection to decode from memory buffer (.NET byte[])
-- use receiver type BUFFER_RECEIVER
-- call Assembler::run(builder, buffer, offset, used, reset)
rather than run(builder, threadCount, useThisThread)
Tue Mar 30 16:09:00 UTC 2010 Dale Wilson <[email protected]>
* QuickFAST.mwc:
exclude(!vc8,!vc9) was not working as expected so I switched
to exclude(!prop:windows) Downside is lack of support for mono
and possibly unexpected results running mingw/gcc.
Fri Mar 12 20:19:15 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Messages/FieldIdentity.h:
* src/Messages/FieldIdentity.cpp:
* src/Tests/testFieldInstructions.cpp:
Required should be a property of the field instruction, not the identity.
Now it is.
Thu Mar 11 19:59:37 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConfiguration.h:
* src/Application/DecoderConnection.cpp:
* src/DotNet/DNDecoderConnection.h:
* src/DotNet/DNFieldSet.h:
* src/DotNet/DNFieldSet.cpp:
* src/DotNet/ImplBuilderBase.cpp:
* src/DotNetExamples/InterpretFASTDotNet/FieldSetInterpreter.cs:
* src/Examples/InterpretApplication/InterpretApplication.cpp:
Add get and set methods to DecoderConfiguration rather than
accessing data members directly.
Honor the strict and reset parameters for decoding.
Add Find*ByQualifiedName methods to DNFieldSet to honor field namespace
Set the default log level in DotNet to LOG_WARNING
Improve internal documentation
Wed Mar 10 21:57:36 UTC 2010 Dale Wilson <[email protected]>
* src/DotNetTests/QuickFASTDotNetTests.mpc:
Disable .NET tests until they can be reworked.
Wed Mar 10 20:15:18 UTC 2010 Dale Wilson <[email protected]>
* src/DotNet/ImplField.h:
* src/DotNet/ImplField.cpp:
* src/DotNet/ImplFieldSetBuilder.cpp:
* src/DotNet/ImplSequence.h:
* src/DotNet/ImplSequence.cpp:
* src/DotNetExamples/InterpretFASTDotNet/InterpretFASTDotNet.cs:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
Improve performance as measured by PerformanceTestDotNet
Display log and error messages in InterpretFASTDotNet and PerformanceTestDotNet.
Wed Mar 10 15:48:14 UTC 2010 Dale Wilson <[email protected]>
* QuickFAST.features:
* QuickFASTApplication.mpb:
* QuickFASTDotNetApplication.mpb:
* QuickFASTDotNetExample.mpb:
* QuickFASTExample.mpb:
* QuickFASTExeOut.mpb:
* src/DotNet/DNField.cpp:
* src/DotNet/DNMessageDeliverer.h:
* src/DotNet/DNMessageDeliverer.cpp:
* src/DotNet/DNSequence.h:
* src/DotNet/ImplBuilderBase.h:
* src/DotNet/ImplBuilderBase.cpp:
* src/DotNet/ImplField.h:
* src/DotNet/ImplField.cpp:
* src/DotNet/ImplFieldSet.h:
* src/DotNet/ImplFieldSet.cpp:
* src/DotNet/ImplFieldSetBuilder.h:
* src/DotNet/ImplFieldSetBuilder.cpp:
* src/DotNet/ImplMessageDeliverer.h:
* src/DotNet/ImplMessageDeliverer.cpp:
* src/DotNet/ImplSequence.cpp:
* src/DotNet/ImplSequenceBuilder.h:
* src/DotNet/ImplSequenceBuilder.cpp:
* src/DotNet/Stopwatch.h:
* src/DotNet/Stopwatch.cpp:
* src/DotNetExamples/InterpretFASTDotNet/InterpretFASTDotNet.cs:
* src/DotNetExamples/InterpretFASTDotNet/InterpretFASTDotNet.mpc:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.mpc:
* src/DotNetExamples/PerformanceTestDotNet/MessageInterpreter.cs:
Reenable the PerformanceTestDotNet application.
Change most Impl* classes to be unmanaged to improve .NET performance.
Note this check in has dotnet enabled in the features file.
Tue Mar 9 18:59:44 UTC 2010 Dale Wilson <[email protected]>
* src/DotNet/DNDecimal.h:
* src/DotNet/DNDecoderConnection.h:
* src/DotNet/DNField.h:
* src/DotNet/DNFieldSet.h:
* src/DotNet/DNMessage.h:
* src/DotNet/DNMessageBuilder.h:
* src/DotNet/DNMessageDeliverer.h:
* src/DotNet/DNSequence.h:
* src/DotNet/ImplBuilderBase.h:
* src/DotNet/ImplField.h:
* src/DotNet/ImplFieldSet.h:
* src/DotNet/ImplFieldSetBuilder.h:
* src/DotNet/ImplSequence.h:
* src/DotNet/ImplSequenceBuilder.h:
* src/DotNet/QuickFASTDotNetPch.h:
* src/DotNet/StringConversion.h:
* src/DotNet/app.aps:
* src/Doxyfile:
* src/DotNet/DNSequenceEntry.h:
Removed this file.
Update Doxygen Documentation for .NET API
Mon Mar 8 23:52:21 UTC 2010 Dale Wilson <[email protected]>
* src/DotNet/DNFieldSet.h:
* src/DotNet/DNFieldSet.cpp:
* src/DotNet/DNSequence.cpp:
* src/DotNetExamples/InterpretFASTDotNet/FieldSetInterpreter.cs:
Make FieldSet Enumerable. Use foreach in Interpreter.
Mon Mar 8 23:33:02 UTC 2010 Dale Wilson <[email protected]>
* src/DotNet/DNSequence.h:
* src/DotNet/DNSequence.cpp:
* src/DotNetExamples/InterpretFASTDotNet/FieldSetInterpreter.cs:
Make Sequence Enumerable. Use foreach in Interpreter.
Mon Mar 8 17:44:09 UTC 2010 Dale Wilson <[email protected]>
* src/DotNet/DNField.h:
* src/DotNet/DNField.cpp:
* src/DotNetExamples/InterpretFASTDotNet/FieldSetInterpreter.cs:
Access Field values as properties rather than "get" methods.
Mon Mar 8 16:13:47 UTC 2010 Dale Wilson <[email protected]>
* QuickFAST.features:
Disable .NET support by default to avoid generating errors for
people who do not have .NET installed on their system, or for
people using the express editions of visual studio.
Sun Mar 7 19:57:02 UTC 2010 Dale Wilson <[email protected]>
* QuickFAST.mwc:
* src/DotNet/AssemblyInfo.cpp:
* src/DotNet/DNDecimal.h:
* src/DotNet/DNDecimal.cpp:
* src/DotNet/DNDecoderConnection.h:
* src/DotNet/DNDecoderConnection.cpp:
* src/DotNet/DNField.h:
* src/DotNet/DNField.cpp:
* src/DotNet/DNFieldSet.h:
* src/DotNet/DNFieldSet.cpp:
* src/DotNet/DNMessage.h:
* src/DotNet/DNMessageBuilder.h:
* src/DotNet/DNMessageDeliverer.h:
* src/DotNet/DNMessageDeliverer.cpp:
* src/DotNet/DNSequence.h:
* src/DotNet/DNSequence.cpp:
* src/DotNet/DNSequenceEntry.h:
* src/DotNet/ImplBuilderBase.h:
* src/DotNet/ImplBuilderBase.cpp:
* src/DotNet/ImplField.h:
* src/DotNet/ImplField.cpp:
* src/DotNet/ImplFieldSet.h:
* src/DotNet/ImplFieldSet.cpp:
* src/DotNet/ImplFieldSetBuilder.h:
* src/DotNet/ImplFieldSetBuilder.cpp:
* src/DotNet/ImplSequence.h:
* src/DotNet/ImplSequence.cpp:
* src/DotNet/ImplSequenceBuilder.h:
* src/DotNet/ImplSequenceBuilder.cpp:
* src/DotNet/QuickFASTDotNet.mpc:
* src/DotNet/QuickFASTDotNetPch.h:
* src/DotNet/QuickFASTDotNetPch.cpp:
* src/DotNet/StringConversion.h:
* src/DotNet/app.aps:
* src/DotNet/resource.h:
* src/DotNetExamples/InterpretFASTDotNet/FieldSetInterpreter.cs:
* src/DotNetExamples/InterpretFASTDotNet/InterpretFASTDotNet.cs:
* src/DotNetExamples/InterpretFASTDotNet/Properties/AssemblyInfo.cs:
* src/QuickFAST.mpc:
Reenable .NET support. It needs work, but it is successfully decoding incoming messages.
Sun Mar 7 19:22:31 UTC 2010 Dale Wilson <[email protected]>
* QuickFAST.features:
Add "obsolete" feature for use during transtion to new .NET support
* QuickFAST.mwc:
Disable .NET builds during transition
* src/Application/DecoderConfiguration.h:
* src/Application/DecoderConnection_fwd.h:
Documentation changes.
Add forward declaration.
* src/Codecs/FieldInstructionInt32.h:
* src/Codecs/FieldInstructionUInt64.h:
Fix some field type errors.
* src/Common/QuickFASTPch.h:
Link boost::threads dynamically to cope with .NET
* src/Communication/Receiver.h:
Declare destructor as virtual.
* src/DotNetExamples/InterpretFASTDotNet/InterpretFASTDotNet.mpc:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.mpc:
Disable DotNet examples during transition to new DotNet support
* src/DotNet/AssemblyInfo.cpp:
* src/DotNet/BoostPtr.h:
* src/DotNet/DataDestination.h:
* src/DotNet/DataDestination.cpp:
* src/DotNet/DataSource.h:
* src/DotNet/DataSource.cpp:
* src/DotNet/DataSourceBuffered.h:
* src/DotNet/DataSourceBuffered.cpp:
* src/DotNet/Decimal.h:
* src/DotNet/Decimal.cpp:
* src/DotNet/Decoder.h:
* src/DotNet/Decoder.cpp:
* src/DotNet/Encoder.h:
* src/DotNet/Encoder.cpp:
* src/DotNet/Exceptions.h:
* src/DotNet/Exceptions.cpp:
* src/DotNet/Field.h:
* src/DotNet/Field.cpp:
* src/DotNet/FieldIdentity.h:
* src/DotNet/FieldIdentity.cpp:
* src/DotNet/FieldSet.h:
* src/DotNet/FieldSet.cpp:
* src/DotNet/ManagedHelpers.h:
* src/DotNet/MutableFieldSet.h:
* src/DotNet/MutableFieldSet.cpp:
* src/DotNet/MutableSequence.h:
* src/DotNet/MutableSequence.cpp:
* src/DotNet/QuickFASTDotNet.mpc:
* src/DotNet/Sequence.h:
* src/DotNet/Sequence.cpp:
* src/DotNet/Stdafx.h:
* src/DotNet/Stdafx.cpp:
* src/DotNet/StlDotNet.h:
* src/DotNet/Stopwatch.h:
* src/DotNet/Stopwatch.cpp:
* src/DotNet/SynchronousDecoder.h:
* src/DotNet/SynchronousDecoder.cpp:
* src/DotNet/TemplateRegistry.h:
* src/DotNet/TemplateRegistry.cpp:
* src/DotNet/UnmanagedPtr.h:
* src/DotNet/UnmanagedPtr.cpp:
* src/DotNet/resource.h:
* src/DotNetExamples/InterpretFASTDotNet/MessageInterpreter.cs:
Remove previous attempt at DotNet support to make room for the
new way.
Fri Feb 26 18:00:48 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/DataSource.cpp:
Problem detecting end of data in DataSource::bytesAvailable();
Wed Feb 24 20:28:22 UTC 2010 Dale Wilson <[email protected]>
* src/Application/DecoderConfiguration.h:
* src/Application/DecoderConnection.h:
* src/Application/DecoderConnection.cpp:
* src/Communication/PCapFileReceiver.h:
* src/Examples/InterpretApplication/InterpretApplication.h:
* src/Examples/InterpretApplication/InterpretApplication.cpp:
Use InterpretApplication as a prototype for a "typical"
application that needs to decode FAST encoded data.
The "guts" of InterpretApplication were refactored into
- DecoderConfiguration which holds everything you need to
know in order to configure a decoder for "any" supported
type of incoming data, and
- DecoderConnection which creates all the necessary
QuickFAST objects (as described by a DecoderConfiguration),
links them together, and makes the results available
to the application.
With this change, the InterpretApplication collapses into:
Populate a DecoderConfiguration from command line arguments
Create a MessageBuilder to accept decoded information
Configure a DecoderConnection
using the MessageBuilder and the DecoderConfiguration
Run the DecoderConnection
The DecoderConfiguration and DecoderConnection
are available for use in other applications which was the
point of the exercise.
Tue Feb 23 19:48:26 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/Context.h:
Suppress a silly warning from msvc
* src/Communication/MulticastReceiverHandle.h:
Fix a documentation error
* src/Examples/InterpretApplication/InterpretApplication.h:
* src/Examples/InterpretApplication/InterpretApplication.cpp:
Internal reorg to prepare for some future work. Nothing visible.
Mon Feb 22 23:44:57 UTC 2010 Dale Wilson <[email protected]>
* src/Common/ByteSwapper.h:
* src/Common/ByteSwapper.cpp:
Consolidating byte-order support.
* src/Codecs/DataSource.cpp:
* src/Codecs/FixedSizeHeaderAnalyzer.cpp:
* src/Codecs/StreamingAssembler.cpp:
* src/Common/QuickFASTPch.h:
* src/Communication/Assembler.h:
* src/Communication/AsynchReceiver.h:
* src/Communication/LinkedBuffer.h:
* src/Communication/MulticastReceiverHandle.h:
* src/Communication/PCapReader.h:
* src/Communication/Receiver.h:
* src/Communication/SynchReceiver.h:
* src/Communication/TCPReceiver.h:
* src/Doxyfile:
Updating doxygen comments after recent Receiver refactoring.
Mon Feb 22 18:50:18 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/StreamingAssembler.cpp:
* src/Communication/AsioService.h:
* src/Communication/AsynchReceiver.h:
* src/Communication/AsynchReceiver_fwd.h:
* src/Communication/MulticastReceiver.h:
* src/Communication/PCapFileReceiver.h:
* src/Communication/RawFileReceiver.h:
* src/Communication/Receiver.h:
* src/Communication/SynchReceiver.h:
* src/Communication/SynchReceiver_fwd.h:
* src/Communication/TCPReceiver.h:
Refactor Receiver into
Receiver base class;
AsynchReceiver;
(Multicast & TCPIP)
SynchReceiver;
(Raw and PCap)
This eliminates excess baggage and makes it more clear
which methods should be used by which derived classes.
Mon Feb 22 16:55:06 UTC 2010 Dale Wilson <[email protected]>
* src/Examples/InterpretApplication/InterpretApplication.cpp:
* src/Examples/TutorialApplication/TutorialApplication.h:
* src/Examples/TutorialApplication/TutorialApplication.cpp:
gcc build errors. Apparently gcc and I disagree on the meaning
of reinterpret_cast. I'll let it have its way for now.
Fri Feb 19 19:38:05 UTC 2010 Dale Wilson <[email protected]>
* src/Communication/Assembler.h:
* src/Codecs/MessagePerPacketAssembler.h:
* src/Codecs/MessagePerPacketAssembler.cpp:
* src/Codecs/StreamingAssembler.cpp:
Add support for decoder options: strict and reset
* src/Common/QuickFASTPch.h:
* src/Messages/SingleValueBuilder.h:
Add doxygen documentation for the Communication namespace
Eliminate doxygen warnings for SingleValueBuilder.
* src/Communication/PCapFileReceiver.h:
* src/Communication/RawFileReceiver.h:
Make the run() method public,
but the filllBuffer() method private
* src/Examples/InterpretApplication/main.cpp:
Remove some debugging code
* src/Examples/Examples.mpc:
* src/Examples/TutorialApplication:
* src/Examples/TutorialApplication/TutorialApplication.h:
* src/Examples/TutorialApplication/TutorialApplication.cpp:
* src/Examples/TutorialApplication/main.cpp:
Add a tutorial application intended to be a gentle introduction
to "how to use the QuickFAST decoder" in a real application.
This is a companion to a new Wiki page that will appear
shortly.
Fri Feb 19 16:02:10 UTC 2010 Dale Wilson <[email protected]>
* src/Examples/InterpretApplication/InterpretApplication.cpp:
some people type better than others (sigh)
Fri Feb 19 15:47:08 UTC 2010 Dale Wilson <[email protected]>
* src/Examples/InterpretApplication/InterpretApplication.cpp:
gcc build error.
* src/Codecs/Context.h:
* src/Codecs/Context.cpp:
* src/Codecs/Decoder.h:
* src/Codecs/FixedSizeHeaderAnalyzer.h:
* src/Codecs/MessagePerPacketAssembler.h:
* src/Codecs/StreamingAssembler.h:
* src/Communication/PCapFileReceiver.h:
* src/Communication/RawFileReceiver.h:
* src/Messages/SpecialAccessors.h:
Polishing Doxygen comments.
Thu Feb 18 22:42:35 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/Context.h:
* src/Codecs/Context.cpp:
* src/Codecs/DataSource.cpp:
* src/Codecs/Decoder.h:
* src/Codecs/Decoder.cpp:
* src/Codecs/FastEncodedHeaderAnalyzer.h:
* src/Codecs/FixedSizeHeaderAnalyzer.h:
* src/Codecs/GenericMessageBuilder.cpp:
* src/Codecs/HeaderAnalyzer.h:
* src/Codecs/HeaderAnalyzer_fwd.h:
* src/Codecs/MessagePerPacketAssembler.h:
* src/Codecs/MessagePerPacketAssembler.cpp:
* src/Codecs/MessagePerPacketAssembler_fwd.h:
* src/Codecs/MulticastDecoder.h:
* src/Codecs/MulticastDecoder.cpp:
* src/Codecs/NoHeaderAnalyzer.h:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/StreamingAssembler.h:
* src/Codecs/StreamingAssembler.cpp:
* src/Common/Exceptions.h:
* src/Common/WorkingBuffer.cpp:
* src/Communication/AsioService.h:
* src/Communication/Assembler.h:
* src/Communication/Assembler_fwd.h:
* src/Communication/MulticastReceiver.h:
* src/Communication/MulticastReceiverHandle.h:
* src/Communication/MulticastReceiverHandle.cpp:
* src/Communication/PCapFileReceiver.h:
* src/Communication/PCapFileReceiver_fwd.h:
* src/Communication/RawFileReceiver.h:
* src/Communication/RawFileReceiver_fwd.h:
* src/Communication/Receiver.h:
* src/Communication/TCPReceiver.h:
* src/Examples/InterpretApplication/InterpretApplication.h:
* src/Examples/InterpretApplication/InterpretApplication.cpp:
* src/Examples/InterpretApplication/main.cpp:
* src/Messages/FieldSet.cpp:
* src/Messages/SingleValueBuilder.h:
* src/Application/FastConnection.h:
* src/Application/FastConnection.cpp:
* src/Codecs/BlockedStreamQueueService.h:
* src/Codecs/BlockedStreamQueueService.cpp:
* src/Codecs/MessagePerPacketQueueService.h:
* src/Codecs/MessagePerPacketQueueService.cpp:
* src/Codecs/MessagePerPacketQueueService_fwd.h:
* src/Communication/BufferQueueService.h:
* src/Communication/BufferQueueService_fwd.h:
This is the major check-in I mentioned on the QuickFAST_users list.
Refactor the infrastructure that receives incoming FAST data and passes
it to the decoder to support a wide variety of environments.
As of this checkin, there are four roles that need to be filled
and several actors available for each role:
o Receiver -- accepts incoming data into buffers.
-- MulticastReceiver
-- TCPIPReceiver
-- RawFileReceiver
-- PCapFileReceiver
o Assembler -- Organizes the incoming buffers and delivers the data
to the decoder
-- MessagePerPacketAssembler
-- StreamingAssembler
o HeaderAnalyzer -- Examines the beginning of each incoming message
for header information.
-- NoHeaderAnalyzer
-- FixedSizeHeaderAnalyzer
-- FastEncodedHeaderAnalyzer
-- custom header analyzer implement the HeaderAnalyzer interface.
o MessageBuilder -- Accepts the decoded data and delivers it to the
client application.
-- GenericMessageBuilder
-- custom message builders implement the ValueMessageBuilder interface.
The InterpretApplication has been reworked so that any combination of
the available actors may be used together in these roles.
Because this check-in may break existing code, the repository was tagged
before the checkin for users who wish to stay with the old version
(for a while. Please don't stay there forever!) The URL for this tag
is //quickfast.googlecode.com/svn/tags/BeforeReceiverAssemblerAnalyzerRework
Wed Feb 17 22:09:28 UTC 2010 Dale Wilson <[email protected]>
* src/Communication/Receiver.h:
Bad test for success of queue service caused the receiver to shut down early.
Mon Feb 15 20:30:49 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionInteger.h:
* src/Tests/testFieldOperations.cpp:
Error decoding default uint32 -- field was interpreted as signed.
Added unit test for this.
Mon Feb 15 15:54:23 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionGroup.h:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionSequence.h:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/StreamingAssembler.h:
* src/Tests/testXMLTemplateParser.cpp:
Fix a problem handling PMAP for a sequence. This problem
could manifest itself in a number of ways including:
Expecting a pmap for a seqence entry when none is required.
Getting the pmap "out of sync" while decoding sequence entries.
Add a unit test for the problem to testXMLTemplateParser.cpp.
Wed Feb 10 21:17:12 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FastEncodedHeaderAnalyzer.h:
* src/Codecs/FastEncodedHeaderAnalyzer.cpp:
* src/Codecs/FixedSizeHeaderAnalyzer.h:
* src/Codecs/FixedSizeHeaderAnalyzer.cpp:
* src/Codecs/HeaderAnalyzer.h:
* src/Codecs/HeaderAnalyzer_fwd.h:
* src/Codecs/MessagePerPacketQueueService.h:
* src/Codecs/MessagePerPacketQueueService.cpp:
* src/Codecs/MulticastDecoder.h:
* src/Codecs/MulticastDecoder.cpp:
* src/Codecs/NoHeaderAnalyzer.h:
Define interface HeaderAnalyzer to cope with the headers, aka preambles,
aka block sizes that frame FAST encoded messages.
Add three implementations:
NoHeaderAnalyzer for FAST data with no framing information.
FastEncodedHeaderAnalyzer for messages that include one or
more FAST-encoded fields in the header.
FixedSizeHeaderAnalyzer for messages that have a fixed size
unencoded header.
Among other things this provide the hooks necessary to cope with
CME's FIX/FAST 2.0 changes.
Wed Feb 10 16:22:56 UTC 2010 Dale Wilson <[email protected]>
* setup.cmd:
Add message about customizing setup.cmd
* src/Codecs/BlockedStreamQueueService.h:
Fix linux build warning.
* src/Codecs/MessagePerPacketQueueService.h:
* src/Codecs/MessagePerPacketQueueService.cpp:
MessagePerPacketQueueService now serves as its own data source
rather than delegating to DataSourceBuffer
Wed Feb 10 15:49:34 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/BlockedStreamQueueService.h:
* src/Codecs/BlockedStreamQueueService.cpp:
* src/Codecs/DataSource.h:
* src/Codecs/DataSource.cpp:
* src/Codecs/DataSourceBlockedStream.h:
* src/Codecs/DataSourceBlockedStream.cpp:
* src/Codecs/DataSourceBuffer.h:
* src/Codecs/DataSourceBuffer.cpp:
* src/Codecs/DataSourceBufferedBlockedStream.h:
* src/Codecs/DataSourceBufferedBlockedStream.cpp:
* src/Codecs/DataSourceBufferedStream.h:
* src/Codecs/DataSourceBufferedStream.cpp:
* src/Codecs/DataSourceStream.h:
* src/Codecs/DataSourceStream.cpp:
* src/Codecs/DataSourceString.h:
* src/Codecs/DataSourceString.cpp:
DataSource manages a buffer/count rather than a single byte at a time
to avoid virtual call for every byte. New getByte method should be
inline on release builds.
* src/Communication/BufferQueueService.h:
* src/Codecs/FieldOpNop.h:
* src/Codecs/SegmentBody.h:
Eliminiate doxygen warnings
Tue Feb 9 18:49:55 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/BlockedStreamQueueService.h:
* src/Codecs/BlockedStreamQueueService.cpp:
* src/Codecs/Context.h:
* src/Codecs/DataSourceBufferedBlockedStream.h:
* src/Codecs/DataSourceBufferedBlockedStream.cpp:
* src/Codecs/MessagePerPacketQueueService.h:
* src/Codecs/MessagePerPacketQueueService.cpp:
* src/Codecs/MessagePerPacketQueueService_fwd.h:
* src/Codecs/MulticastDecoder.h:
* src/Codecs/MulticastDecoder.cpp:
* src/Common/Exceptions.h:
* src/Communication/BufferQueueService.h:
* src/Communication/BufferQueueService_fwd.h:
* src/Communication/LinkedBuffer.h:
* src/Communication/LinkedBuffer_fwd.h:
* src/Communication/MulticastReceiver.h:
* src/Communication/MulticastReceiverHandle.h:
* src/Communication/MulticastReceiverHandle.cpp:
* src/Communication/MulticastReceiver_fwd.h:
* src/Communication/Receiver.h:
* src/Communication/Receiver_fwd.h:
* src/Communication/TCPReceiver.h:
* src/Communication/TCPReceiver_fwd.h:
* src/Examples/InterpretApplication/main.cpp:
* src/Examples/PerformanceTest/NullMessage.h:
* src/Examples/PerformanceTest/NullMessage.cpp:
* src/Examples/PerformanceTest/PerformanceTest.cpp:
* src/Tests/testCommon.cpp:
* src/Tests/testFieldOperations.cpp:
* src/Codecs/MessagePerPacketBufferConsumer.h:
* src/Codecs/MessagePerPacketBufferConsumer.cpp:
* src/Codecs/MulticastReceiver.h:
* src/Codecs/MulticastReceiverHandle.h:
* src/Codecs/MulticastReceiverHandle.cpp:
* src/Codecs/MulticastReceiver_fwd.h:
* src/Communication/BufferConsumer.h:
* src/Communication/BufferConsumer_fwd.h:
* src/Communication/BufferGenerator.h:
* src/Communication/BufferGenerator_fwd.h:
Rework the Communication support to add preliminary support for TCP/IP.
TCP/IP support is untested and undocumented as of this checkin! Use at your own risk.
Part of this work involved moving MulticastReceiver to the Communication
namespace which may break existing code (note the MulticastDecoder has
not moved and most users should be interacting at this level or higher.)
A new tag was created before this check in:
http://quickfast.googlecode.com/svn/tags/BeforeCommunicationReceiver
Heads up: I expect to do more in this area. In particular I want to add
support for CME's new FIX/FAST 2.0. I don't anticipate that this will
break anything else, but it's possible.
Thu Feb 4 16:13:28 UTC 2010 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionAscii.cpp:
* src/Tests/testFieldOperations.cpp: