This repository has been archived by the owner on Aug 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1645 lines (1248 loc) · 69 KB
/
ChangeLog
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 Oct 23 17:28:47 UTC 2008 Mike Martinez <[email protected]>
* DEEP/readerWriter/generated/OpenDDS:
* DEEP/vendorAbstraction/OpenDDS:
* DEEP/vendorAbstraction/OpenDDS/implAbstraction.h:
* DEEP/vendorAbstraction/OpenDDS/inclAbstraction.h:
* DEEP/DEEP_OpenDDS.mpc:
Modified to work with current trunk revision of OpenDDS.
* DEEP/readerWriter/generated/TAO_DDS:
* DEEP/vendorAbstraction/TAO_DDS:
* DEEP/vendorAbstraction/TAO_DDS/implAbstraction.h:
* DEEP/vendorAbstraction/TAO_DDS/inclAbstraction.h:
Moved these to the OpenDDS named directories and modified to
work with current trunk revision of OpenDDS.
* DEEP/DEEP_framework_export.h:
* DEEP/README:
* DEEP/VERSION:
* DEEP/actors/Actor.h:
* DEEP/actors/impl/Actor_impl.h:
* DEEP/actors/impl/Actor_impl.cpp:
* DEEP/actors/impl/Laptimer_impl.h:
* DEEP/actors/impl/Laptimer_impl.cpp:
* DEEP/actors/impl/Reflector_impl.h:
* DEEP/actors/impl/Reflector_impl.cpp:
* DEEP/actors/impl/Sink_impl.h:
* DEEP/actors/impl/Sink_impl.cpp:
* DEEP/actors/impl/Source_impl.h:
* DEEP/actors/impl/Source_impl.cpp:
* DEEP/actors/impl/build.sh:
* DEEP/autobuild/update_build_scoreboard.sh:
* DEEP/build_OpenSplice.sh:
* DEEP/build_RTI.sh:
* DEEP/doc/VendorSpecificIssues.html:
* DEEP/exec/OpenSplice/ospl.xml:
* DEEP/exec/OpenSplice/route.sh:
* DEEP/exec/OpenSplice/run.sh:
* DEEP/exec/OpenSplice/run_Reflector.sh:
* DEEP/exec/OpenSplice/run_Source_Sink.sh:
* DEEP/exec/RTI/run.sh:
* DEEP/exec/RTI/run_Reflector.sh:
* DEEP/exec/RTI/run_Source_Sink_1_to_1.sh:
* DEEP/exec/RTI/run_Source_Sink_1_to_12.sh:
* DEEP/exec/RTI/run_Source_Sink_1_to_4.sh:
* DEEP/exec/RTI/run_Source_Sink_1_to_8.sh:
* DEEP/exec/scenario1024.xml:
* DEEP/exec/scenario128.xml:
* DEEP/exec/scenario16.xml:
* DEEP/exec/scenario16384.xml:
* DEEP/exec/scenario2048.xml:
* DEEP/exec/scenario256.xml:
* DEEP/exec/scenario32.xml:
* DEEP/exec/scenario32768.xml:
* DEEP/exec/scenario4.xml:
* DEEP/exec/scenario4096.xml:
* DEEP/exec/scenario512.xml:
* DEEP/exec/scenario64.xml:
* DEEP/exec/scenario8.xml:
* DEEP/exec/scenario8192.xml:
* DEEP/main/build.sh:
* DEEP/main/deepParticipant.cpp:
* DEEP/readerWriter/GenericReader.h:
* DEEP/readerWriter/GenericWriter.h:
* DEEP/readerWriter/ReaderWriterFactory.h:
* DEEP/readerWriter/ReaderWriterTypes.h:
* DEEP/readerWriter/deepTypes.idl:
* DEEP/readerWriter/generated/OpenSplice/build.sh:
* DEEP/readerWriter/generated/OpenSplice/build_TypeSupport.sh:
* DEEP/readerWriter/generated/RTI/build.sh:
* DEEP/readerWriter/generated/RTI/build_TypeSupport.sh:
* DEEP/readerWriter/impl/GenericReader_impl.h:
* DEEP/readerWriter/impl/GenericWriter_impl.h:
* DEEP/readerWriter/impl/ReaderWriterFactory_impl.h:
* DEEP/readerWriter/impl/ReaderWriterFactory_impl.cpp:
* DEEP/readerWriter/impl/TypedFunctions.h:
* DEEP/readerWriter/impl/TypedFunctions.cpp:
* DEEP/readerWriter/impl/build.sh:
* DEEP/scenario/ActorSetting.h:
* DEEP/scenario/LaptimerSetting.h:
* DEEP/scenario/NamedSetting.h:
* DEEP/scenario/ParticipantSetting.h:
* DEEP/scenario/ReaderSetting.h:
* DEEP/scenario/ReflectorSetting.h:
* DEEP/scenario/ScenarioSetting.h:
* DEEP/scenario/SettingTypes.h:
* DEEP/scenario/SinkSetting.h:
* DEEP/scenario/SourceSetting.h:
* DEEP/scenario/TopicSetting.h:
* DEEP/scenario/WriterSetting.h:
* DEEP/scenario/impl/ActorSetting_impl.h:
* DEEP/scenario/impl/ActorSetting_impl.cpp:
* DEEP/scenario/impl/NamedSetting_impl.h:
* DEEP/scenario/impl/NamedSetting_impl.cpp:
* DEEP/scenario/impl/ParticipantSetting_impl.h:
* DEEP/scenario/impl/ParticipantSetting_impl.cpp:
* DEEP/scenario/impl/ReaderSetting_impl.h:
* DEEP/scenario/impl/ReaderSetting_impl.cpp:
* DEEP/scenario/impl/ReflectorSetting_impl.h:
* DEEP/scenario/impl/ReflectorSetting_impl.cpp:
* DEEP/scenario/impl/ScenarioSetting_impl.h:
* DEEP/scenario/impl/ScenarioSetting_impl.cpp:
* DEEP/scenario/impl/SinkSetting_impl.h:
* DEEP/scenario/impl/SinkSetting_impl.cpp:
* DEEP/scenario/impl/SourceSetting_impl.h:
* DEEP/scenario/impl/SourceSetting_impl.cpp:
* DEEP/scenario/impl/TopicSetting_impl.h:
* DEEP/scenario/impl/TopicSetting_impl.cpp:
* DEEP/scenario/impl/WriterSetting_impl.h:
* DEEP/scenario/impl/WriterSetting_impl.cpp:
* DEEP/scenario/impl/build.sh:
* DEEP/settingsParser/SettingsParserNode.h:
* DEEP/settingsParser/impl/SettingsParserDefault_impl.h:
* DEEP/settingsParser/impl/SettingsParserDefault_impl.cpp:
* DEEP/settingsParser/impl/SettingsParserXercesNode_impl.h:
* DEEP/settingsParser/impl/SettingsParserXercesNode_impl.cpp:
* DEEP/settingsParser/impl/SettingsParserXerces_impl.h:
* DEEP/settingsParser/impl/SettingsParserXerces_impl.cpp:
* DEEP/settingsParser/impl/build.sh:
* DEEP/vendorAbstraction/OpenSplice/implAbstraction.h:
* DEEP/vendorAbstraction/OpenSplice/inclAbstraction.h:
* DEEP/vendorAbstraction/RTI/implAbstraction.h:
* DEEP/vendorAbstraction/RTI/inclAbstraction.h:
Made line endings native and added properties:
svn:keywords : Author Date Id Revision
svn:eol-style : native
* scripts/':
Removed this file.
Wed Sep 26 20:27:30 UTC 2007 Abdullah Sowayan <[email protected]>
* MPC/config/ndds_ts_defaults.mpb:
* MPC/config/splice_ts_defaults.mpb:
Removed extra colons in mpb files. The extra colons cause make warnings
to appear while building. Thanks to Chad Elliott for pointing that out.
Wed Aug 22 18:12:07 UTC 2007 Abdullah Sowayan <[email protected]>
* MPC/config/nddslib.mpb:
Enhanced mpb's file support for MSVC71
Fri May 25 16:46:35 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/doc/VendorSpecificIssues.html:
Changes intended but overlooked in
Thu Apr 26 16:59:11 UTC 2007 Jeff Parsons <[email protected]>
Thu May 17 15:35:17 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/doc/VendorSpecificIssues.html:
Added an item to the table about RTI DDS's proprietary
ParticipantQos add-ons, some of which must be set in
application code. Thanks to Hans van't Hag <hans dot
vanthag at prismtech dot com> for reminding me.
Wed May 16 20:13:43 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/DEEP_RTI_DDS.mpc:
* DEEP/DEEP_OpenDDS.mpc:
* DEEP/DEEP_OpenSplice.mpc:
Removed again the IDL processing steps. There is no clear
way to accomplish the generation of a correct makefile
that follows the directory structure and redirection of
output in the existing build scripts, especially since
the OpenSplice IDL processor has no option to redirect
its output. Anyway, since IDL processing will be specific
to each application, it will likely be removed from DEEP
eventually.
Wed May 16 17:51:38 UTC 2007 Jeff Parsons <[email protected]>
* MPC/config/deepbase.mpb:
Factored out 'exename' since it's the same for each MPC file.
* DEEP/DEEP_RTI_DDS.mpc:
* DEEP/DEEP_OpenDDS.mpc:
* DEEP/DEEP_OpenSplice.mpc:
Put back IDL processing steps for each vendor.
Wed May 16 16:12:51 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/DEEP.mwc:
* DEEP/DEEP_RTI_DDS.mpc:
* DEEP/DEEP_OpenSplice.mpc:
Changes to these MPC-related files to get generated makefiles
that are as close to the existing build scripts as possible.
Thanks to Chad Elliott <elliott_c at ociweb dot com> for his
help with MPC details.
Wed May 9 21:00:07 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/DEEP_RTI_DDS.mpc:
Fixed typo in executable name.
Wed May 9 20:41:23 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/DEEP_RTI_DDS.mpc:
* DEEP/DEEP_OpenSplice.mpc:
* DEEP/DEEP_OpenDDS.mpc:
Fixed some spelling case errors that showed up only on
Linux. Also removed the OUTPUT_OPTION verbatim line, since
it wasn't working as expected in generating a makefile,
and added a CXX verbatim line for DEEP_OpenSplice.mpc,
to get the version of g++ needed by OpenSplice, and an
'install' line to put the executable into the directory
needed by the DBE scripts. Thanks to Ming Xiong
<ming dot xiong at vanderbilt dot edu> for his help with
these makefile problems.
Mon May 7 01:35:55 UTC 2007 xiong,ming <[email protected]>
* DEEP/readerWriter/deepTypes.idl
Added MAX_MSG_LENGTH to octet sequence definition because
the internal buffer allocated for serializing the sequence
is based on this value, which means without which "bad
things" might happen.
Sat Apr 28 14:38:44 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/readerWriter/impl/TypedFunctions.cpp:
* DEEP/readerWriter/impl/TypedFunctions.h:
* DEEP/readerWriter/impl/ReaderWriterFactory_impl.cpp:
* DEEP/scenario\impl/ActorSetting_impl.cpp:
* DEEP/settingsParser/impl/SettingsParserDefault_impl.cpp:
Removed module from IDL file regenerated code, and removed
namespace 'deepTypes' from macro instantiations.
Sat Apr 28 01:42:31 UTC 2007 Jeff Parsons <[email protected]>
* MPC\config\MPC.cfg:
* DEEP\DEEP.mpc:
Removed these recently added files, reconfigured and
added new files to get an easier procedure for doing
MPC builds.
* MPC\config\default.features:
* MPC\config\deepbase.mpb:
* DEEP\DEEP.mwc:
* DEEP\DEEP_RTI_DDS.mpc:
* DEEP\DEEP_OpenDDS.mpc:
* DEEP\DEEP_OpenSplice.mpc:
New files, separate MPC files for each flavor of DEEP
now, and .mwc file dedicated just to DEEP, a
default features file to enable the pickup of the
Xerces base project, and a base .mpb project to
factor out common stuff from all 3 builds.
* README:
* DEEP\README:
Updated documentation to reflect the changes described
above.
Fri Apr 27 21:46:45 UTC 2007 Jeff Parsons <[email protected]>
* MPC/config/MPC.cfg:
New file, to be copied to $MPC_ROOT/config for use with
MPC to build things in DDS_Test that require ACE and/or
TAO.
* README:
Updated MPC information.
Fri Apr 27 21:15:25 UTC 2007 Jeff Parsons <[email protected]>
* MPC\config\nddslib_with_idl.mpb:
* MPC\config\spliceexe_with_idl.mpb:
* MPC\config\splicelib.mpb:
* MPC\config\splicelib_with_idl.mpb:
* MPC\config\nddsexe_with_idl.mpb:
* MPC\config\nddslib.mpb:
New files, a better breakdown of functionality
that provides every combination of lib vs
executable and with/without typesupport processing.
* DEEP\DEEP.mpc:
New file, a combination of the 3 similarly named
files below, which have been removed. Work on
building DEEP linked to TAO DDS is not yet
complete, requiring either listener support in
DEEP or waitset support in TAO DDS.
* MPC\config\ndds.mpb:
* MPC\config\splice.mpb:
Removed these files, they are replaced by the
corresponding *lib.mpb new files.
* DEEP\DEEP.mpc:.RTI:
* DEEP\DEEP.mpc:.OpenSplice:
* DEEP\DEEP.mpc:.TAO_DDS:
Removed these files, they are now combined in DEEP.mpc
* MPC\config\nddsexe.mpb:
* MPC\config\spliceexe.mpb:
* performance\latency\OpenSplice\Splice_latency.mpc:
* performance\latency\NDDS\latency\NDDS_latency.mpc:
* performance\throughput\OpenSplice\C++\Splice_c++_throughput.mpc:
* performance\throughput\NDDS\NDDS_throughput.mpc:
* Test_Framework\Test_Framework.mpc:
* examples\TestFrameworkExamples\Simple\Simple.mpc:
Modified these files to reflect the changes above.
* DEEP\main\deepParticipant.cpp:
* DEEP\vendorAbstraction\OpenSplice\inclAbstraction.h:
* DEEP\vendorAbstraction\TAO_DDS\inclAbstraction.h:
* DEEP\vendorAbstraction\RTI\inclAbstraction.h:
* DEEP\actors\impl\Actor_impl.h:
* DEEP\actors\impl\Laptimer_impl.cpp:
* DEEP\actors\impl\Source_impl.cpp:
* DEEP\actors\impl\Sink_impl.cpp:
* DEEP\actors\impl\Reflector_impl.cpp:
* DEEP\readerWriter\impl\TypedFunctions.cpp:
* DEEP\readerWriter\impl\TypedFunctions.h:
* DEEP\readerWriter\impl\GenericReader_impl.h:
* DEEP\readerWriter\impl\ReaderWriterFactory_impl.cpp:
* DEEP\readerWriter\ReaderWriterTypes.h:
* DEEP\scenario\impl\ScenarioSetting_impl.cpp:
* DEEP\scenario\ScenarioSetting.h:
* DEEP\settingsParser\impl\SettingsParserXercesNode_impl.cpp:
* DEEP\settingsParser\impl\SettingsParserDefault_impl.cpp:
* DEEP\settingsParser\impl\SettingsParserDefault_impl.h:
* DEEP\settingsParser\impl\SettingsParserXerces_impl.cpp:
Changes to enable the DEEP framework to build with
Visual Studio.
Thu Apr 26 22:32:03 UTC 2007 xiong,ming <[email protected]>
* DEEP/VERSION
Added this file to keep track of what version of OpenSplice/RTI we
are using.
Thu Apr 26 20:03:59 UTC 2007 xiong,ming <[email protected]>
* DEEP/main/build_Opensplice.sh
* DEEP/main/build_RTI.sh
Removed these scripts since there is a build.sh that does the
job of both
Thu Apr 26 19:44:09 UTC 2007 xiong,ming <[email protected]>
* DEEP/exec/
Moved all the scenario files out of vendor specific folders
Thu Apr 26 16:59:11 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/doc/VendorSpecificIssues.html:
Corrections and suggestions made by Reinier Torenbeek
<Reinier dot Torenbeek at prismtech dot com>.
Wed Apr 25 18:38:25 UTC 2007 xiong,ming <[email protected]>
* DEEP/readerWriter/RTI
* DEEP/readerWriter/OpenSplice
* DEEP/readerWriter/TAO_DDS
Removed these vendor-specific folders
* DEEP/readerWriter/generated/RTI
* DEEP/readerWriter/generated/OpenSplice
* DEEP/readerWriter/generated/TAO_DDS
Added a generated folder to hold vendor specific generated
files
Sun Apr 22 07:16:54 UTC 2007 xiong,ming <[email protected]>
* DEEP/doc/RTDEEP.ppt
Added an overview presentation for RTDEEP
Sun Apr 22 07:00:51 UTC 2007 xiong,ming <[email protected]>
* DEEP/README
Updated README file to include detailed instructions for running
RT-DEEP latency test for OpenSplice
Fri Apr 20 21:20:20 UTC 2007 xiong,ming <[email protected]>
* DEEP
* performance/latency/deep
Merged two DEEP versions together, and removed the deep
in latency direcotory
Wed Apr 18 21:41:27 UTC 2007 Jeff Parsons <[email protected]>
* DDEP/VendorSpecificIssues.html:
New document, enumerating the issues that require application
code to differ from one DDS implementation to another,
listing the behavior of each vendor on each issue, and
describing how each issue does or does not relate to
spec compliance.
Wed Apr 11 04:36:06 UTC 2007 xiong,ming <[email protected]>
* performance/latency/deep/README
* performance/latency/deep/actors/Actor.h
* performance/latency/deep/actors/impl/Actor_impl.cpp
* performance/latency/deep/actors/impl/Actor_impl.h
* performance/latency/deep/actors/impl/Laptimer_impl.cpp
* performance/latency/deep/actors/impl/Laptimer_impl.h
* performance/latency/deep/actors/impl/Reflector_impl.cpp
* performance/latency/deep/actors/impl/Reflector_impl.h
* performance/latency/deep/actors/impl/Sink_impl.cpp
* performance/latency/deep/actors/impl/Sink_impl.h
* performance/latency/deep/actors/impl/Source_impl.cpp
* performance/latency/deep/actors/impl/Source_impl.h
* performance/latency/deep/actors/impl/build.sh
* performance/latency/deep/build_OpenSplice.sh
* performance/latency/deep/build_RTI.sh
* performance/latency/deep/exec/OpenSplice/ospl.xml
* performance/latency/deep/exec/OpenSplice/run.sh
* performance/latency/deep/exec/OpenSplice/run_Reflector.sh
* performance/latency/deep/exec/OpenSplice/run_Source_Sink_1_to_1.sh
* performance/latency/deep/exec/OpenSplice/scenario.xml
* performance/latency/deep/exec/RTI/run.sh
* performance/latency/deep/exec/RTI/run_Reflector.sh
* performance/latency/deep/exec/RTI/run_Source_Sink_1_to_1.sh
* performance/latency/deep/exec/RTI/run_Source_Sink_1_to_12.sh
* performance/latency/deep/exec/RTI/run_Source_Sink_1_to_4.sh
* performance/latency/deep/exec/RTI/run_Source_Sink_1_to_8.sh
* performance/latency/deep/exec/RTI/scenario.xml
* performance/latency/deep/main/build_OpenSplice.sh
* performance/latency/deep/main/build_RTI.sh
* performance/latency/deep/main/deepParticipant.cpp
* performance/latency/deep/readerWriter/GenericReader.h
* performance/latency/deep/readerWriter/GenericWriter.h
* performance/latency/deep/readerWriter/OpenSplice
* performance/latency/deep/readerWriter/OpenSplice/deepTypes.idl
* performance/latency/deep/readerWriter/OpenSplice/generated
* performance/latency/deep/readerWriter/OpenSplice/generated/build.sh
* performance/latency/deep/readerWriter/OpenSplice/generated/build_TypeSupport.sh
* performance/latency/deep/readerWriter/OpenSplice/impl/GenericReader_impl.h
* performance/latency/deep/readerWriter/OpenSplice/impl/GenericWriter_impl.h
* performance/latency/deep/readerWriter/OpenSplice/impl/ReaderWriterFactory_impl.cpp
* performance/latency/deep/readerWriter/OpenSplice/impl/ReaderWriterFactory_impl.h
* performance/latency/deep/readerWriter/OpenSplice/impl/TypedFunctions.cpp
* performance/latency/deep/readerWriter/OpenSplice/impl/TypedFunctions.h
* performance/latency/deep/readerWriter/OpenSplice/impl/build.sh
* performance/latency/deep/readerWriter/RTI/deepTypes.idl
* performance/latency/deep/readerWriter/RTI/generated/build.sh
* performance/latency/deep/readerWriter/RTI/generated/build_TypeSupport.sh
* performance/latency/deep/readerWriter/RTI/impl/GenericReader_impl.h
* performance/latency/deep/readerWriter/RTI/impl/GenericWriter_impl.h
* performance/latency/deep/readerWriter/RTI/impl/ReaderWriterFactory_impl.cpp
* performance/latency/deep/readerWriter/RTI/impl/ReaderWriterFactory_impl.h
* performance/latency/deep/readerWriter/RTI/impl/TypedFunctions.cpp
* performance/latency/deep/readerWriter/RTI/impl/TypedFunctions.h
* performance/latency/deep/readerWriter/RTI/impl/build.sh
* performance/latency/deep/readerWriter/ReaderWriterFactory.h
* performance/latency/deep/readerWriter/ReaderWriterTypes.h
* performance/latency/deep/scenario/ActorSetting.h
* performance/latency/deep/scenario/LaptimerSetting.h
* performance/latency/deep/scenario/NamedSetting.h
* performance/latency/deep/scenario/ParticipantSetting.h
* performance/latency/deep/scenario/ReaderSetting.h
* performance/latency/deep/scenario/ReflectorSetting.h
* performance/latency/deep/scenario/ScenarioSetting.h
* performance/latency/deep/scenario/SettingTypes.h
* performance/latency/deep/scenario/SinkSetting.h
* performance/latency/deep/scenario/SourceSetting.h
* performance/latency/deep/scenario/TopicSetting.h
* performance/latency/deep/scenario/WriterSetting.h
* performance/latency/deep/scenario/impl
* performance/latency/deep/scenario/impl/ActorSetting_impl.cpp
* performance/latency/deep/scenario/impl/ActorSetting_impl.h
* performance/latency/deep/scenario/impl/NamedSetting_impl.cpp
* performance/latency/deep/scenario/impl/NamedSetting_impl.h
* performance/latency/deep/scenario/impl/ParticipantSetting_impl.cpp
* performance/latency/deep/scenario/impl/ParticipantSetting_impl.h
* performance/latency/deep/scenario/impl/ReaderSetting_impl.cpp
* performance/latency/deep/scenario/impl/ReaderSetting_impl.h
* performance/latency/deep/scenario/impl/ReflectorSetting_impl.cpp
* performance/latency/deep/scenario/impl/ReflectorSetting_impl.h
* performance/latency/deep/scenario/impl/ScenarioSetting_impl.cpp
* performance/latency/deep/scenario/impl/ScenarioSetting_impl.h
* performance/latency/deep/scenario/impl/SinkSetting_impl.cpp
* performance/latency/deep/scenario/impl/SinkSetting_impl.h
* performance/latency/deep/scenario/impl/SourceSetting_impl.cpp
* performance/latency/deep/scenario/impl/SourceSetting_impl.h
* performance/latency/deep/scenario/impl/TopicSetting_impl.cpp
* performance/latency/deep/scenario/impl/TopicSetting_impl.h
* performance/latency/deep/scenario/impl/WriterSetting_impl.cpp
* performance/latency/deep/scenario/impl/WriterSetting_impl.h
* performance/latency/deep/scenario/impl/build.sh
* performance/latency/deep/settingsParser
* performance/latency/deep/settingsParser/SettingsParserNode.h
* performance/latency/deep/settingsParser/impl
* performance/latency/deep/settingsParser/impl/SettingsParserDefault_impl.cpp
* performance/latency/deep/settingsParser/impl/SettingsParserDefault_impl.h
* performance/latency/deep/settingsParser/impl/SettingsParserXercesNode_impl.cpp
* performance/latency/deep/settingsParser/impl/SettingsParserXercesNode_impl.h
* performance/latency/deep/settingsParser/impl/SettingsParserXerces_impl.cpp
* performance/latency/deep/settingsParser/impl/SettingsParserXerces_impl.h
* performance/latency/deep/settingsParser/impl/build.sh
* performance/latency/deep/vendorAbstraction
* performance/latency/deep/vendorAbstraction/OpenSplice
* performance/latency/deep/vendorAbstraction/OpenSplice/implAbstraction.h
* performance/latency/deep/vendorAbstraction/OpenSplice/inclAbstraction.h
* performance/latency/deep/vendorAbstraction/RTI
* performance/latency/deep/vendorAbstraction/RTI/implAbstraction.h
* performance/latency/deep/vendorAbstraction/RTI/inclAbstraction.h
Checked in the version of RT-DEEP that is currently used for measuring round-trip
latency.
Thu Apr 5 22:20:18 UTC 2007 Jeff Parsons <[email protected]>
* MPC/config/ndds_ts_defaults.mpb:
* DEEP/readerWriter/RTI_DDS_impl/TypedFunctions.cpp:
* DEEP/readerWriter/RTI_DDS_impl/TypedFunctions.h:
* DEEP/readerWriter/RTI_DDS_impl/ReaderWriterFactory_impl.cpp:
Added '-namespace' to the command line of rtiddsgen in the
MPC base project file, and put back the scoped name passed
to several macros in the framework source files.
Thu Apr 5 19:00:24 UTC 2007 Jeff Parsons <[email protected]>
* DDEP/readerWriter/impl/GenericWriter_impl.h:
* DDEP/readerWriter/impl/ReaderWriterFactory_impl.cpp:
* DDEP/readerWriter/RTI_DDS_impl/GenericWriter_impl.h:
* DDEP/readerWriter/RTI_DDS_impl/GenericReader_impl.h:
* DDEP/readerWriter/TAO_DDS_impl/GenericWriter_impl.h:
Removed 'impl/' from some includes. Now that there are
such directories for each vendor, some of these includes
were incorrect, but they will all work without the
prefix in any case since the local directory is
searched first, which is what we want.
Thu Apr 5 17:47:37 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/readerWriter/generated/deepTypesSplDcps.h:
* DEEP/readerWriter/generated/deepTypesDcps.h:
* DEEP/readerWriter/generated/deepTypes.cpp:
* DEEP/readerWriter/generated/deepTypesDcps.idl:
* DEEP/readerWriter/generated/deepTypesDcps_impl.h:
* DEEP/readerWriter/generated/deepTypes.h:
* DEEP/readerWriter/generated/deepTypesSplDcps.cpp:
* DEEP/readerWriter/generated/ccpp_deepTypes.h:
* DEEP/readerWriter/generated/deepTypesDcps.cpp:
* DEEP/readerWriter/generated/deepTypesDcps_impl.cpp:
Removed these files, they are generated and shouldn't
be in the repository.
* DEEP/DEEP.mpc
Removed this file, since it isn't always the same
file, but copied from one of the 3 vendor-specific
MPC files below.
* DEEP/readerWriter/RTI_DDS_impl:
* DEEP/readerWriter/RTI_DDS_impl/TypedFunctions.cpp:
* DEEP/readerWriter/RTI_DDS_impl/GenericWriter_impl.h:
* DEEP/readerWriter/RTI_DDS_impl/TypedFunctions.h:
* DEEP/readerWriter/RTI_DDS_impl/GenericReader_impl.h:
* DEEP/readerWriter/RTI_DDS_impl/ReaderWriterFactory_impl.cpp:
* DEEP/readerWriter/RTI_DDS_impl/ReaderWriterFactory_impl.h:
New files in a new directory, used only for RTI DDS.
* DEEP/README:
Documents how to build the DEEP framework using MPC.
* MPC/config/ndds_ts_defaults.mpb:
* MPC/config/ndds.mpb:
Changes to keep in synch with the updated version of
RTI DDS - 4.1.
* DEEP/vendorAbstraction/OpenSplice/inclAbstraction.h:
* DEEP/vendorAbstraction/TAO_DDS/inclAbstraction.h:
* DEEP/vendorAbstraction/RTI/inclAbstraction.h:
RTI version filled in, minor changes to the others.
* DEEP/DEEP.mpc.RTI:
* DEEP/DEEP.mpc.TAO_DDS:
* DEEP/DEEP.mpc.OSPL:
Changes to the vendor-specific MPC files, mostly to
ensure that all the generated files appear in the
build file, and that they all get removed when 'clean'
is executed.
* DEEP/readerWriter/TAO_DDS_impl/GenericReader_impl.h:
* DEEP/readerWriter/TAO_DDS_impl/ReaderWriterFactory_impl.cpp:
* performance/latency/OpenSplice/tester.cpp:
* performance/latency/NDDS/latency/publisher.cxx:
* performance/latency/TAO_RTNS/pubmessageC.inl:
* performance/latency/TAO_RTNS/pubmessageC.cpp:
* performance/latency/TAO_RTNS/Supplier_Client.cpp:
* performance/latency/TAO_RTNS/Supplier.cpp:
* performance/latency/TAO_RTNS/tester.cpp:
* performance/latency/TAO_RTNS/pubmessageS.cpp:
* performance/latency/TAO_RTNS/pubmessageS.inl:
* performance/latency/TAO_RTNS/Notify_Lanes.mpc
* performance/latency/TAO_RTNS/Consumer_Client.cpp:
* performance/latency/TAO_RTNS/pubmessageC.h:
* performance/latency/TAO_RTNS/tester.h:
* performance/latency/TAO_RTNS/pubmessageS.h:
* performance/throughput/OpenSplice/C++/common_config.h:
* performance/throughput/NDDS/common.h:
* Test_Framework/dds_config.h:
* Test_Framework/Test_Framework.mpc:
* Test_Framework/TestBase.h:
* examples/TAODDSQuoter/DataReaderListener.cpp:
* examples/TAODDSQuoter/DataReaderListener.h:
Mostly minor changes to
- synch with newer versions of DDS implementations
- remove code related to exception emulation and
exception throw specs in TAO DDS- related code,
since this stuff was all recently removed from the
middleware itself to conform to the current OMG
IDL C++ mapping.
Mon Apr 2 21:05:09 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/readerWriter/TAO_DDS_impl/TypedFunctions.cpp:
* DEEP/readerWriter/TAO_DDS_impl/GenericWriter_impl.h:
* DEEP/readerWriter/TAO_DDS_impl/TypedFunctions.h:
* DEEP/readerWriter/TAO_DDS_impl/GenericReader_impl.h:
* DEEP/readerWriter/TAO_DDS_impl/ReaderWriterFactory_impl.cpp:
* DEEP/readerWriter/TAO_DDS_impl/ReaderWriterFactory_impl.h:
New files, a temporary design so the DEEP framework will
compile and link with TAO DDS until the final design is
decided upon.
* DEEP/vendorAbstraction/TAO_DDS/inclAbstraction.h:
* DEEP/vendorAbstraction/RTI/inclAbstraction.h:
Changes to the vendor-specific include files.
* DEEP/DEEP.mpc.RTI:
* DEEP/DEEP.mpc.TAO_DDS:
* DEEP/DEEP.mpc.OSPL:
Vendor-specific MPC files, necessary since each must have
its own vendor-specific include paths and libs to link to.
At present, just remove the extension after the .mpc from
the desired MPC file and generate.
* DEEP/deepTypes.idl:
Added necessary #pragmas for TAO DDS.
* DEEP/settingsParser/impl/SettingsParserDefault_impl.cpp:
* DEEP/settingsParser/impl/SettingsParserXerces_impl.cpp:
Commented out some unused variables.
Fri Mar 30 19:30:00 UTC 2007 James Edmondson <[email protected]>
* DDS/scripts/*:
benchmark and terminate should now work with latency exes
from OpenSplice, RTI DDS, and TAO DDS.
* DDS/performance/latency/NDDS/*
Ming's changes for NDDS latency. Should be similar to OpenSplice
now.
* DDS/performance/latency/TAO_DDS/*
Hieu's changes for TAO DDS latency. Separate code base from others:
more object oriented.
* DDS/performance/latency/OpenSplice
Modified some code that was different between NDDS and OpenSplice.
* DDS/settings/test/*
Changes were made to some of the latency test file settings. Nothing
major.
Fri Mar 30 19:25:53 UTC 2007 Jeff Parsons <[email protected]>
* DEEP/*:
New directory and files, containing the framework supplied by
the OpenSplice folks, along with a few minor mods for
portability. The example IDL file deepTypes.idl was moved
from the readerWriter directory to the top-level directory,
and MPC files were added that will build the whole thing
as-is, linking to the OpenSplice middleware lib for now.
Mon Feb 26 23:12:44 UTC 2007 Jeff Parsons <[email protected]>
* performace/latency/NDDS/latency/NDDS_latency.mpc:
Modified this file to reflect a change in the IDL
filename.
* performace/latency/NDDS/latency/latencyPlugin.cxx:
* performace/latency/NDDS/latency/latencySupport.h:
* performace/latency/NDDS/latency/latency.h:
* performace/latency/NDDS/latency/latencySupport.cxx:
* performace/latency/NDDS/latency/latency.cxx:
* performace/latency/NDDS/latency/latencyPlugin.h:
Removed these generated files from the repository.
Mon Feb 26 22:56:24 UTC 2007 Jeff Parsons <[email protected]>
* performance/latency/OpenSplice/Splice_latency.mpc:
* performance/latency/NDDS/latency/NDDS_latency.mpc:
New MPC files, to generate builds for the Splice and NDDS
latency tests.
* performance/throughput/TAO_DDS/TCP/TPTDef.idl:
Moved from removed directory
performance/throughput/TAO_DDS/TypeNoKeyBounded.
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportImpl.h:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportImpl.h:
* performance/latency/NDDS/latency/results:
* performance/latency/NDDS/latency/results_ndds_nest:
* performance/latency/NDDS/latency/results_ndds:
* performance/latency/NDDS/latency/results_ndds_nest_without_16384:
* performance/latency/NDDS/latency/NDDSLatencyGlobalSettings.h:
* performance/latency/NDDS/template/HelloWorldPlugin.h:
* performance/latency/NDDS/template/HelloWorld.h:
* performance/latency/NDDS/template/HelloWorldSupport.cxx:
* performance/latency/NDDS/template/HelloWorldPlugin.cxx:
* performance/latency/NDDS/template/HelloWorld.cxx:
* performance/latency/NDDS/template/HelloWorldSupport.h:
* performance/throughput/TAO_DDS/TypeNoKeyBounded:
* performance/throughput/TAO_DDS/TypeNoKeyBounded/TypeNoKeyBounded.mpc:
* performance/throughput/TAO_DDS/TypeNoKeyBounded/TPTTypeLib_Export.h:
* performance/throughput/TAO_DDS/TypeNoKeyBounded/TPTDef.idl:
* performance/latency/TAO_DDS/Latency/DDSPerfTestC.h:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportC.h:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportC.cpp:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportC.inl:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportS.h:
* performance/latency/TAO_DDS/Latency/DDSPerfTestS.h:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportS.h:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportImpl.cpp:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportC.inl:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportC.cpp:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportS.cpp:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportS.inl:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupport.idl:
* performance/latency/TAO_DDS/Latency/DDSPerfTestC.cpp:
* performance/latency/TAO_DDS/Latency/DDSPerfTestC.inl:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportC.cpp:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportC.inl:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportImpl.cpp:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportS.inl:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportS.cpp:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupport.idl:
* performance/latency/TAO_DDS/Latency/DDSPerfTestS.inl:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportC.h:
* performance/latency/TAO_DDS/Latency/DDSPerfTestS.cpp:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportImpl.cpp:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportS.cpp:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupportS.inl:
* performance/latency/TAO_DDS/Latency/PubMessageTypeSupport.idl:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportImpl.h:
* performance/latency/TAO_DDS/Latency/PubComplexMessageTypeSupportC.h:
* performance/latency/TAO_DDS/Latency/AckMessageTypeSupportS.h:
* performance/latency/TAO_DDS/Conversion/DDSPerfTestC.h:
* performance/latency/TAO_DDS/Conversion/PubMessageTypeSupportC.h:
* performance/latency/TAO_DDS/Conversion/AckMessageTypeSupportC.cpp:
* performance/latency/TAO_DDS/Conversion/AckMessageTypeSupportC.inl:
* performance/latency/TAO_DDS/Conversion/PubComplexMessageTypeSupportS.h:
* performance/latency/TAO_DDS/Conversion/DDSPerfTestS.h:
* performance/latency/TAO_DDS/Conversion/PubMessageTypeSupportS.h:
* performance/latency/TAO_DDS/Conversion/PubComplexMessageTypeSupportC.inl:
* performance/latency/TAO_DDS/Conversion/PubComplexMessageTypeSupportC.cpp:
* performance/latency/TAO_DDS/Conversion/AckMessageTypeSupportS.cpp:
* performance/latency/TAO_DDS/Conversion/AckMessageTypeSupportS.inl:
* performance/latency/TAO_DDS/Conversion/AckMessageTypeSupport.idl:
* performance/latency/TAO_DDS/Conversion/DDSPerfTestC.cpp:
* performance/latency/TAO_DDS/Conversion/DDSPerfTestC.inl:
* performance/latency/TAO_DDS/Conversion/PubMessageTypeSupportC.cpp:
* performance/latency/TAO_DDS/Conversion/PubMessageTypeSupportC.inl:
* performance/latency/TAO_DDS/Conversion/sub_simple_results
* performance/latency/TAO_DDS/Conversion/PubComplexMessageTypeSupportS.inl:
* performance/latency/TAO_DDS/Conversion/PubComplexMessageTypeSupportS.cpp:
* performance/latency/TAO_DDS/Conversion/PubComplexMessageTypeSupport.idl:
* performance/latency/TAO_DDS/Conversion/DDSPerfTestS.inl:
* performance/latency/TAO_DDS/Conversion/DDSPerfTestS.cpp:
* performance/latency/TAO_DDS/Conversion/AckMessageTypeSupportC.h:
* performance/latency/TAO_DDS/Conversion/PubMessageTypeSupportS.cpp:
* performance/latency/TAO_DDS/Conversion/PubMessageTypeSupportS.inl:
* performance/latency/TAO_DDS/Conversion/PubMessageTypeSupport.idl:
* performance/latency/TAO_DDS/Conversion/sub_complex_results:
* performance/latency/TAO_DDS/Conversion/.depend.Conversion_Pub:
* performance/latency/TAO_DDS/Conversion/.depend.Conversion_Sub:
* performance/latency/TAO_DDS/Conversion/sub_results:
* performance/latency/TAO_DDS/Conversion/PubComplexMessageTypeSupportC.h:
* performance/latency/TAO_DDS/Conversion/AckMessageTypeSupportS.h:
* performance/throughput/OpenSplice/C/waitset/Splice_c_waitset_tp.mpc:
* performance/throughput/OpenSplice/C/listener/Splice_c_listener_tp.mpc:
* performance/throughput/NDDS/Stats.h:
* performance/throughput/NDDS/Stats.cxx:
Removed files, including generated files that shouldn't be in the
repository, Stats files that are now replace by inclusions from
the Stats library, and test results files.
* performance/throughput/NDDS/subscriber.cxx:
* performance/throughput/TAO_DDS/TCP/dds_config_file.cpp:
* performance/throughput/TAO_DDS/TCP/DataReaderListener.cpp:
* performance/throughput/TAO_DDS/TCP/subscriber.cpp:
* performance/throughput/TAO_DDS/TCP/Writer.cpp:
* performance/throughput/TAO_DDS/TCP/TCP.mpc:
* performance/throughput/TAO_DDS/TCP/publisher.cpp:
* Test_Framework/DataWriterListener_T.cpp:
* Test_Framework/TAO_DDS_Test_T.cpp:
* Test_Framework/Splice_Test_T.cpp:
* Test_Framework/TAO_DDS_Test_Pub_T.cpp:
* Test_Framework/Splice_Test_Pub_T.cpp:
* Test_Framework/TAO_DDS_Test_Sub_T.cpp:
* Test_Framework/Splice_Test_Sub_T.cpp:
* Test_Framework/TestBase.cpp:
* Test_Framework/NDDS_Test_T.h:
* Test_Framework/NDDS_Test_Pub_T.h:
* Test_Framework/NDDS_Test_Sub_T.h:
* Test_Framework/Test_Framework.mpc:
* Test_Framework/TAO_DDS_Test_T.h:
* Test_Framework/Splice_Test_T.h:
* Test_Framework/TAO_DDS_Test_Pub_T.h:
* Test_Framework/NDDS_Test_T.cpp:
* Test_Framework/Splice_Test_Pub_T.h:
* Test_Framework/TAO_DDS_Test_Sub_T.h:
* Test_Framework/TestBase.h:
* Test_Framework/Splice_Test_Sub_T.h:
* Test_Framework/NDDS_Test_Pub_T.cpp:
* Test_Framework/NDDS_Test_Sub_T.cpp:
* MPC/config/ndds_ts_defaults.mpb:
* MPC/config/ndds.mpb:
* performance/latency/TAO_RTNS/Notify_Lanes.mpc:
* performance/latency/TAO_DDS/Latency/DDSPerfTest.idl:
* performance/latency/TAO_DDS/Latency/Latency.mpc:
* performance/throughput/OpenSplice/C/listener/subscriber.cpp:
* performance/throughput/OpenSplice/C/listener/publisher_aux.h:
* performance/throughput/OpenSplice/C/listener/publisher.cpp:
* performance/throughput/OpenSplice/C++/TPTDef.idl:
* performance/throughput/OpenSplice/C++/Splice_c++_throughput.mpc:
* performance/throughput/NDDS/TP_Packet.idl:
* performance/throughput/NDDS/publisher.cxx:
* performance/throughput/NDDS/NDDS_throughput.mpc:
Modified files, including changes to IDL files to bring the various
test IDLs into more consistency, with corresponding changes
to hand-written test code, changes to .mpb base class MPC
projects to get all generated files removed upon a 'make clean'
or equivalent, some recent changes to the test framework still
in development, and cosmetic changes to source code.
Mon Feb 26 21:58:36 UTC 2007 James Edmondson <[email protected]>
* performance/latency/NDDS/latency/*
* settings/*
Added Ming's file name changes in the NDDS latency directory.
The changes to the settings files are minor and only specify
diff blades that are currently being used (blade33-34).
Fri Feb 23 22:52:11 UTC 2007 Jeff Parsons <[email protected]>
* MPC/config/splice_ts_defaults.mpb:
* MPC/config/splice.mpb:
Modified these files to work with the C++ standalone mapping of
OpenSplice, previous version worked with the C mapping. Also
made changes so that whatever passes for 'make clean' on
a given build platform will remove all of the 10 files
generated by the Splice IDL compiler, with all of their
various suffixes and prefixes.
Fri Feb 23 21:50:21 UTC 2007 Jeff Parsons <[email protected]>
* performance/throughput/OpenSplice/C++/Stats.cpp:
* performance/throughput/OpenSplice/C++/Stats.h:
* performance/throughput/OpenSplice/C++/types_registration.h:
* performance/throughput/OpenSplice/C++/stats_export.h:
* performance/throughput/OpenSplice/C++/getopt.h:
Removed these files. The stats-related files were duplicates
of those in the Stats library, the contents of the other
files were refactored into existing files.
* performance/throughput/OpenSplice/C++/Splice_c++_throughput.mpc:
New file, which generates 3 builds: the common generated code
in a library, and the publisher and subscriber as executables
that share the generated code.
* performance/throughput/OpenSplice/C++/common_config.h:
Factored out write-specific and read-specific methods
into their corresponding publisher and subscriber source
files. Also added necessary includes for the generated
code. Also added workarounds for clashes in macro and
type definitions between ACE and OpenSplice.
* performance/throughput/OpenSplice/C++/subscriber.cpp:
* performance/throughput/OpenSplice/C++/publisher.cpp:
Rearranged include files, plus cosmetic changes. Changed
all output messages to use ACE_DEBUG or ACE_ERROR.
* performance/throughput/OpenSplice/C++/TPTDef.idl:
Replace all bounded sequence declarations for a given
data type with a single unbounded sequence for that type.
Also added empty keylist pragma directives.
Mon Feb 19 23:13:33 UTC 2007 James Edmondson <[email protected]>
* scripts/benchmark.pl
* scripts/terminate.pl
* scripts/ospl_*
* settings/environment
* settings/ospl_environment
* settings/test/latency*
* settings/net/one_node.settings
* settings/net/two_node.settings
* performance/latency/NDDS/latency/*
* performance/latency/OpenSplice/*
Benchmark.pl and terminate.pl now start processes up as root
for rt_class usage. Several bash scripts were replaced with
perl scripts for portability. DDS environment files were added
to aid setting up environment (especially LD_LIBRARY_PATH).
OpenSplice latency code has been incorporated into the DBE. Initial
pass at NDDS latency code (it compiles but has not been incorporated
yet).
Added new settings files for latency tests and testing on the same
node. Functionality has been there for a long time. This was just done
to add a template file for others to use.
Fri Feb 2 22:29:08 UTC 2007 Jeff Parsons <[email protected]>
* performance/throughput/NDDS/TP_Packet.idl:
Removed all declarations of bounded sequences, left only
a struct containing an unbounded octet sequence, along
with some comments about possible future changes and
problems.
Wed Jan 31 21:50:42 UTC 2007 James Edmondson <[email protected]>
* performance/throughput/OpenSplice/C/waitset/SpliceCompile
* performance/throughput/OpenSplice/C/listener/SpliceCompile