-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathChangeLog
More file actions
5618 lines (4930 loc) · 218 KB
/
Copy pathChangeLog
File metadata and controls
5618 lines (4930 loc) · 218 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
Thu Apr 2 19:33:42 UTC 2009 Dale Wilson <[email protected]>
* src/Common/AtomicOps.h:
* src/Common/MemoryCache.h:
Add a memory cache: avoids OS level alloc/free for common buffer sizes.
* src/Codecs/Context.h:
* src/Codecs/Context.cpp:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/FieldInstructionTemplateRef.cpp:
* src/Codecs/MulticastDecoder.cpp:
* src/Codecs/SynchronousDecoder.h:
* src/Examples/PerformanceTest/PerformanceTest.cpp:
* src/Messages/FieldSet.h:
* src/Messages/FieldSet.cpp:
* src/Messages/Message.h:
* src/Messages/Message.cpp:
* src/Messages/MessageField.h:
* src/Tests/testFieldInstructions.cpp:
* src/Tests/testFieldOperations.cpp:
* src/Tests/testRoundTrip.cpp:
* src/Codecs/SynchronousDecoder.cpp:
Removed this file.
Tue Mar 31 14:34:05 UTC 2009 Dale Wilson <[email protected]>
* m.cmd:
add -toolsversion=3.5 QuickFAST.mwc to command line.
This is a temporary fix to avoid having to upgrade the generated csproj files for a .net build.
It will be ignored unless the following patch is applied to %MPC_ROOT\templates\vc8csharp.mpd
Index: vc8csharp.mpd
===================================================================
--- vc8csharp.mpd (revision 1527)
+++ vc8csharp.mpd (working copy)
@@ -1,4 +1,4 @@
-n++<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+n++<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"<%if(toolsversion)%> ToolsVersion="<%toolsversion%>"<%endif%>>
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProductVersion><%prversion("8.0.50727")%></ProductVersion>
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.mpc:
Build this after DotNetExampleCode
Mon Mar 30 22:16:43 UTC 2009 Trevor Fields <[email protected]>
* src/DotNet/DataDestination.h:
* src/DotNet/DataSourceBuffered.cpp:
* src/DotNet/Stdafx.h:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
Moved the readbyte method into the native code compilation for speed.
* src/DotNet/SynchronousDecoder.cpp:
Minor clean up.
Fri Mar 27 06:33:29 UTC 2009 Trevor Fields <[email protected]>
* src/DotNet/DataSource.cpp:
* src/DotNet/DataSource.h:
* src/DotNet/DataSourceBuffered.cpp:
* src/DotNet/DataSourceBuffered.h:
* src/DotNet/Decoder.h:
* src/DotNet/SynchronousDecoder.cpp:
* src/DotNet/SynchronousDecoder.h:
Added a buffered data source that reads all the data from the managed data stream
into an unmanaged data buffer to avoid the managed/unmanged boundary transition
during the decode.
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
Peform timing operations twice to remove the affect of the JIT compilation.
* src/DotNetExamples/DotNetExampleCode/DotNetExampleCode.mpc:
* src/DotNetTests/DecodingPerformance/DecodingPerformanceDotNet.mpc:
Added missing dotnet feature.
Thu Mar 26 16:01:36 UTC 2009 Dale Wilson <[email protected]>
* QuickFASTDotNetApplication.mpb:
* QuickFASTDotNetExample.mpb:
* src/DotNet/QuickFASTDotNet.mpc:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.mpc:
* src/DotNetTests/QuickFASTDotNetTests.mpc:
Dot NET support requires dotnet feature.
Wed Mar 25 20:35:43 UTC 2009 Trevor Fields <[email protected]>
* QuickFAST.mwc:
* QuickFASTDotNetExample.mpb:
* src/DotNetExamples/DotNetExampleCode:
* src/DotNetExamples/DotNetExampleCode/DotNetExampleCode.mpc:
* src/DotNetExamples/DotNetExampleCode/Properties:
* src/DotNetExamples/DotNetExampleCode/Properties/AssemblyInfo.cs:
* src/DotNetExamples/DotNetExampleCode/StopWatch.cs:
* src/DotNetExamples/PerformanceTestDotNet/StopWatch.cs:
Moved the StopWatch code into a new shared library for the dot net
examples to use.
* src/DotNetExamples/PerformanceTestDotNet/MessageCounter.cs:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
Namespace changes for the new shared library.
* src/DotNetTests/DecodingPerformance:
* src/DotNetTests/DecodingPerformance/DecodingPerformance.cs:
* src/DotNetTests/DecodingPerformance/DecodingPerformanceDotNet.mpc:
* src/DotNetTests/DecodingPerformance/MessageProcessor.cs:
* src/DotNetTests/DecodingPerformance/Properties:
* src/DotNetTests/DecodingPerformance/Properties/AssemblyInfo.cs:
Added beginning of test to test performance of decoding and
extrating data from the messages.
Mon Mar 23 19:32:38 UTC 2009 Trevor Fields <[email protected]>
* src/DotNet/Field.cpp:
* src/DotNet/Field.h:
* src/DotNet/Stdafx.h:
Added code to handle the new types for ARCA formatted data.
* src/DotNet/SynchronousDecoder.cpp:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
Optimizations to improve time performance.
Thu Mar 19 20:17:03 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionInteger.h:
comment about bogus gcc warnings: see GCC Bugzilla Bug 11856
* src/Examples/Examples.mpc:
Report from ICAP that boost-system is needed for gcc on solaris builds.
Thu Mar 19 14:58:55 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionBlob.cpp:
Unit test detected failure. Missing check to see if inital value was set.
Wed Mar 18 20:58:08 UTC 2009 Dale Wilson <[email protected]>
* src/QuickFAST.mpc:
* QuickFASTApplication.mpb:
Disable gcc warning about unreachable code
* data/ARCATemplates.xml:
Move comment inside. XERCES doesn't like leading comments.
* src/Codecs/Context.cpp:
* src/Codecs/DataDestinationString.h:
* src/Codecs/DataSourceBuffer.h:
* src/Codecs/DataSourceBufferedStream.h:
* src/Codecs/DataSourceString.h:
* src/Codecs/DecodedFields.h:
* src/Codecs/DecodedFields_fwd.h:
* src/Codecs/Decoder.h:
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstructionAscii.h:
* src/Codecs/FieldInstructionBitMap.h:
* src/Codecs/FieldInstructionBitMap.cpp:
* src/Codecs/FieldInstructionBlob.h:
* src/Codecs/FieldInstructionByteVector.h:
* src/Codecs/FieldInstructionFiller.h:
* src/Codecs/FieldInstructionGroup.h:
* src/Codecs/FieldInstructionSequence.h:
* src/Codecs/FieldInstructionTemplateRef.h:
* src/Codecs/FieldInstructionUtf8.h:
* src/Codecs/FieldOpArcaNop.h:
* src/Codecs/FieldOpNop.h:
* src/Codecs/FieldOpTail.h:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/SynchronousDecoder.h:
* src/Codecs/SynchronousDecoder.cpp:
* src/Codecs/Template.cpp:
* src/Codecs/TemplateRegistry.h:
* src/Codecs/XMLTemplateParser.cpp:
* src/Common/BitMap.h:
* src/Common/Bitmap.cpp:
* src/Examples/Examples/CommandArgParser.cpp:
* src/Examples/Examples/MessageInterpreter.cpp:
* src/Examples/InterpretFAST/InterpretFAST.cpp:
* src/Examples/PerformanceTest/MessageCounter.cpp:
* src/Examples/PerformanceTest/NullMessage.h:
* src/Examples/PerformanceTest/NullMessage.cpp:
* src/Examples/PerformanceTest/PerformanceTest.h:
* src/Examples/PerformanceTest/PerformanceTest.cpp:
* src/Messages/DecodedFields.h:
* src/Messages/Field.h:
* src/Messages/Field.cpp:
* src/Messages/FieldAscii.h:
* src/Messages/FieldAscii.cpp:
* src/Messages/FieldBitMap.h:
* src/Messages/FieldBitmap.cpp:
* src/Messages/FieldByteVector.h:
* src/Messages/FieldDecimal.h:
* src/Messages/FieldInt16.h:
* src/Messages/FieldInt32.h:
* src/Messages/FieldInt64.h:
* src/Messages/FieldInt8.h:
* src/Messages/FieldSet.h:
* src/Messages/FieldUInt16.h:
* src/Messages/FieldUInt32.h:
* src/Messages/FieldUInt64.h:
* src/Messages/FieldUInt8.h:
* src/Messages/FieldUtf8.h:
* src/Messages/Message.h:
Add support for ARCA bitfields.
Fix some formatting issues.
Wed Mar 18 19:21:13 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Context.cpp
* src/Messages/Field.h
* src/QuickFAST.mpc
gcc build error: undefined intrusive_ptr_ functions
Also disabled unreachable code warning because the
unreachable code is intentional based on template
arguments.
Wed Mar 18 19:21:25 UTC 2009 Trevor Fields <[email protected]>
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
Fixed cleanup when using an output file.
Wed Mar 18 18:04:13 UTC 2009 Dale Wilson <[email protected]>
* src/Examples/Examples/MessageInterpreter.cpp
* src/Examples/Examples/MessageInterpreter.h
More gcc build errors.
Wed Mar 18 16:42:49 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Encoder.h
* src/Codecs/PresenceMap.cpp
* src/Codecs/Decoder.h
* src/Messages/Field.h
* m.sh
Fixing gcc build errors
Mo Mar 16 23:25:54 UTC 2009 Trevor Fields <[email protected]>
* QuickFASTDotNetApplication.mpb:
* QuickFASTDotNetExample.mpb:
Added projects for Dot Net applications.
* src/DotNet/SynchronousDecoder.cpp:
* src/DotNet/SynchronousDecoder.h:
Added a synchronous decoder for the Dot Net wrapper.
* src/DotNet/Decoder.cpp:
* src/DotNet/Decoder.h:
* src/DotNet/Message.cpp:
* src/DotNet/Message.h:
* src/DotNet/TemplateRegistry.h:
Changes to support the Performance test and increase the exposed
information and configuration options.
* QuickFAST.mwc:
* src/DotNetExamples:
* src/DotNetExamples/PerformanceTestDotNet:
* src/DotNetExamples/PerformanceTestDotNet/MessageCounter.cs:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.cs:
* src/DotNetExamples/PerformanceTestDotNet/PerformanceTestDotNet.mpc:
* src/DotNetExamples/PerformanceTestDotNet/Properties:
* src/DotNetExamples/PerformanceTestDotNet/Properties/AssemblyInfo.cs:
* src/DotNetExamples/PerformanceTestDotNet/StopWatch.cs:
Added C sharp version of the Performance Test.
Fri Mar 13 19:56:06 UTC 2009 Dale Wilson <[email protected]>
* .:
* Doc:
* Output/TestData:
* data:
* data/ARCATemplates.xml:
* data/arca.dat:
* data/arca.fast:
* data/arca_files_notice:
* src:
Add svn:ignore properties as appropriate
Add arca test data to repository.
This data was distributed by FIXProtocol.org as part of fastapi-1.0
See arca_files_notice for the license that applies to the arca test data.
Fri Mar 13 19:23:07 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionFiller.h:
* src/Codecs/FieldInstructionFiller.cpp:
* src/Codecs/FieldOpArcaNop.h:
* src/Codecs/XMLTemplateParser.cpp:
Add new field instruction <filler name= id= > that consumes a PMAP bit,
but does not define a field.
Add a new field operation <arca_nop/> that consumes a PMAP bit, but otherwise
acts like a NOP [unspecified] instruction.
These are needed to decode ARCA data streams.
Fri Mar 13 17:14:57 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstructionInt16.h:
* src/Codecs/FieldInstructionInt8.h:
* src/Codecs/FieldInstructionUInt16.h:
* src/Codecs/FieldInstructionUInt8.h:
* src/Codecs/XMLTemplateParser.cpp:
* src/Common/Types.h:
* src/Messages/Field.h:
* src/Messages/Field.cpp:
* src/Messages/FieldInt16.h:
* src/Messages/FieldInt16.cpp:
* src/Messages/FieldInt8.h:
* src/Messages/FieldInt8.cpp:
* src/Messages/FieldUInt16.h:
* src/Messages/FieldUInt16.cpp:
* src/Messages/FieldUInt8.h:
* src/Messages/FieldUInt8.cpp:
* src/Tests/testFieldInstructions.cpp:
* src/Tests/testFieldOperations.cpp:
Add support for nonstandard integral field types used by ARCA:
int8, uInt8, int16, uInt16
Fri Mar 13 14:29:22 UTC 2009 Dale Wilson <[email protected]>
* .:
* src/Codecs/Decoder.h:
* src/Codecs/Decoder.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/FieldInstructionGroup.h:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/FieldInstructionSequence.h:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/FieldInstructionTemplateRef.h:
* src/Codecs/FieldInstructionTemplateRef.cpp:
* src/Codecs/FieldOp.h:
* 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/XMLTemplateParser.cpp:
* src/Examples/MulticastInterpreter:
* src/Messages/DecodedFields.h:
* src/Messages/DecodedFields_fwd.h:
* src/Messages/FieldSet.h:
* src/Messages/FieldSet.cpp:
* src/Tests/FieldInstructionMock.h:
Fix compiler errors in Issues #9 and #10
Merge changes from FieldSetTemplate branch into trunk.
-- Create the "DecodedFields.h" interface to allow decodeded
messages to be sent to something other than Messages::Message
Messages::Message implements DecodedFields.
Applications can avoid the overhead of a generic message structure
by providing their own implementation of DecodedFields.
Tue Mar 10 17:53:03 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/TemplateRegistry.cpp:
Issue #8: findNamedTemplate was always returning true.
Mon Mar 9 15:47:51 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Context.h:
* src/Codecs/MessageConsumer.h:
* src/Codecs/MulticastDecoder.h:
* src/Codecs/MulticastDecoder.cpp:
* src/Examples/Examples/MessageInterpreter.h:
* src/Examples/Examples/MessageInterpreter.cpp:
* src/Examples/PerformanceTest/MessageCounter.h:
* src/Examples/PerformanceTest/MessageCounter.cpp:
* src/Messages/FieldIdentity_fwd.h:
* src/Messages/Field_fwd.h:
Add a stop() method to MulticastDecoder in hopes of shutting down cleanly.
Add additional methods to MessageConsumer to report decoding events including
the end of the decoding process.
Fri Mar 6 21:02:07 UTC 2009 Dale Wilson <[email protected]>
* src/Tests/testRoundTrip.cpp:
Remove some debugging messages from testRoundTrip.cpp
Verify that Issue #5 was fixed by the previous check-in.
Fri Mar 6 20:42:11 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Context.h:
* src/Codecs/Context.cpp:
* src/Codecs/Decoder.cpp:
* src/Codecs/Encoder.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/PresenceMap.cpp:
* src/Tests/testRoundTrip.cpp:
Round trip was passing in debug, but failing in release.
Turns out there were two problems:
an off-by-one bug in the presence map that stored uninitialized data.
the encoder wasn't using a presence map bit for the template ID.
While I was fixing these, I improved the encoding/decoding exception messages
to include the field name where the problem was encountered (most of the time, there
are a couple of places where I would have had to incur a performance hit to make
the field name available, so those are still un-named.
Note: this might be Issue #5, but I haven't verified it yet.
The testRoundTrip revealed the problem.
* src/Messages/FieldSet.cpp:
Copy constructor copies application type and application type namespace.
Issue # 6
testRoundTrip has been extended so that it would have detected the problem.
Fri Feb 27 01:14:09 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionDecimal.h:
* src/Codecs/FieldInstructionDecimal.cpp:
Try for a little more speed on Decimal NOP encode/decode
* src/Common/Profiler.h:
Move the enable/disable symbol to the top of the file so I can find it.
* src/Messages/FieldIdentity.h:
* src/Messages/FieldIdentity.cpp:
Fix a memory leak; uninitialized refcount.
Thu Feb 26 23:44:29 UTC 2009 Dale Wilson <[email protected]>
* src/Tests/testRoundTrip.cpp:
Tests Issue #2.
Checks to be sure the data made it round-trip intact.
Thu Feb 26 19:14:13 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Context.cpp:
* src/Codecs/Decoder.cpp:
* src/Codecs/Encoder.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Messages/FieldAscii.cpp:
* src/Messages/FieldGroup.cpp:
* src/Messages/FieldIdentity.h:
* src/Messages/FieldSequence.cpp:
* src/Messages/FieldSet.h:
* src/Messages/FieldSet.cpp:
* src/Messages/MessageField.h:
Address encoding problems reported in Issues #3 and #4.
* src/Tests/testRoundTrip.cpp:
Add unit test to reveal problems form Issues #1, #3, and #4
Thu Feb 26 01:19:24 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Encoder.cpp:
* src/Codecs/FieldInstructionSequence.cpp:
Issue #1: Sequence encoding includes presence map when it shouldn't
TODO: There should be a unit test for this but there isn't.
Thu Feb 26 00:42:45 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/PresenceMap.cpp:
Issue #3: Infinite loop encoding presence map.
* src/Tests/testPresenceMap.cpp:
Add test for issue #3
* src/Tests/testXMLTemplateParser.cpp:
Renable test in spite of memory leak.
Tue Feb 24 15:31:23 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Context.h:
* src/Codecs/Decoder.cpp:
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* 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/XMLTemplateParser.cpp:
* src/DotNet/FieldIdentity.h:
* src/DotNet/FieldIdentity.cpp:
* src/DotNet/FieldSet.cpp:
* src/DotNet/UnmanagedPtr.h:
* src/Examples/Examples/MessageInterpreter.h:
* src/Examples/Examples/MessageInterpreter.cpp:
* src/Examples/MulticastInterpreter:
* src/Examples/MulticastInterpreter/MulticastInterpreter.h:
* src/Examples/MulticastInterpreter/MulticastInterpreter.cpp:
* src/Messages/Field.h:
* src/Messages/Field.cpp:
* src/Messages/FieldIdentity.h:
* src/Messages/FieldIdentity.cpp:
* src/Messages/FieldIdentity_fwd.h:
* src/Messages/FieldSet.h:
* src/Messages/FieldSet.cpp:
* src/Messages/Field_fwd.h:
* src/Messages/MessageField.h:
* src/Tests/testFieldInstructions.cpp:
* src/Tests/testXMLTemplateParser.cpp:
Merged Branch FieldIdentityPtr into trunk.
Tue Feb 24 15:11:47 UTC 2009 Dale Wilson <[email protected]>
IN BRANCH FieldIdentityPtr
* src/Examples/Examples/MessageInterpreter.h:
* src/Examples/Examples/MessageInterpreter.cpp:
* src/Messages/Field.h:
* src/Messages/Field.cpp:
* src/Messages/FieldIdentity.h:
* src/Messages/FieldIdentity.cpp:
* src/Messages/FieldIdentity_fwd.h:
Inline code for intrusive Field pointers.
Fri Feb 20 22:07:39 UTC 2009 Curt Campbell <[email protected]>
IN BRANCH FieldIdentityPtr
* src/DotNet/FieldIdentity.cpp
* src/DotNet/FieldIdentity.h
* src/DotNet/FieldSet.cpp
* src/DotNet/UnmanagedPtr.h
Fixed broken build due to use of intrusive pointer
in last check-in.
Wed Feb 18 17:17:39 UTC 2009 Dale Wilson <[email protected]>
IN BRANCH FieldIdentityPtr
* src/Codecs/Context.h:
* src/Codecs/Decoder.cpp:
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* 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/XMLTemplateParser.cpp:
* src/Examples/Examples/MessageInterpreter.h:
* src/Examples/Examples/MessageInterpreter.cpp:
* src/Examples/PerformanceTest/PerformanceTest.cpp:
* src/Messages/Field.h:
* src/Messages/FieldIdentity.h:
* src/Messages/FieldIdentity.cpp:
* src/Messages/FieldIdentity_fwd.h:
* src/Messages/FieldSet.h:
* src/Messages/FieldSet.cpp:
* src/Messages/Field_fwd.h:
* src/Messages/MessageField.h:
* src/Tests/testFieldInstructions.cpp:
* src/Tests/testXMLTemplateParser.cpp:
Switch to intrusive pointer for FieldIdentity
Wed Feb 18 17:37:14 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionBlob.cpp:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/FieldInstructionTemplateRef.cpp:
Encoding/decoding errors are reported to context rather than thrown
to support run-time configurable strictness.
* src/Examples/PerformanceTest/PerformanceTest.cpp:
Fix a typo in -profiler
Tue Feb 17 18:17:12 UTC 2009 Dale Wilson <[email protected]>
* bin/setdebug.cmd:
* bin/setrelease.cmd:
* setup.cmd:
Putting the executables in Output/Debug and Output/Release made .NET happy,
but it made it harder to switch between debug and release executables.
This change in setup.cmd, along with new command files, setdebug and setrelease
addresses that.
* src/Messages/FieldSet.cpp:
Fixed a memory leak.
* src/Tests/testFieldInstructions.cpp:
Added a call to _CrtSetBreakAlloc on Visual Studio builds to help diagnose memory leaks.
Mon Feb 16 18:12:12 UTC 2009 Curt Campbell <[email protected]>
* src/DotNet/DebugView.cpp
* src/DotNet/DebugView.h
Removed from source control
* src/DotNet/FieldSet.h
* src/DotNet/Sequence.h
Removed references to DebugView.h
Mon Feb 16 15:24:03 UTC 2009 Dale Wilson <[email protected]>
* setup.cmd:
Add Output... to path
* 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/TemplateRegistry.cpp:
Reduce size of dictionary by eliminating unused entries.
Fri Feb 13 23:16:01 UTC Curt Campbell <[email protected]>
* Output/TestData
* Output/TestData/fixfast.dat
* Output/TestData/marketdata.out
* Output/TestData/templates.xml
Added to source control.
* src/DotNet/Field.cpp
Fixed the cause of a class cast exception which caused a unit test to fail.
* src/DotNetTests/EncodeDecodeTests.cs
Corrected a spelling error on a test description.
* src/DotNetTests/TestData/fixfast.dat
* src/DotNetTests/TestData/marketdata.out
* src/DotNetTests/TestData/templates.xml
* src/DotNetTests/TestData/testoutput.dat
Removed from source control.
Fri Feb 13 19:33:42 UTC 2009 Curt Campbell <[email protected]>
* QuickFASTExample.mpb
* src/DotNet/QuickFASTDotNet.mpc
* src/DotNetTests/QuickFASTDotNetTests.mpc
* src/QuickFAST.mpc
Changed the output directories on the remaining projects
for versions compiled under VC8 and VC9. Output
files are now placed in the Output/Debug and
Output/Release directories.
* src/DotNet/FieldSet.cpp
* src/DotNet/FieldSet.h
Fixed a compiler error introduced at some point when
setApplicationType was modified on the the unmanaged
FieldSet class.
Thu Feb 12 18:37:07 UTC 2009 Dale Wilson <[email protected]>
* QuickFAST.mpc:
Removed this file. It was unused.
Mon Feb 9 17:05:00 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Context.h:
* src/Codecs/Context.cpp:
* src/Codecs/DictionaryIndexer.h:
* src/Codecs/DictionaryIndexer.cpp:
* src/Codecs/DictionaryIndexer_fwd.h:
* src/Codecs/FieldInstruction.h:
* src/Codecs/FieldInstruction.cpp:
* src/Codecs/FieldInstructionAscii.cpp:
* src/Codecs/FieldInstructionBlob.cpp:
* src/Codecs/FieldInstructionDecimal.h:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionGroup.h:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/FieldInstructionSequence.h:
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/FieldInstructionTemplateRef.cpp:
* src/Codecs/FieldOp.h:
* src/Codecs/FieldOp.cpp:
* src/Codecs/SchemaElement.h:
* src/Codecs/SchemaElement.cpp:
* src/Codecs/SegmentBody.h:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/TemplateRegistry.h:
* src/Codecs/TemplateRegistry.cpp:
* src/Codecs/XMLTemplateParser.cpp:
* src/Messages/FieldSet.h:
* src/Tests/testFieldInstructions.cpp:
* src/Tests/testFieldOperations.cpp:
* src/Codecs/Dictionary.h:
* src/Codecs/Dictionary.cpp:
* src/Codecs/Dictionary_fwd.h:
Reworked dictionary support to get the name inheritence right
and improve performance.
{warning, this revision has some build-time conflict between the .NET and C++ builds
Curt is working on it. If it doesn't build on C++, revert the MPC/MPB/MPW files to rev 46
Or just wait for Curt's fix.}
Fri Feb 6 23:37:21 UTC 2009 Curt Campbell <[email protected]>
* QuickFastDotNetTests.nunit
Added a NUnit file for .NET projects to source control.
* src/DotNet/Decimal.h
* src/DotNet/Sequence.cpp
* src/DotNet/Sequence.h
Fixe some compile time warnings.
* QuickFASTApplication.mpb
* src/DotNet/QuickFASTDotNet.mpc
* src/DotNetTests/QuickFASTDotNetTests.mpc
* src/QuickFAST.mpc
Changed the output directories for versions
compiled under VC8 and VC9. Output files are now
placed in the Output/Debug and Output/Release
directories.
Fri Feb 6 15:41:32 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/FieldInstructionSequence.cpp:
* src/Codecs/SegmentBody.h:
* src/Codecs/SegmentBody.cpp:
* src/Codecs/XMLTemplateParser.cpp:
Sequence presence was not being applied to length field.
Fri Feb 6 00:37:55 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Decoder.cpp:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionInt64.h:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/FieldInstructionMantissa.h:
* src/Codecs/FieldInstructionUInt64.h:
* src/Common/Types.h:
* src/Examples/Examples/CommandArgHandler.h:
* src/Examples/Examples/CommandArgParser.h:
* src/Examples/MulticastInterpreter/MulticastInterpreter.h:
Decoding problems. Typedef for FieldUInt64 was incorrect, and
Decimal mantissa was coded to be int32 rather than int64.
Thu Feb 5 18:46:37 UTC 2009 Jonathan Pollack <[email protected]>
* src/Examples/Examples.mpc:
* src/QuickFAST.mpc:
Corrected MPC files for Linux.
Mon Feb 2 23:44:32 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/MulticastDecoder.h:
* src/Codecs/MulticastDecoder.cpp:
* src/Common/AsioService.h:
* src/Common/AsioService.cpp:
* src/Common/QuickFASTPch.h:
* src/Examples/Examples/ExamplesPch.h:
* src/Examples/Examples/MessageInterpreter.h:
* src/Examples/Examples/MessageInterpreter.cpp:
* src/Examples/Examples/StopWatch.h:
* src/Examples/FileToMulticast/FileToMulticast.h:
* src/Examples/FileToMulticast/FileToMulticast.cpp:
* src/Examples/FileToMulticast/main.cpp:
* src/Examples/FileToTCP/FileToTCP.h:
* src/Examples/FileToTCP/FileToTCP.cpp:
* src/Examples/FileToTCP/main.cpp:
* src/Examples/InterpretFAST/InterpretFAST.h:
* src/Examples/InterpretFAST/InterpretFAST.cpp:
* src/Examples/InterpretFAST/main.cpp:
* src/Examples/MulticastInterpreter/MulticastInterpreter.h:
* src/Examples/MulticastInterpreter/MulticastInterpreter.cpp:
* src/Examples/MulticastInterpreter/main.cpp:
* src/Examples/PerformanceTest/MessageCounter.h:
* src/Examples/PerformanceTest/MessageCounter.cpp:
* src/Examples/PerformanceTest/PerformanceTest.h:
* src/Examples/PerformanceTest/PerformanceTest.cpp:
* src/Examples/PerformanceTest/main.cpp:
Move examples to QuickFAST::Examples namespace
More doxygen.
Mon Feb 2 18:15:13 UTC 2009 Dale Wilson <[email protected]>
* src/Common/AsioService.h:
* src/Common/AsioService.cpp:
Add full(er) support for io_service event loop handling
All AsioService derived classes use a common io_service (by default, anyway)
Sun Feb 1 23:42:46 UTC 2009 Dale Wilson <[email protected]>
* src/Common/QuickFASTPch.h:
* src/Doxyfile:
* src/Examples/Examples/MessageInterpreter.h:
* src/Examples/Examples/StopWatch.h:
* src/Examples/FileToMulticast/FileToMulticast.h:
* src/Examples/FileToTCP/FileToTCP.h:
* src/Examples/InterpretFAST/InterpretFAST.h:
* src/Examples/MulticastInterpreter/MulticastInterpreter.h:
* src/Examples/PerformanceTest/MessageCounter.h:
* src/Examples/PerformanceTest/PerformanceTest.h:
Include Examples in Doxygen
Sun Feb 1 18:19:03 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/MulticastDecoder.h:
* src/Codecs/MulticastDecoder.cpp:
* src/Common/AsioService.h:
* src/Common/AsioService.cpp:
Generalized wrapper around boost::io_service
Fri Jan 30 23:08:16 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/MulticastDecoder.h:
Update Doxygen
Fri Jan 30 22:57:15 UTC 2009 Dale Wilson <[email protected]>
* src/Codecs/Decoder.h:
* src/Codecs/FieldInstructionInteger.h:
* src/Codecs/MessageConsumer_fwd.h:
* src/Codecs/MulticastDecoder.h:
* src/Codecs/MulticastDecoder.cpp:
* src/Codecs/MulticastDecoder_fwd.h:
* src/Codecs/SchemaElement.h:
* src/Codecs/SynchronousDecoder.h:
* src/Codecs/XMLTemplateParser.h:
* src/Examples/MulticastInterpreter/MulticastInterpreter.h:
* src/Examples/MulticastInterpreter/MulticastInterpreter.cpp:
* src/Messages/Field.h:
* src/Messages/Field.cpp:
* src/Messages/FieldUInt32.h:
* src/Messages/FieldUInt32.cpp:
* src/Messages/Field_fwd.h:
Separate MulticastDecoder functionality into separate component
and move it into Codecs.
Fri Jan 30 19:33:45 UTC 2009 Dale Wilson <[email protected]>
* src/Examples/MulticastInterpreter/MulticastInterpreter.h:
* src/Examples/MulticastInterpreter/MulticastInterpreter.cpp:
* src/Examples/MulticastInterpreter/main.cpp:
* src/Examples/MulticastInterpreter/MulticastDecoder.h:
* src/Examples/MulticastInterpreter/MulticastDecoder.cpp:
Complete the renaming s/MulticastDecoder/MulticastInterpreter/
Fri Jan 30 19:00:54 UTC 2009 Dale Wilson <[email protected]>
* src/Common/QuickFASTPch.h:
Continue to extend documentation
* src/Examples/Examples.mpc:
* src/Examples/MulticastInterpreter:
* src/Examples/MulticastInterpreter/MulticastDecoder.h:
* src/Examples/MulticastInterpreter/MulticastDecoder.cpp:
* src/Examples/MulticastInterpreter/main.cpp:
* src/Examples/MulticastDecoder:
* src/Examples/MulticastDecoder/MulticastDecoder.h:
* src/Examples/MulticastDecoder/MulticastDecoder.cpp:
* src/Examples/MulticastDecoder/main.cpp:
Renaming MulticastDecoder to be MulticastInterpreter because
I want to use the name for an actual decoder object.
Thu Jan 29 17:29:12 UTC 2009 Dale Wilson <[email protected]>
* src/Examples/Examples/StopWatch.h:
Fix comment on #endif
* src/Messages/FieldAscii.h:
* src/Messages/FieldAscii.cpp:
* src/Messages/FieldByteVector.h:
* src/Messages/FieldByteVector.cpp:
* src/Messages/FieldDecimal.h:
* src/Messages/FieldDecimal.cpp:
* src/Messages/FieldGroup.h:
* src/Messages/FieldInt32.h:
* src/Messages/FieldInt32.cpp:
* src/Messages/FieldInt64.h:
* src/Messages/FieldInt64.cpp:
* src/Messages/FieldSequence.h:
* src/Messages/FieldUInt32.h:
* src/Messages/FieldUInt32.cpp:
* src/Messages/FieldUInt64.h:
* src/Messages/FieldUInt64.cpp:
* src/Messages/FieldUtf8.h:
* src/Messages/FieldUtf8.cpp:
Clean up doxygen
Wed Jan 28 20:30:02 UTC 2009 Dale Wilson <[email protected]>
* .:
* Doc:
* Doc/FieldRules.xls:
* QuickFAST.features:
* QuickFAST.mpc:
* QuickFAST.mwc:
* QuickFASTApplication.mpb:
* QuickFASTExample.mpb:
* bin:
* bin/insertBlocks.py:
* license.txt:
* m.cmd:
* setup.cmd:
* setup.sh:
* src:
* src/Codecs:
* src/Codecs/Context.h:
* src/Codecs/Context.cpp:
* src/Codecs/Context_fwd.h:
* src/Codecs/DataDestination.h:
* src/Codecs/DataDestinationString.h:
* src/Codecs/DataDestinationString.cpp:
* src/Codecs/DataDestination_fwd.h:
* src/Codecs/DataSource.h:
* src/Codecs/DataSource.cpp:
* src/Codecs/DataSourceBuffer.h:
* src/Codecs/DataSourceBuffer.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:
* src/Codecs/DataSource_fwd.h:
* src/Codecs/Decoder.h:
* src/Codecs/Decoder.cpp:
* src/Codecs/Decoder_fwd.h:
* src/Codecs/Dictionary.h:
* src/Codecs/Dictionary.cpp:
* src/Codecs/Dictionary_fwd.h:
* src/Codecs/Encoder.h:
* src/Codecs/Encoder.cpp:
* src/Codecs/Encoder_fwd.h:
* 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/FieldInstructionByteVector.h:
* src/Codecs/FieldInstructionByteVector.cpp:
* src/Codecs/FieldInstructionDecimal.h:
* src/Codecs/FieldInstructionDecimal.cpp:
* src/Codecs/FieldInstructionExponent.h:
* src/Codecs/FieldInstructionGroup.h:
* src/Codecs/FieldInstructionGroup.cpp:
* src/Codecs/FieldInstructionInt32.h:
* src/Codecs/FieldInstructionInt64.h:
* 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/FieldInstructionUInt64.h:
* src/Codecs/FieldInstructionUtf8.h:
* src/Codecs/FieldInstructionUtf8.cpp:
* src/Codecs/FieldInstruction_fwd.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/FieldOp_fwd.h:
* src/Codecs/MessageConsumer.h:
* src/Codecs/MessageConsumer_fwd.h:
* src/Codecs/PresenceMap.h:
* src/Codecs/PresenceMap.cpp: