forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-sbir_n08_116
1634 lines (1132 loc) · 65.2 KB
/
ChangeLog-sbir_n08_116
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 Jun 21 15:59:56 UTC 2010 Adam Mitz <[email protected]>
Merged changes from the trunk, revisions 3352:3368 which correspond to
the ChangeLog entries between
Fri Jun 18 20:08:49 UTC 2010 Adam Mitz <[email protected]>
and
Fri Jun 18 22:42:30 UTC 2010 Yan Dai <[email protected]>
Fri Jun 18 20:23:40 UTC 2010 Adam Mitz <[email protected]>
Merged changes from the trunk, revisions 3278:3352 which correspond to
the ChangeLog entries between
Mon May 24 21:41:41 UTC 2010 Scott Harris <[email protected]>
and
Thu Jun 17 20:09:07 UTC 2010 Scott Harris <[email protected]>
inclusive. This brings the branch into sync with the trunk as of
OpenDDS release 2.1.3 (except for some documentation changes and the
actual version number change).
Fri Jun 18 17:50:09 UTC 2010 Adam Mitz <[email protected]>
* MPC/modules/TYPESUPPORTHelper.pm:
* dds/DCPS/FilterEvaluator.cpp:
* dds/DCPS/yard/yard_parser.hpp:
* dds/idl/be_global.cpp:
* dds/idl/metaclass_generator.cpp:
* rules.dds.GNU:
More fixes for SunCC and misc cleanup.
Fri Jun 18 15:51:21 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/yard/yard_tree.hpp:
Re-worked some C++ template code that SunCC can't understand.
The original code can be re-enabled with the preprocessor macro
OPENDDS_USE_NESTED_TEMPLATE_FWDECL.
* java/dds/dcps_java_optional.mpb:
Changes for building java bindings with content_subscription=0.
Mon May 24 18:54:38 UTC 2010 Mike Martinez <[email protected]>
Merging trunk changes 3253:3278 out to branch.
Fri May 21 10:38:10 UTC 2010 Brian Johnson <[email protected]>
* tests/DCPS/Crossplatform/test_list.txt:
Changing Crossplatform nightly build to be on cicada2.
Wed May 19 16:26:44 UTC 2010 Adam Mitz <[email protected]>
* MPC/config/dcps_ts_defaults.mpb:
* MPC/config/java.mpb:
* java/dds/dcps_java_optional.mpb:
Changed "command" to just the executable (perl) and put the
arguments in "commandflags". This is for compatibility with the
latest gnuace changes in the DOC group repository.
* java/INSTALL:
Added vc9 projects to documentation.
* tools/odds_dissector/README:
Added notes on the difference between the wireshark install dir
and WIRESHARK_ROOT.
Wed May 12 21:02:47 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/PacketRemoveVisitor.cpp:
* dds/DCPS/transport/framework/QueueRemoveVisitor.cpp:
Fixed bugs in QueueRemoveVisitor::visit_element_remove and
PacketRemoveVisitor::visit_element_ref that access samples
after it's released.
Wed May 12 03:50:38 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/lj-plots.gpi:
* performance-tests/Bench/bin/plot-density.gpi:
* performance-tests/Bench/bin/plot-jitter.gpi:
* performance-tests/Bench/bin/plot-quantiles.gpi:
* performance-tests/Bench/bin/plot-throughput-testformats.gpi:
* performance-tests/Bench/bin/plot-throughput-transports.gpi:
* performance-tests/Bench/bin/plot-transports-scaling.gpi:
* performance-tests/Bench/bin/plot-transports.gpi:
* performance-tests/Bench/tools/plot-latency.gpi:
* performance-tests/Bench/tools/plot-scaling.gpi:
* performance-tests/Bench/tools/plot-throughput.gpi:
Moved files to accepted GNUPlot file extension name.
* performance-tests/Bench/bin/plot-test-results.sh:
Fixed references to the files.
* performance-tests/Bench/bin/lj-plots.gp:
* performance-tests/Bench/bin/plot-density.gp:
* performance-tests/Bench/bin/plot-jitter.gp:
* performance-tests/Bench/bin/plot-quantiles.gp:
* performance-tests/Bench/bin/plot-throughput-testformats.gp:
* performance-tests/Bench/bin/plot-throughput-transports.gp:
* performance-tests/Bench/bin/plot-transports-scaling.gp:
* performance-tests/Bench/bin/plot-transports.gp:
* performance-tests/Bench/tools/plot-latency.gp:
* performance-tests/Bench/tools/plot-scaling.gp:
* performance-tests/Bench/tools/plot-throughput.gp:
Removed these files.
Mon May 10 06:37:48 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/plot-throughput-transports.gp:
Adjusted name of mulitcast plot files to be similar to latency
and to fit the existing html.
Fri May 07 22:59:20 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/generate-perf-html.sh:
Corrected throughput graph title and added pub and sub bounded graphs.
Fri May 07 22:48:44 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/plot-test-results.sh:
* performance-tests/Bench/bin/plot-throughput-transports.gp:
Corrected graph mapping and changed to graph with simple lines by
default and try to graph with smooth on a second pass to ensure
that graphs are drawn even when one set of data is missing.
Fri May 7 16:03:44 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/PacketRemoveVisitor.cpp:
* dds/DCPS/transport/framework/QueueRemoveVisitor.cpp:
* dds/DCPS/transport/framework/RemoveAllVisitor.cpp:
Reverted changes made in last commit and added comments
for dropped_by_transport flag used. These changes in last
commit do not affect the duplicate message issue.
Fri May 7 01:40:13 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/TransportQueueElement.inl:
Fixed a bug that incorrectly callback
data_dropped(dropped_by_transport=false) when one link
drops sample and other links deliver successfully. It was
corrected to call data_dropped(true). This fixed duplicate
message issue caused by a lost link.
* dds/DCPS/transport/framework/PacketRemoveVisitor.cpp:
* dds/DCPS/transport/framework/QueueRemoveVisitor.cpp:
Corrected dropped_by_transport flag passed to data_dropped
callback.
Thu May 06 23:28:13 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/thru/run_test.pl:
Added remove of repo ior file before spawning.
Wed May 05 23:16:41 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/gen-latency-tables.pl:
* performance-tests/Bench/bin/gen-throughput-tables.pl:
Corrected transport name recognition.
Wed May 05 20:15:51 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/generate-perf-html.sh:
Corrected order of commands to generate tables _after_ the data
was processed. Added in missing test run information.
Wed May 5 17:14:34 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/DataWriterImpl.cpp:
Moved the publisher->remove_associations call out of DataWriter
locking scope to fix a deadlock issue due to reverse locking with
DataWriter lock and TransportImpl lock when remove/add associations
are handled concurrently.
* dds/DCPS/transport/framework/DataLink.cpp:
Added locking for pub_map_.release_subscriber to make pub_map_
update synchronized. This is a potential cause for a SEGV due
to ReceiveListenerSet destructed during remove_associations.
Tue May 05 06:31:35 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/thru/run_test.pl:
Corrected typo that loaded incorrect configuration for multicast
best effort.
Tue May 04 23:31:01 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/thru/run_test.pl:
Adjusted so the run_test.pl timeout is longer than the run_test
timeout. This should stop stranding testprocesses waiting on the
multicast transports.
Tue May 04 20:42:29 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/plot-density.gp:
* performance-tests/Bench/bin/plot-quantiles.gp:
* performance-tests/Bench/bin/plot-test-results.sh:
* performance-tests/Bench/bin/generate-perf-html.sh:
* performance-tests/Bench/bin/generate-test-results.sh:
Adding scripts to generate html files from results.
* performance-tests/Bench/tests/latency/run_test.pl:
Corrected name of the multicast best effort output directory.
* performance-tests/Bench/tests/thru/run_test.pl:
Removed extra time added for the client side.
* performance-tests/Bench/tools/plot-latency.gp:
Changed order so gnuplot 4.4 plot is called last.
Sun May 02 06:00:41 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/gen-run-info-table.pl:
* performance-tests/Bench/bin/generate-perf-html.sh:
Fixed typos and adjusted archive to not fail on missing directory.
Sat May 01 00:59:12 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/gen-latency-tables.pl:
* performance-tests/Bench/bin/gen-run-info-table.pl:
* performance-tests/Bench/bin/gen-throughput-tables.pl:
* performance-tests/Bench/bin/generate-perf-html.sh:
* performance-tests/Bench/tools/formatting.css:
Adding scripts for generating html pages from results.
* performance-tests/Bench/bin/extract-throughput.pl:
* performance-tests/Bench/bin/plot-throughput-testformats.gp:
* performance-tests/Bench/bin/plot-throughput-transports.gp:
Changed the output of extract-throughput.pl to use commas and added
test type and transport fields.
Sat May 15 04:14:13 UTC 2010 Yan Dai <[email protected]>
* tests/DCPS/GroupPresentation/subscriber.cpp:
Added result verify from subsriber listener.
Fri May 14 17:37:54 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* tests/DCPS/GroupPresentation/SubscriberListener.cpp:
* tests/DCPS/GroupPresentation/subscriber.cpp:
Fixed a few warnings.
Thu May 13 05:51:44 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/CoherentChangeControl.h:
* dds/DCPS/CoherentChangeControl.inl:
* dds/DCPS/CoherentChangeControl.cpp:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataSampleHeader.h:
* dds/DCPS/DataSampleHeader.inl:
* dds/DCPS/DataSampleHeader.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/GroupRakeData.h:
* dds/DCPS/GroupRakeData.cpp:
* dds/DCPS/InstanceState.h:
* dds/DCPS/InstanceState.cpp:
* dds/DCPS/OwnershipManager.h:
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/RakeData.h:
* dds/DCPS/ReceivedDataElementList.h:
* dds/DCPS/ReceivedDataStrategy.h:
* dds/DCPS/ReceivedDataStrategy.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/idl/CPPTemplate.txt:
* dds/idl/ts_generator.cpp:
Added support for GROUP presentation qos.
* tests/DCPS/GroupPresentation/DataReaderListener.h:
* tests/DCPS/GroupPresentation/DataReaderListener.cpp:
* tests/DCPS/GroupPresentation/GroupPresentation.mpc:
* tests/DCPS/GroupPresentation/Messenger.idl:
* tests/DCPS/GroupPresentation/SubscriberListener.h:
* tests/DCPS/GroupPresentation/SubscriberListener.cpp:
* tests/DCPS/GroupPresentation/Writer.h:
* tests/DCPS/GroupPresentation/Writer.cpp:
* tests/DCPS/GroupPresentation/pub.ini:
* tests/DCPS/GroupPresentation/publisher.cpp:
* tests/DCPS/GroupPresentation/run_test.pl:
* tests/DCPS/GroupPresentation/sub.ini:
* tests/DCPS/GroupPresentation/subscriber.cpp:
* tests/DCPS/GroupPresentation/tcp.conf:
Added group presentation test.
* bin/dcps_tests.lst:
Added group presentation test.
Mon May 3 03:46:34 UTC 2010 Yan Dai <[email protected]>
* tests/DCPS/unit/MyTypeSupportImpl.h:
Fixed a compilation error due to pure virtual function not
implemented.
Sat May 1 17:34:52 UTC 2010 Yan Dai <[email protected]>
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
Added new method lookup_instance() to get instance pointer
without changing any state. This is called to find instance
for RequestedDeadlineWatchdog to cancel timer upon unregister
or dispose before concrete datawriter handling unregister or
dispose which might delete the instance.
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/InstanceState.h:
* dds/DCPS/InstanceState.inl:
* dds/DCPS/OwnershipManager.cpp:
Fixed memory overwrite issues in ownership implementation.
Fri Apr 30 20:41:15 UTC 2010 Yan Dai <[email protected]>
* bin/performance_tests.lst:
* performance-tests/Bench/tests/latency/latency.mm:
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/latency/test_list.txt:
* performance-tests/Bench/tests/thru/run_test.pl:
* performance-tests/Bench/tests/thru/test_list.txt:
* performance-tests/Bench/tools/convert-latency:
* performance-tests/Bench/tools/plot-latency.gp:
* performance-tests/Bench/tools/plot-throughput.gp:
Added files missed in last commit.
Fri Apr 30 20:16:34 UTC 2010 Yan Dai <[email protected]>
Merging trunk changes 3165:3253 out to branch.
Wed Apr 28 21:15:01 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/gen-latency-stats.pl:
Use zero-based array indices correctly.
* performance-tests/Bench/bin/plot-density.gp:
Removed incorrect hop adjustment.
* performance-tests/Bench/bin/plot-jitter.gp:
* performance-tests/Bench/bin/plot-transports.gp:
Migrated to robust statistics.
* performance-tests/Bench/bin/plot-quantiles.gp:
Removed incorrect hop adjustment.
* performance-tests/Bench/bin/reduce-latency-data.pl:
Corrected a minor formatting annoyance.
* performance-tests/Bench/tools/plot-latency.gp:
Added kernel density and quantile plots to generated results.
Wed Apr 28 19:50:16 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/extract-latency.pl:
Updated documentation to be correct after adding the Median and
Median absolute deviation statistical data.
* performance-tests/Bench/bin/gen-latency-stats.pl:
Updated generated GNUPlot statistical legend data to contain
the Median and Median absolute deviation instead of the Mean
and Standard Deviation. This is part of the move towards use
of robust statistics in the data reduction and visualization.
* performance-tests/Bench/bin/run_test:
Updated the 'netstat' command arguments to provide all inet
information instead of just active TCP connections.
Wed Apr 28 00:21:25 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/thru/run_test.pl:
Adjusted running time handling.
Tue Apr 27 22:53:33 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Changed statistics command termination from SIGQUIT (which
produces a core file) to SIGINT (which does not).
Updated POD documentation.
* performance-tests/Bench/doc/userguide.html:
Updated documentation.
Tue Apr 27 18:39:41 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/reduce-latency-data.pl:
Simplified the MAD determination. Added a Pearson 2 parameter
estimation of skewness for investigative purposes.
* performance-tests/Bench/bin/run_test:
* performance-tests/Bench/doc/userguide.html:
Incorporated some more of Brian's comments. Updated run_test
man page with new statistics output filename decorator
specification feature documentation.
* performance-tests/Bench/src/Process.cpp:
Extended signal handling to be a bit more robust. Control can
now fall out of the publication wait as well as allowing the
subscription wait to be gracefully terminated as well.
Mon Apr 26 20:33:01 UTC 2010 Scott Harris <[email protected]>
* dds/DCPS/transport/multicast/MulticastConfiguration.cpp:
* Pdds/DCPS/transport/multicast/MulticastConfiguration.h:
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* tests/DCPS/Messenger/pub_multicast.ini:
* docs/html/multicast/multicast.html:
Added support to set TTL for multicast transport.
Sun Apr 26 00:35:23 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/thru/run_test.pl:
Changed to add time to the run time of the client side to compensate
for server side delay in starting repo.
Sat Apr 24 00:00:38 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/plot-throughput-testformats.gp:
* performance-tests/Bench/bin/plot-throughput-transports.gp:
* performance-tests/Bench/bin/plot-throughput.gp:
Removed plot-throughput.gp because all because graphs are made through
the more specific plots.
* performance-tests/Bench/doc/userguide.html:
Updated information about changed files.
* performance-tests/Bench/tests/latency/test_list.txt:
* performance-tests/Bench/tests/thru/test_list.txt:
Swapped the client and server for castor and pollux.
Fri Apr 23 20:39:23 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/CopyChainVisitor.h:
* dds/DCPS/transport/framework/CopyChainVisitor.inl:
* dds/DCPS/transport/framework/CopyChainVisitor.cpp:
* dds/DCPS/transport/framework/PacketRemoveVisitor.cpp:
* dds/DCPS/transport/framework/QueueRemoveVisitor.cpp:
* dds/DCPS/transport/framework/TransportQueueElement.h:
* dds/DCPS/transport/framework/TransportQueueElement.inl:
* dds/DCPS/transport/framework/TransportQueueElement.cpp:
* dds/DCPS/transport/framework/TransportReplacedElement.h:
* dds/DCPS/transport/framework/TransportReplacedElement.inl:
* dds/DCPS/transport/framework/TransportReplacedElement.cpp:
* dds/DCPS/transport/framework/TransportRetainedElement.h:
* dds/DCPS/transport/framework/TransportRetainedElement.inl:
* dds/DCPS/transport/framework/TransportSendBuffer.h:
* dds/DCPS/transport/framework/TransportSendBuffer.cpp:
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
- Made TransportSendBuffer clone the transport element and
packet with its own MessageBlock and DataBlock cached
allocators and heap allocation for the sample data.
- Fixed a potential issue in TransportSendBuffer due to buffers_
not mutex protected. The bug may cause invalid iterator(or
corruption) while iterating sequence buffers for resending
from reactor thread and the insert calls to release aged
buffer due to capacity limit from another thread (e.g. write
thread).
- Changed TransportQueueElement::data_dropped and
TransportQueueElement::data_delivered to have return value
to indicate if the element is released. This would fix
memory corruption due to access the release flag after
TransportQueueElement is released.
- Moved clone() from TransportReplacedElement to
TransportQueueElement so the TransportRetainElement
can use it.
Fri Apr 23 14:34:11 UTC 2010 Brian Johnson <[email protected]>
* performance-tests/Bench/doc/userguide.html:
minor edits
Thu Apr 22 22:55:09 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/genstats.pl:
* performance-tests/Bench/bin/gen-latency-stats.pl:
* performance-tests/Bench/tools/convert-latency:
Renamed latency stat generating script. Changed stat output file
names to include latency prefix.
Thu Apr 22 20:46:25 UTC 2010 Trevor Fields <[email protected]>
* bin/performance_tests.lst:
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/thru/run_test.pl:
Added running of throughput tests and corrected directory names.
Thu Apr 22 18:16:27 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/extract-latency.pl:
* performance-tests/Bench/bin/reduce-latency-data.pl:
Added median and median absolute deviation (MAD) statistics
gathering.
* performance-tests/Bench/bin/run_test:
Factored the filtering closures out and made them selectable by
OS type.
Wed Apr 21 19:25:35 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/src/testprocess.cpp:
Added static initialization feature for static builds.
Mon Apr 19 23:50:09 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/thru/run_test.pl:
Adjusted to have the run_test on the server side handle the repo.
Running the repo as a separate run_test was leaving cases of the repo
still running after terminating the run_test.
Mon Apr 19 19:19:09 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/extract-throughput.pl:
Adjusted to produce a single data file with the test and
transport data partitioned into separate indices.
* performance-tests/Bench/bin/plot-density.gp:
* performance-tests/Bench/bin/plot-quantiles.gp:
Candidate plotting commands for Quantile and Kernel Density
Estimation charts. These currently assume specific file names
and locations.
* performance-tests/Bench/tests/thru/test-commands.txt:
Updated to generate output files useful for the current
throughput extraction script.
Mon Apr 19 05:29:23 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/PacketRemoveVisitor.h:
* dds/DCPS/transport/framework/PacketRemoveVisitor.cpp:
* dds/DCPS/transport/framework/TransportReplacedElement.h:
* dds/DCPS/transport/framework/TransportReplacedElement.inl:
* dds/DCPS/transport/framework/TransportReplacedElement.cpp:
* dds/DCPS/transport/framework/TransportSendBuffer.h:
* dds/DCPS/transport/framework/TransportSendBuffer.cpp:
* dds/DCPS/transport/framework/TransportSendStrategy.h:
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Fixed bugs that TransportReplacedElement clones samples owned
by DataWriter using the cached allocators from DataWriter.This
causes SEGV when releasing TransportReplacedElement after
DataWrite is deleted.
Tue Apr 13 00:06:06 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tools/mkpkg:
Added files for running scripted tests in packaged environment.
* performance-tests/Bench/bin/extract-throughput.pl:
* performance-tests/Bench/bin/plot-throughput-testformats.gp:
* performance-tests/Bench/bin/plot-throughput-transports.gp:
* performance-tests/Bench/tools/plot-throughput.gp:
Added more graphing scripts for throughput results.
Fri Apr 09 21:27:04 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/thru/run_test.pl:
Fixed repo option to Info Repo.
Fri Apr 09 18:37:50 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/thru/run_test.pl:
Added some basic POD documentation.
Thu Apr 8 19:17:27 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/reduce-latency-data.pl:
Added plot data for quantile charts to the output data.
Tue Apr 06 18:45:55 UTC 2010 Trevor Fields <[email protected]>
* bin/PerlDDS/Cross_Sync_Common.pm:
Fix typo and separated output of failing to read file and
failing to find the required instance.
* performance-tests/Bench/bin/run_test:
Improved handling of the Info Repo.
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/thru/run_test.pl:
Fixed issues with running.
Thu Apr 01 22:36:25 UTC 2010 Trevor Fields <[email protected]>
* performance-tests/Bench/bin/extract-throughput.pl:
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/thru/run_test.pl:
* performance-tests/Bench/tests/thru/test-commands.txt:
* performance-tests/Bench/tests/thru/test_list.txt:
Minor fixes to run tests and data extraction script.
Thu Apr 1 15:20:09 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Explicitly search the environment PATH variable for the
repository and test commands to execute.
Wed Mar 31 23:59:23 UTC 2010 Trevor Fields <[email protected]>
* bin/performance_tests.lst:
* performance-tests/Bench/bin/extract-latency.pl:
* performance-tests/Bench/bin/extract-throughput.pl:
* performance-tests/Bench/bin/plot-throughput.gp:
* performance-tests/Bench/bin/reduce-latency-data.pl:
* performance-tests/Bench/tests/latency/run_test.pl:
* performance-tests/Bench/tests/latency/test_list.txt:
* performance-tests/Bench/tests/thru/test-commands.txt:
* performance-tests/Bench/tools/convert-all:
* performance-tests/Bench/tools/convert-latency:
* performance-tests/Bench/tools/plot-latency.gp:
* performance-tests/Bench/tools/plot-throughput.gp:
* performance-tests/Bench/bin/reduce.pl:
* performance-tests/Bench/bin/extract.pl:
* performance-tests/Bench/tools/plot-all.gp:
Added initial scripts for plotting throughput data and renamed
the genericly name latency scripts.
Wed Mar 31 19:51:26 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Prepend the script directory to the command search path and
then use that path to find commands. This allows installations
other than the 'mkpkg' ones to work as well.
Wed Mar 31 19:02:50 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Previous debug file specification change is now extended to the
testprocess commands as well.
* performance-tests/Bench/doc/userguide.html:
* performance-tests/Bench/tests/latency/latency.mm:
Adding and updating documentation.
Wed Mar 31 13:55:53 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Allow debug file to be specified in the absence of a debug
level. This allows the verbose test output to reach a logfile
instead of the standard output.
Tue Mar 30 22:39:41 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Do not remove the repo.ior file unless we are going to start a
repository process.
Updated POD.
* performance-tests/Bench/doc/userguide.html:
Updated documentation.
* performance-tests/Bench/src/Publication.cpp:
* performance-tests/Bench/src/Subscription.cpp:
Added more detail to the transport creation/obtain processing
to ensure that the transport type is available in the logfile.
Tue Mar 23 20:33:39 UTC 2010 Trevor Fields <[email protected]>
* NEWS:
* README:
Fri Apr 30 18:13:11 UTC 2010 Adam Mitz <[email protected]>
* dds/dcps_bits.mpb:
Restored built-in topics support after my earlier change broke it.
Fri Apr 30 17:38:09 UTC 2010 Adam Mitz <[email protected]>
* dds/idl/metaclass_generator.cpp:
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopicTest.cpp:
* tests/DCPS/Ownership/Writer.h:
* tests/DCPS/Ownership/Writer.cpp:
* tests/DCPS/Ownership/publisher.cpp:
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Fixed warnings.
Fri Apr 30 17:33:35 UTC 2010 Adam Mitz <[email protected]>
* MPC/config/dds_macros.mpb:
Forgot to "svn add" this one.
Fri Apr 30 16:25:00 UTC 2010 Adam Mitz <[email protected]>
* MPC/config/dcps.mpb:
* MPC/config/dcps_java.mpb:
* MPC/config/dcps_java_optional.mpb:
* MPC/config/dcps_optional_features.mpb:
* MPC/config/idl2jni.mpb:
* dds/DCPS/BitPubListenerImpl.h:
* dds/DCPS/BitPubListenerImpl.cpp:
* dds/DCPS/Comparator_T.h:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/FailoverListener.h:
* dds/DCPS/FailoverListener.cpp:
* dds/DCPS/RakeResults_T.h:
* dds/DdsDcps.mpc:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
* java/dds/dcps_java_optional.mpb:
* java/idl2jni/codegen/idl2jni_codegen.mpc:
* java/idl2jni/runtime/idl2jni_runtime.mpc:
* rules.dds.GNU:
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopic.mpc:
* tests/DCPS/FilterExpression/FilterExpressionTest.mpc:
* tests/DCPS/QueryCondition/QueryCondition.mpc:
* tools/odds_monitor/Monitor.mpc:
Added support for disabling the Content Subscription Profile at
compile-time (MPC feature content_subscription=0).
* MPC/config/built_in_topic_support.mpb:
* MPC/config/dcps_java_bits.mpb:
Removed these files.
Fri Apr 30 15:41:47 UTC 2010 Adam Mitz <[email protected]>
* docs/design/IDL_COMPILER:
* java/README:
* tests/DCPS/Compiler/idl_test2_lib/README.txt:
* tests/DCPS/FooType3/README.txt:
* tests/DCPS/FooType3NoKey/README.txt:
* tests/DCPS/FooType3Unbounded/README.txt:
* tests/DCPS/FooType4/README.txt:
* tests/DCPS/FooType5/README.txt:
* tests/DCPS/SimpleFooTest/README:
Updated documentation for the dcps_ts.pl -> opendds_idl transition.
* bin/update_dcps.pl:
Removed this file.
Thu Apr 29 21:37:51 UTC 2010 Adam Mitz <[email protected]>
* MPC/config/built_in_topic_support.mpb:
* dds/dcps_bits.mpb:
Pass -DDDS_HAS_MINIMUM_BIT to opendds_idl when built-in topics are
disabled at compile time.
* dds/DCPS/ContentFilteredTopicImpl.h:
* dds/DCPS/ContentFilteredTopicImpl.cpp:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/FilterEvaluator.h:
* dds/DCPS/QueryConditionImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/TopicDescriptionImpl.h:
* dds/idl/CPPTemplate.txt:
* dds/idl/ts_generator.cpp:
Implemented Content-Filtered Topics.
* bin/dcps_tests.lst:
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopic.mpc:
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopicTest.cpp:
* tests/DCPS/ContentFilteredTopic/Messenger.idl:
* tests/DCPS/ContentFilteredTopic/dcps.ini:
* tests/DCPS/ContentFilteredTopic/run_test.pl:
Added a test for Content-Filtered Topics.
Wed Apr 28 22:21:43 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/FilterEvaluator.h:
* dds/DCPS/yard/yard_base_grammar.hpp:
* dds/DCPS/yard/yard_text_grammar.hpp:
* dds/DCPS/yard/yard_tree.hpp:
* dds/idl/be_produce.cpp:
* dds/idl/dds_generator.h:
* dds/idl/dds_visitor.cpp:
* dds/idl/keys_generator.h:
* dds/idl/keys_generator.cpp:
* dds/idl/marshal_generator.h:
* dds/idl/marshal_generator.cpp:
* dds/idl/metaclass_generator.h:
* dds/idl/metaclass_generator.cpp:
* dds/idl/ts_generator.h:
* dds/idl/ts_generator.cpp:
Fixed warnings in the core library, the generator and generated code.
Wed Apr 28 20:07:21 UTC 2010 Adam Mitz <[email protected]>
* MPC/config/dcps_ts_defaults.mpb:
* java/dds/dcps_java_optional.mpb:
Added "libpath" for the Define_Customs of opendds_idl.
* dds/DCPS/FilterExpressionGrammar.h:
In query expressions, the "ORDER BY ..." clause is optional.
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/QueryConditionImpl.h:
* dds/DCPS/QueryConditionImpl.cpp:
* dds/DCPS/ReadConditionImpl.h:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
Implemented Query Condition filtering with the Wait Set (the wait is
only satisfied when a sample matches the "where clause").
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Extended this test to test the "where clause" of the Query Condition.
This covers both use-cases: with a Wait Set, and with read/take
operations on the Data Reader.
* tests/DCPS/unit/MyTypeSupportImpl.h:
Implement the new pure virtual method in DataReaderImpl.
Tue Apr 27 21:59:49 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/Comparator_T.h:
Consider the global namespace for operator< because that's where the
operator< for TAO::String_Manager is defined.
* dds/DCPS/FilterEvaluator.h:
* dds/DCPS/FilterEvaluator.cpp:
Removed code that's no longer needed now that the opendds_idl is used.
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/PublisherImpl.cpp:
Removed unnecessary namespace qualification and moved the typedef for
DataWriterAckMap down to the .cpp since it's only used there.
* dds/idl/keys_generator.cpp:
Applied the same fix from Comparator_T.h (above) to the code that
we're generating for KeyLessThan.
* dds/idl/marshal_generator.cpp:
Allow defaulted unions (that have no default: branch) to be
serialized and deserialized.
Tue Apr 27 16:22:44 UTC 2010 Adam Mitz <[email protected]>
This commit switches the OpenDDS marshaling (serialization) code
generator from tao_idl -Gdcps to opendds_idl. This may have
implications for user code (which will eventually be documented in the
NEWS), but should be mostly transparent.
* MPC/config/dcps.mpb:
Removed -Gdcps. This code is now generated by opendds_idl.
* MPC/modules/TYPESUPPORTHelper.pm:
Added support for -o (output dir) and -SI (suppress generation of
TypeSupport.idl).
* dds/DCPS/FilterEvaluator.h:
* dds/DCPS/RakeResults_T.cpp:
Integrated the older support for "ORDER BY" in QueryCondition with
the new getMetaStruct<>() infrastructure.
* dds/DCPS/DataCollector_T.h:
* dds/DCPS/DataCollector_T.inl:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataSampleHeader.h:
* dds/DCPS/DataSampleHeader.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/Definitions.h:
* dds/DCPS/GuidConverter.h:
* dds/DCPS/GuidConverter.cpp:
* dds/DCPS/GuidUtils.h:
* dds/DCPS/GuidUtils.cpp:
* dds/DCPS/OfferedDeadlineWatchdog.h:
* dds/DCPS/Qos_Helper.h:
* dds/DCPS/Qos_Helper.inl:
* dds/DCPS/Serializer.h:
* dds/DCPS/Serializer.inl:
* dds/DCPS/Serializer.cpp:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/ReceiveListenerSet.h:
* dds/DCPS/transport/framework/RepoIdSet.h:
* dds/DCPS/transport/framework/RepoIdSet.cpp:
* dds/DCPS/transport/framework/RepoIdSetMap.cpp:
* dds/DCPS/transport/framework/TransportHeader.inl:
* dds/DCPS/transport/framework/TransportHeader.cpp:
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Moved various operators and the Serializer class into namespace
OpenDDS::DCPS. This includes the QoS helpers.
Updated #includes, namespaces, and names for generated code.
* dds/DdsDcps.mpc: