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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
|
Thu Jun 1 21:23:51 UTC 2006 <ming.xiong@vanderbilt.edu>
* examples/Hello/descriptors/run_test.pl
Changed the codes so that it will correctly destroy all
running processes upon failure.
Thu Jun 1 16:03:26 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* DAnCE/Planner/Planner.cpp:
Added global qualifier (double colon) to the specialization
and typedef of the planner's Node class, to avoid an
'ambiguous symbol' error in VC8, which is presumably confusing
it with Deployment::Node.
Thu Jun 1 15:49:47 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* DAnCE/Planner/Node_T.h
* DAnCE/Planner/Planner.cpp
Modified some minor errors.
Thu Jun 1 12:55:07 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/Display/NavDisplay/NavDisplay.mpc:
Fixed typo.
Wed May 31 18:46:37 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/Display/NavDisplay/NavDisplay.mpc:
Added 'libs += Display_Base_stub' to the
Display_Base_NaviDisplay_stub project so that VC8, with its
parallel builds, will know about the dependency that VC7.1
seems to get from the 'after' line.
Wed May 31 18:17:11 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* DAnCE/TargetManager/TM_Client.mpc:
Cosmetic changes.
Wed May 31 17:08:17 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* DAnCE/Planner/Planner.mpc
* DAnCE/Planner/Planner.cpp
Removed the generated file of Repoman (RepositoryManagerDaemonC.*)
included in the Planner project and use the RepositoryManagerC.*.
Wed May 31 16:49:12 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* DAnCE/RepositoryManager/RepositoryManager_Impl.cpp
Made some minor changes.
Tue May 30 10:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* DAnCE/NodeManager/MonitorController.cpp:
Fixed typo
Tue May 30 06:16:58 UTC 2006 Boris Kolpackov <boris@kolpackov.net>
* tools/Config_Handlers/XSCRT/Elements.hpp:
Added a fix for Sun C++ <= 5.7 template instantiation issue.
Tue May 30 00:00:22 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* DAnCE/Planner/Node_T.h:
* DAnCE/Planner/Node_T.inl:
* DAnCE/Planner/Node_T.cpp:
* DAnCE/Planner/PCVisitor.h:
* DAnCE/Planner/PCVisitor.cpp:
* DAnCE/Planner/PCVisitorBase.h:
* DAnCE/Planner/PCVisitorBase.inl:
* DAnCE/Planner/PCVisitorBase.cpp:
* DAnCE/Planner/Planner.mpc:
* DAnCE/Planner/Planner.cpp:
Checking in the Planner for DAnCE which creates a Deployment
Plan on the fly (in-memory).
* RACE/Input_Adapters/LocationUpdater/Injector.cpp:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater.cdp:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater.cidl:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater.idl:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater_deployment.dat:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater_exec.h:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater_exec.cpp:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater_exec_export.h:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater_stub_export.h:
* RACE/Input_Adapters/LocationUpdater/LocationUpdater_svnt_export.h:
* RACE/Input_Adapters/LocationUpdater/Location_Updater.mpc.disable:
* RACE/Input_Adapters/LocationUpdater/PCVisitorBase.h:
* RACE/Input_Adapters/LocationUpdater/PCVisitorBase.inl:
* RACE/Input_Adapters/LocationUpdater/PCVisitorBase.cpp:
* RACE/Input_Adapters/LocationUpdater/PlanUpdater.h:
* RACE/Input_Adapters/LocationUpdater/PlanUpdater.cpp:
* RACE/Input_Adapters/LocationUpdater/README.txt:
Adding the LocationUpdater which is a RACE input adapter which
updates the locations of the implementation artifact to reclect
the ones available in the RepositoryManager. Please see the README
and the code for more info.
* RACE/Input_Adapters/PlanGenerator/Injector.cpp:
* RACE/Input_Adapters/PlanGenerator/PCVisitorBase.h:
* RACE/Input_Adapters/PlanGenerator/PCVisitorBase.inl:
* RACE/Input_Adapters/PlanGenerator/PCVisitorBase.cpp:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator.h:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator.cdp:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator.cidl:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator.cpp:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator.idl:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator.mpc.disable:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator_deployment.dat:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator_exec.h:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator_exec.cpp:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator_exec_export.h:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator_stub_export.h:
* RACE/Input_Adapters/PlanGenerator/PlanGenerator_svnt_export.h:
* RACE/Input_Adapters/PlanGenerator/README.txt:
Adding the PlanGenerator which is a RACE input adapter which queries
the RepositoryManager for an installation name, retrieves the corresponding
PackageConfiguration, and builds the DeploymentPlan on the fly. Please see
the README and the code for more info.
Mon May 29 21:58:18 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp:
Got rid of the code that updates the loader path for the
libraries downloaded via HTTP. Now this has to be done
manually.
* DAnCE/RepositoryManager/PC_Updater.cpp:
* DAnCE/RepositoryManager/README.txt:
* DAnCE/RepositoryManager/RepositoryManager_Impl.cpp:
Changing the way library names are matched to be more general.
Some additions to the README
A minor change to one of the functions
Mon May 29 19:07:54 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* DAnCE/NodeApplication/Configurator_Factory.cpp:
* DAnCE/NodeManager/MonitorController.cpp:
* examples/Swapping/Sender/Sender_exec.cpp:
Changed C-style casts from void* to pointer-to-function
to two-step reinterpret_cast<>s, with ptrdiff_t as a
temporary intermediate. C++ forbids casting directly
between pointer-to-object and pointer-to-function, and
some the newer compilers are catching it.
Mon May 29 17:44:01 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/Display/Display_Base/Display_Base.mpc:
Changed the base project of Display_Base_stub from
ciao_client_dnc to ciao_events_base_dnc, in order to pull
in a needed dependency on CIAO_DnC_Container. Thanks to
Ming Xiong <mxiong@dre.vanderbilt.edu> for supplying the
fix.
Mon May 29 15:32:38 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/Display/NavDisplay/NavDisplay.mpc:
Cosmetic changes (shortened long lines).
* examples/Display/NavDisplayGUI_exec/NavDisplayGUI.mpc:
Changed 'after +=' and 'libs +=' lines to reflect recent
changes to other examples/Display projects.
Fri May 26 13:57:38 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* DAnCE/RepositoryManager/RMAdmin.cpp(ACE_TMAIN):
Fixed unused variable warning, cosmetic changes.
Fri May 26 12:59:03 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
* DAnCE/NodeManager/NAM_Map.cpp:
Make the equality test explicit to work with the revised octet
sequence implementation.
Thu May 25 19:02:52 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* ciao/Container_Base.cpp(ciao_install_home):
Changed the single-step reinterpret_cast of the component
DLL entry points to be a two-step process: first to the
integer type 'ptrdiff_t' then to the desired pointer-to-
function type. A single cast won't work because casting
from pointer-to-object (even void*) to pointer-to-function
directly is not allowed in C++.
Thu May 25 11:50:39 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
* ciao/Container_Base.cpp:
Replace the use of static_cast in ciao_install_home with
reinterpret_cast since void* sources are involved.
Wed May 24 17:35:53 UTC 2006 Nanbor Wang <nanbor@exothermic.txcorp.com>
* examples/Display/RateGen/RateGen.mpc: Fixed the project
dependency for controller.
Tue May 23 22:46:58 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* DAnCE/RepositoryManager/Options.cpp
* DAnCE/RepositoryManager/Options.h
* DAnCE/RepositoryManager/RMadmin.cpp
* DAnCE/RepositoryManager/RepositoryManager_Impl.h
* DAnCE/RepositoryManager/RepositoryManager_Impl.cpp
* DAnCE/RepositoryManager/RepositoryManager.cpp
Added the code to save the state of the RepoMan at exit and
load the state of it at start.
Tue May 23 14:31:11 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* DAnCE/RepositoryManager/Options.cpp
* DAnCE/RepositoryManager/Options.h
* DAnCE/RepositoryManager/RMadmin.cpp
* DAnCE/RepositoryManager/RepositoryManager_Impl.cpp
* DAnCE/RepositoryManager/RepositoryManager.cpp
Added the naming service & the implementation of createPackage
function to RepoMan.
Mon May 22 18:49:14 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* ciao/Container_Base.cpp(ciao_install_home):
Changed C-style casts of DLL entrypoints to static_cast<>s
to the appropriate pointer to function. This change is
intended to eliminate warnings from gcc 4.0.
Fri May 19 16:49:32 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp:
* DAnCE/NodeApplicationManager/URL_Parser.cpp:
* DAnCE/NodeManager/Node_Manager.cpp:
Minor changes to eliminate scoreboard warnings, and to bring
code in line with the ACE style guidelines.
Thu May 18 20:28:00 UTC 2006 Roopa Pundaleeka <roopa@txcorp.com>
* examples/Display/GPS/GPS_Impl.ccd:
* examples/Display/NavDisplay/NavDisplay_Impl.ccd:
* examples/Display/RateGen/RateGen_Impl.ccd:
Removed these generated files from CVS.
Thu May 18 11:28:52 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
* examples/Display/Display_Base/GNUmakefile:
* examples/Display/Display_Base/GNUmakefile.Display_Base_stub:
* examples/Display/Display_Base/GNUmakefile.Display_Base_svnt:
Removed these files from CVS.
Wed May 17 21:20:46 UTC 2006 Roopa Pundaleeka <roopa@txcorp.com>
* TAO/CIAO/examples/Display:
Ported the Display example to use the new CIAO framework
Tue May 16 12:10:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* README:
Removed mentioning of vc6
Mon May 15 20:48:52 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* CIDLC/ServantSourceGenerator.cpp (generate):
Removed commented-out code.
* CIDLC/ServantHeaderGenerator.cpp (generate_facets):
Fixed cut-and-paste error that was causing facet servant
class declaration to get skipped when the composition is
defined inside one or more IDL modules.
Fri May 12 07:36:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/Utils/Functors.h:
Added a workaround for specific for BCB6, should fix the gcc4
internal compiler errors
Fri May 12 07:29:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/XSCRT/Elements.hpp:
The work around is needed for < gcc 3.3 and also BCB6, so make
it a little bit more easier to handle this.
Thu May 11 21:24:45 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* CIDLC/Literals.cpp:
* CIDLC/Literals.hpp:
* CIDLC/ServantHeaderGenerator.cpp:
* CIDLC/ServantHeaderGenerator.hpp:
* CIDLC/ServantSourceGenerator.cpp:
* CIDLC/ServantSourceGenerator.hpp:
* CIDLC/UtilityTypeNameEmitters.cpp:
* CIDLC/UtilityTypeNameEmitters.hpp:
Change code generation for facet servant classes to be
defined in a special namespace created from a prefix
and a flattened version of the name of the scope
containing the interface that supports the facet. This
change enables facets in the same translation unit
using the same interface to use a single source code
definition (an internal check in the CIDL compiler
guarantees that the facet servant class is generated
once per interface per translation unit). The fact
that the actual facet servant class type is an instantiation
of a template class ensures that the same interface type
used as a facet in multiple translation units in a build
will not produce multiple-definition link errors,
although in this case there will be duplicated code.
Thanks to James Hill <j.hill@vanderbilt.edu> for providing
the multiple-facet-single-translation-unit use case
and to Nanbor Wang <nanbor@txcorp.com> for his comments
on the proposed solution.
Wed May 10 14:04:57 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* DAnCE/NodeManager/MonitorCB.cpp
* DAnCE/TargetManager/CmpClient.cpp
* DAnCE/TargetManager/DomainDataManager.cpp
Fixes for warnings.
Mon May 8 20:41:43 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* bin/PerlCIAO/perlciao.mpc:
Fixing a fuzz build error due to a missing Id tag
Mon May 8 15:33:58 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* DAnCE/RepositoryManager/HTTP_Client.h:
* DAnCE/RepositoryManager/HTTP_Client.cpp:
* DAnCE/RepositoryManager/HTTP_Handler.h:
* DAnCE/RepositoryManager/HTTP_Handler.cpp:
* DAnCE/RepositoryManager/Options.h:
* DAnCE/RepositoryManager/Options.cpp:
* DAnCE/RepositoryManager/PC_Updater.h:
* DAnCE/RepositoryManager/PC_Updater.cpp:
* DAnCE/RepositoryManager/PC_Updater_T.h:
* DAnCE/RepositoryManager/PC_Updater_T.cpp:
* DAnCE/RepositoryManager/README.txt:
* DAnCE/RepositoryManager/RM_Helper.h:
* DAnCE/RepositoryManager/RM_Helper.cpp:
* DAnCE/RepositoryManager/RMadmin.cpp:
* DAnCE/RepositoryManager/RepositoryManager.cpp:
* DAnCE/RepositoryManager/RepositoryManagerDaemon.idl:
* DAnCE/RepositoryManager/RepositoryManager_Impl.h:
* DAnCE/RepositoryManager/RepositoryManager_Impl.cpp:
* DAnCE/RepositoryManager/URL_Parser.h:
* DAnCE/RepositoryManager/URL_Parser.cpp:
* DAnCE/RepositoryManager/ZIP_Wrapper.h:
* DAnCE/RepositoryManager/ZIP_Wrapper.cpp:
Updating the RepositoryManager with the latest changes from the
escher repository. Adding my newest changes. Adding some new
minor features.
* bin/PerlCIAO/TestUtils.base:
* bin/PerlCIAO/TestUtils.pm:
* bin/PerlCIAO/TestUtils_Base.pm:
* bin/PerlCIAO/generate_container.pl:
* bin/PerlCIAO/perlciao.mpc:
This is a set of test utilities tailored towards testing CIAO components.
It provides a nice and quick interface provising the common functionality
necessary to run a CIAO test and perform clean-up on failure. This utils
are a wrapper around the $ACE_ROOT/bin/PerlACE/ utilities. I will check in
an example of how test utils are used shortly.
* tools/Config_Handlers/IDD_Handler.cpp:
Fixing a bug in the PackageConfiguration reverse handler.
Fri May 5 15:36:47 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* docs/cidlc.html Added documentation for the CIDL compiler.
Thanks to Boris for contributing this.
* docs/index.html: Fixed some broken links to the tutorials and added
a link to Ming's tutorial example that shows how to use CoSMIC.
Fri May 5 16:58:17 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/ExecutionManager/Execution_Manager.cpp (CIAO): Fixed the
parsing of command line options.
Thu May 4 21:35:01 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* tools/Config_Handlers/ADD_Handler.cpp
* tools/Config_Handlers/DP_Handler.cpp
Fixed a reverse handler bug.
Thu May 4 08:33:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* DAnCE/RepositoryManager/PC_Updater.cpp:
Fixed compilation error
Wed May 3 22:11:32 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* docs/schema/Basic_Deployment_Data.xsd
* docs/schema/ccd.xsd
* docs/schema/cdd.xsd
* docs/schema/cdp.xsd
* docs/schema/cid.xsd
* docs/schema/cpd.xsd
* docs/schema/iad.xsd
* docs/schema/pcd.xsd
* docs/schema/toplevel.xsd
Schema propagated from the ARMS repo.
Wed May 3 12:53:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* Config_Handlers/Utils/Functors.h:
Made the FUNC argument just return void, this fixes the errors with this
template with BCB on my system, hopefully it doesn't break other
compilers
Tue May 2 03:04:50 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/NodeApplication/NodeApplication.cpp: Removed the code
snippet that bootstraps the NodeApplication process at a
specific OS priority.
Wed Apr 26 21:25:26 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* tools/Config_Handlers/Config_Handlers.mpc
* tools/Config_Handlers/Property_Handler.h
* tools/Config_Handlers/SatisfierProperty_Handler.h
* tools/Config_Handlers/Package_Handlers/CAD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CID_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CPD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/Comp_Intf_Descr_Handler.cpp
* tools/Config_Handlers/Package_Handlers/IAD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/Package_Handlers.mpc
* tools/Config_Handlers/Utils/Functors.h
Introduced a workaround for a ICE in GCC 4.0.22.
Wed Apr 26 13:10:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/DP_Handler.cpp:
* tools/Config_Handlers/XML_File_Intf.cpp:
* tools/Config_Handlers/Package_Handlers/PC_Intf.cpp:
* tools/Config_Handlers/XSCRT/XMLSchema.hpp:
* tools/Config_Handlers/XSCRT/Elements.hpp:
* tools/Config_Handlers/XSCRT/XML.hpp:
Removed workarounds for vc6 again
* tools/Config_Handlers/Package_Handlers/NIA_Handler.h:
Added missing post.h
* tools/Config_Handlers/Package_Handlers/CPD_Handler.h:
* tools/Config_Handlers/Package_Handlers/PC_Intf.h:
Fixed incorrect file tags
Wed Apr 26 08:46:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* DAnCE/TargetManager/DomainDataManager.h:
Fixed compile problem in gcc4 build
Tue Apr 25 21:27:05 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* DAnCE/TargetManager/TargetManager.mpc
Linking problems for Borland.
* tools/Config_Handlers/Package_Handlers/PCD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/SID_Handler.cpp
More compile fixes for Borland.
Tue Apr 25 20:12:25 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* DAnCE/NodeApplication/NodeApplication_Impl.cpp
* DAnCE/NodeApplication/NodeApplication_Impl.h
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp
* DAnCE/NodeApplicationManager/Containers_Info_Map.h
* ciao/Deployment_Core.idl
* tools/Config_Handlers/ADD_Handler.cpp
* tools/Config_Handlers/CCD_Handler.cpp
* tools/Config_Handlers/CEPE_Handler.cpp
* tools/Config_Handlers/CEPE_Handler.h
* tools/Config_Handlers/CPD_Handler.cpp
* tools/Config_Handlers/CPD_Handler.h
* tools/Config_Handlers/DP_Handler.cpp
* tools/Config_Handlers/Deployment.hpp
* tools/Config_Handlers/ERE_Handler.cpp
* tools/Config_Handlers/ERE_Handler.h
* tools/Config_Handlers/MDD_Handler.cpp
* tools/Config_Handlers/PCD_Handler.cpp
* tools/Config_Handlers/PCD_Handler.h
* tools/Config_Handlers/Property_Handler.cpp
* tools/Config_Handlers/Property_Handler.h
* tools/Config_Handlers/Req_Handler.cpp
* tools/Config_Handlers/Req_Handler.h
* tools/Config_Handlers/SatisfierProperty_Handler.cpp
* tools/Config_Handlers/SatisfierProperty_Handler.h
* tools/Config_Handlers/cdp.hpp
* tools/Config_Handlers/toplevel.hpp
* tools/Config_Handlers/Package_Handlers/CAD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CID_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CPD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CPD_Handler.h
* tools/Config_Handlers/Package_Handlers/Comp_Intf_Descr_Handler.cpp
* tools/Config_Handlers/Package_Handlers/NIA_Handler.h
* tools/Config_Handlers/Package_Handlers/PCD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/SID_Handler.cpp
* tools/Config_Handlers/Package_Handlers/SID_Handler.h
Compilation fixes for borland, some cosmetic fixes as well.
Tue Apr 25 09:00:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/CPD_Handler.h:
ComponentPortDescription is a struct, so also forward declare it
as a struct
Mon Apr 24 18:53:22 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* CIDLC/ServantSourceGenerator.cpp
Fixed a code generation problem caused by careless merging.
Mon Apr 24 18:40:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/ADD_Handler.cpp:
* tools/Config_Handlers/DP_Handler.cpp:
* tools/Config_Handlers/ID_Handler.h:
Removed incorrect semi colons
Mon Apr 24 06:33:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/IDREF_Base.cpp:
Removed not needed semi colon that caused compile errors in some
builds
Sun Apr 23 11:22:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/Utils/XML_Helper.h:
Fixed compile error
Sat Apr 22 21:13:10 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* tools/Config_Handlers/CIAO_Events/CIAOEvents.hpp
* tools/Config_Handlers/Basic_Deployment_Data.hpp
* tools/Config_Handlers/Deployment.hpp
* tools/Config_Handlers/ccd.hpp
* tools/Config_Handlers/cdd.hpp
* tools/Config_Handlers/cdp.hpp
* tools/Config_Handlers/cid.hpp
* tools/Config_Handlers/cpd.hpp
* tools/Config_Handlers/iad.hpp
* tools/Config_Handlers/pcd.hpp
* tools/Config_Handlers/toplevel.hpp
* tools/Config_Handlers/RT-CCM/CIAOServerResources.hpp
Compile errors.
Fri Apr 21 16:24:46 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* Merge from the ARMS Escher repository.
Changelog entries to follow:
Tue Apr 11 09:29:12 UTC 2006 <wotte@blade35.isislab.vanderbilt.edu>
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
* DAnCE/NodeApplication/NodeApplication_Impl.cpp
* DAnCE/NodeApplication/NodeApplication_Impl.h
* DAnCE/NodeManager/Node_Manager.cpp
Additional debugging/compile fixes.
Tue Apr 11 08:30:42 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* ciao/Deployment_Core.idl
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.h
* DAnCE/ExecutionManager/ExecutionManager_Impl.cpp
* DAnCE/ExecutionManager/ExecutionManager_Impl.h
Modified to passivate (and reactivate later) shared components
when tearing down an assembly.
Sun Apr 9 01:03:19 UTC 2006 <wotte@blade35.isislab.vanderbilt.edu>
* M APRIL_DEMO.mwc
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
* DAnCE/ExecutionManager/Execution_Manager.cpp
* DAnCE/ExecutionManager/Execution_Manager_Impl.cpp
* DAnCE/NodeApplication/NodeApplication_Impl.cpp
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp
* DAnCE/NodeManager/MonitorCB.cpp
* DAnCE/NodeManager/NodeManager_Impl.cpp
* DAnCE/NodeManager/Node_Manager.cpp
* DAnCE/Plan_Launcher/Plan_Launcher_Impl.cpp
Various compile/runtime fixes.
Fri Apr 7 15:47:34 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
Modified to enforce passivation occured on all components
before any connections are removed.
Fri Apr 7 03:28:03 UTC 2006 Edward R. Mulholland <emulholl@atl.lmco.com>
* tools/Config_Handlers/Utils/XML_Helper.cpp:
Replaced "throw;" (which Stroustrup tells us causes an abort)
with "throw 0;" (kind of like an unnamed exception, which is
clearly what the author of this code intended).
* ciao/Packaging_Data.idl:
I've had occasion to use this file with the IFR Service, and
I've found that the IFR Service backend chokes on a bunch of
stuff here. The stuff that it chokes on has been protected with
"#ifndef AVOID_IFR_CRASH" so that you can protect the backend
from crashing if you pass -DAVOID_IFR_CRASH to tao_ifr.
* ciao/Servant_Impl_Base.cpp:
* ciao/Servant_Impl_Base.h:
Implemented the add_receptacle operation.
Fri Apr 7 02:55:37 UTC 2006 Edward R. Mulholland <emulholl@atl.lmco.com>
* DAnCE/Plan_Launcher/Plan_Launcher_Impl.cpp:
Added ACE_CATCHANY and ACE_CATCHALL blocks in
Plan_Launcher_i::launch_plan to avoid crashing in case of CORBA
fault.
Fri Apr 7 02:54:29 UTC 2006 Edward R. Mulholland <emulholl@atl.lmco.com>
* DAnCE/NodeApplication/Configurator_Factory.cpp:
Options beginning with "-ORB" are explicitly ignored. This
avoids having an "-ORB" option mistakenly parsed as being a
"-o <ior_output_file>" option.
Fri Apr 7 02:51:31 UTC 2006 Edward R. Mulholland <emulholl@atl.lmco.com>
* CIDLC/ServantSourceGenerator.cpp:
Added code to support "get_all_receptacles" operation.
Fri Apr 7 02:47:02 UTC 2006 Edward R. Mulholland <emulholl@atl.lmco.com>
* CCF/CCF/IDL2/SemanticGraph/Enum.hpp:
* CCF/CCF/IDL2/SemanticAction/Impl/Enum.cpp:
Made a couple small changes that keep the CIDLC from coughing on
enums
Fri Apr 7 02:37:34 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.h
Fixed a bug in detecting External connection and Internal
connections. Earlier when an external component is detected,
not *all* connections associated with this components are
purged from the to-be-removed connections list. Added another
helper method <purge_connections> to accomplish this task.
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp:
Modified to reuse rebind() instead of bind() to avoid
redeployment duplicate instance errors.
Thu Apr 6 15:02:59 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/NodeApplication/NodeApplication.cpp:
Modified the NodeApplications to up at OS priority 20 instead of
50.
Thu Apr 6 00:35:35 UTC 2006 Nilabja Roy <roy_n@dre.vanderbilt.edu>
* DAnCE/NodeManager/CIAO_Monitor.cpp:
* DAnCE/NodeManager/MonitorCB.cpp:
* DAnCE/NodeManager/MonitorController.cpp:
* DAnCE/NodeManager/NodeManager_Impl.cpp:
* DAnCE/TargetManager/DomainDataManager.cpp:
* DAnCE/TargetManager/TargetManager_exec.cpp:
Fixed the TM component removal problem. Changed/Removed
debug messages.
Wed Apr 5 16:54:20 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* tools/Config_Handlers/Any_Handler.cpp
* tools/Config_Handlers/DP_Handler.cpp
* tools/Config_Handlers/IDD_Handler.cpp
* tools/Config_Handlers/MDD_Handler.cpp
* tools/Config_Handlers/DynAny_Handler/DynAny_Handler.cpp
* tools/Config_Handlers/DynAny_Handler/DynAny_Handler.h
Improvements to output more information in the reverse handler.
Thu Mar 30 22:10:53 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* DAnCE/NodeApplication/Container_Impl.cpp
* DAnCE/NodeApplication/NodeApplication.cpp
* DAnCE/NodeApplication/NodeApplication_Impl.cpp
* ciao/Home_Servant_Impl_T.cpp
* ciao/Servant_Activator.cpp
* tools/Config_Handlers/DD_Handler.cpp
* tools/Config_Handlers/IDREF_Base.cpp
* tools/Config_Handlers/Package_Handlers/CPD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/SID_Handler.cpp
Disabled excessive debugging.
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp
* DAnCE/NodeApplicationManager/ImplementationInfo.cpp
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp
* DAnCE/NodeManager/NodeManager_Impl.cpp
Disabled RT-CCM support.
* DAnCE/TargetManager/DomainDataManager.cpp
Added error messages.
Wed Mar 29 21:34:07 UTC 2006 Nilabja Roy <roy_n@dre.vanderbilt.edu>
* DAnCE/NodeManager/CIAO_Monitor.cpp:
Fixed a Access Error in the monitor.
* DAnCE/NodeManager/MonitorCB.cpp:
* DAnCE/NodeManager/MonitorController.cpp:
* DAnCE/NodeManager/NodeManager_Impl.cpp:
Added to have graceful termination.
* DAnCE/TargetManager/DomainDataManager.h:
* DAnCE/TargetManager/DomainDataManager.cpp:
* DAnCE/TargetManager/TargetManager_exec.cpp:
Update to turn off monitors at the end.
Mon Mar 27 22:39:25 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* tools/Config_Handlers/Utils/XML_Helper.cpp
* tools/Config_Handlers/Utils/XML_Helper.h
Mon Mar 27 20:10:09 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/DomainApplicationManager/Deployment_Configuration.cpp
(get_node_manager):
Modified this method to re-throw the caught exception.
Sun Mar 26 22:10:16 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/DomainApplicationManager/Deployment_Configuration.cpp:
Added code to handle exceptions while trying to connect to the
node managers in get_node_manager ().
* DAnCE/TargetManager/DomainDataManager.cpp:
Added debug messages.
* RACE/Controller/Component/RACE_common.h:
Added a new file to define the RACE_DEBUG and RACE_ERROR macros.
Mon Mar 27 00:22:02 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
Modified to allow ccm_passicate to be called on all components
before actually deactivating any components.
Thu Mar 23 23:18:56 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/NodeManager/MonitorController.cpp (svc):
Removed an unwanted debug statement.
Thu Mar 23 22:54:25 UTC 2006 Nishanth Shankarn <nshankar@dre.vanderbilt.edu>
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp:
Removed an unwanted debug statement.
Thu Mar 23 19:40:54 UTC 2006 Nishanth Shankarn <nshankar@dre.vanderbilt.edu>
* APRIL_DEMO.mwc:
* CIAO.mwc:
* CIAODAnCE.mwc:
* CIAOTAO.mwc:
* CIAO_TAO_DAnCE.mwc:
Modified the mwc files so that they exclude the RACE/hog_string
directory.
Thu Mar 23 18:04:58 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp:
Fixed a bug in set_priority method.
Wed Mar 22 19:32:37 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* DAnCE/DomainApplicationManager/DomainApplicationManager_Impl.cpp
* DAnCE/NodeApplication/NodeApplication_Impl.cpp
* DAnCE/NodeManager/NodeManager_Impl.cpp
Modified to make debug statements debug_level controlled.
Wed Mar 22 00:51:11 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* DAnCE/NodeManager/NodeManager_Impl.cpp
Modified to find the corresponding NAM when given a plan_uuid.
Wed Mar 22 02:12:58 UTC 2006 Nilabja Roy <roy_n@dre.vanderbilt.edu>
* DAnCE/NodeManager/CIAO_Monitor.cpp:
* DAnCE/NodeManager/MonitorCB.cpp:
* DAnCE/NodeManager/MonitorController.cpp:
Removed some of the debug statements
Tue Mar 21 19:12:57 UTC 2006 Nishanth Shankarn <nshankar@dre.vanderbilt.edu>
* RACE/hog_string/hog.cdp:
Fixed the plan id.
Mon Mar 20 21:07:50 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp:
turning off the HTTP capability for Linux until I figure out why
it affects the loading of libraries.
Mon Mar 20 20:40:37 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp:
Changed loader path delimiter on Unix-like systems from ';' to ':'
Mon Mar 20 17:22:22 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* DAnCE/NodeApplicationManager/HTTP_Client.h:
* DAnCE/NodeApplicationManager/HTTP_Client.cpp:
* DAnCE/NodeApplicationManager/HTTP_Handler.h:
* DAnCE/NodeApplicationManager/HTTP_Handler.cpp:
* DAnCE/NodeApplicationManager/URL_Parser.h:
* DAnCE/NodeApplicationManager/URL_Parser.cpp:
Oops. Forgot to add the actual HTTP code.
Mon Mar 20 04:27:48 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* DAnCE/NodeApplicationManager/Containers_Info_Map.h:
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp:
* DAnCE/NodeApplicationManager/NodeApplicationManager.mpc:
Adding HTTP capability to DAnCE.
* DAnCE/RepositoryManager/HTTP_Client.h:
* DAnCE/RepositoryManager/HTTP_Client.cpp:
* DAnCE/RepositoryManager/HTTP_Handler.h:
* DAnCE/RepositoryManager/HTTP_Handler.cpp:
* DAnCE/RepositoryManager/Options.h:
* DAnCE/RepositoryManager/Options.cpp:
* DAnCE/RepositoryManager/PC_Updater.h:
* DAnCE/RepositoryManager/PC_Updater.cpp:
* DAnCE/RepositoryManager/PC_Updater_T.h:
* DAnCE/RepositoryManager/PC_Updater_T.cpp:
* DAnCE/RepositoryManager/RM_Helper.h:
* DAnCE/RepositoryManager/RM_Helper.cpp:
* DAnCE/RepositoryManager/RMadmin.cpp:
* DAnCE/RepositoryManager/RepositoryManager.mpc:
* DAnCE/RepositoryManager/RepositoryManager.cpp:
* DAnCE/RepositoryManager/RepositoryManager_Impl.h:
* DAnCE/RepositoryManager/RepositoryManager_Impl.cpp:
* DAnCE/RepositoryManager/URL_Parser.h:
* DAnCE/RepositoryManager/URL_Parser.cpp:
* DAnCE/RepositoryManager/ZIP_Wrapper.h:
* DAnCE/RepositoryManager/ZIP_Wrapper.cpp:
Porting the RepositoryManager to the newest XML config handlers.
Also migrating the code from the DOC repository to ensure the gap
between the code in this repository and that in cvs.doc.wustl.edu
repo is closed.
NOTE: I still have some testing left, but before that I need to
compile the CoSMIC version from this repository and regenerate
a bunch of descriptors because all the example descriptors are
broken.
Sat Mar 18 22:33:10 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* DAnCE/Interfaces/NodeManager.idl
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.h
* DAnCE/NodeManager/NodeManager_Impl.cpp
* DAnCE/NodeManager/NodeManager_Impl.h
* ciao/Deployment.idl
Put the struct Sched_Params definition outside of the NAM
interface.
Cleaned up the code a bit.
Sun Mar 19 16:52:54 UTC 2006 Nilabja Roy <roy_n@dre.vanderbilt.edu>
* DAnCE/TargetManager/CmpClient.cpp:
* DAnCE/TargetManager/DomainDataManager.h:
* DAnCE/TargetManager/DomainDataManager.cpp:
* DAnCE/TargetManager/TargetManager_exec.cpp:
Updated to implement the commitResource and releaseResource
function
Sat Mar 18 19:01:18 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/NodeApplication/NodeApplication.cpp:
Enhanced the NodeApplication to run in realtime priority mode.
Fri Mar 17 06:36:18 UTC 2006 Nilabja Roy <roy_n@dre.vanderbilt.edu>
* DAnCE/Interfaces/NodeManager.idl:
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.h:
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp:
* DAnCE/NodeManager/MonitorCB.cpp:
* DAnCE/NodeManager/MonitorController.h:
* DAnCE/NodeManager/MonitorController.cpp:
* DAnCE/NodeManager/NodeManager_Impl.h:
* DAnCE/NodeManager/NodeManager_Impl.cpp:
* ciao/Deployment.idl:
Implemented the set_priority method on the NodeManager
and NodeApplicationManager interface. Removed some of the debug
messages
Thu Mar 16 03:54:39 UTC 2006 Nilabja Roy <nilabjar@dre.vanderbilt.edu>
* tools/Config_Handlers/DD_Handler.cpp:
Updated the handler to handle optional parameters
Tue Mar 14 07:01:28 UTC 2006 Nilabja R <nilabjar@dre.vanderbilt.edu>
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.h:
* DAnCE/NodeManager/CIAO_Monitor.cpp:
* DAnCE/NodeManager/NodeManager_Impl.h:
Updated to make it portable in windows
* DAnCE/TargetManager/descriptors/flattened_deploymentplan.cdp:
Fixed the entry point.
Mon Mar 13 23:04:32 UTC 2006 <wotte@mako.isislab.vanderbilt.edu>
* tools/Config_Handlers/CPD_Handler.h
* tools/Config_Handlers/DataType_Handler.h
* tools/Config_Handlers/ID_Handler.h
* tools/Config_Handlers/Property_Handler.h
* tools/Config_Handlers/Req_Handler.h
* tools/Config_Handlers/SatisfierProperty_Handler.h
* tools/Config_Handlers/Package_Handlers/CPD_Handler.h
* tools/Config_Handlers/Package_Handlers/NIA_Handler.h
* tools/Config_Handlers/Package_Handlers/Package_Handlers.mpc
* tools/Config_Handlers/Package_Handlers/SID_Handler.h
* tools/Config_Handlers/Utils/XercesString.h
Fixed linking/warnings on Windows.
Mon Mar 13 18:27:27 UTC 2006 Nilabja R <nilabjar@dre.vanderbilt.edu>
* DAnCE/TargetManager/TargetManager.mpc:
Changed the projects to depend on NodeManager_Stub. This will fix the
linking errors in Windows.
Mon Mar 13 17:36:28 UTC 2006 Krishnakumar B <kitty@dre.vanderbilt.edu>
* CIDLC/ServantSourceGenerator.cpp (namespace): Updated the
generated code to set the component id on the component context
class to allow retrieving the id at run-time from an executor
implementation.
Mon Mar 13 17:28:44 UTC 2006 <wotte@mako.isislab.vanderbilt.edu>
* DAnCE/ExecutionManager/Execution_Manager.cpp
* DAnCE/Plan_Launcher/Plan_Launcher_Impl.cpp
Fixes for nameservice discovery of EM.
* docs/schema/toplevel.xsd
Minor correction to schema.
Fri Mar 10 17:03:26 UTC 2006 <wotte@mako.isislab.vanderbilt.edu>
* tools/Config_Handlers/Package_Handlers/PCD_Handler.cpp
Fixed minor bug in URI interface.
Thu Mar 9 22:26:17 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* ciao/Context_Impl_Base.cpp:
* ciao/Context_Impl_Base.h:
Added CORBA::String_var member to store the component instance
id, also added a pair of set/get methods called _ciao_instance_id.
Wed Mar 8 19:07:31 UTC 2006 <wotte@mako.isislab.vanderbilt.edu>
* DAnCE/NodeApplication/NodeApplication_Impl.cpp
Add error message for connection failure.
* DAnCE/StaticConfigurator/StaticDAnCEParser.mpc
Disabled this project.
* DAnCE/TargetManager/TargetManager_exec.cpp
* DAnCE/TargetManager/TargetManager_exec.h
Fix entry point problems.
Wed Mar 8 19:29:20 UTC 2006 Nilabja R <nilabjar@dre.vanderbilt.edu>
* DAnCE/TargetManager/DomainDataManager.h:
* DAnCE/TargetManager/DomainDataManager.cpp:
* DAnCE/TargetManager/TargetManagerExt.idl:
* DAnCE/TargetManager/TargetManager_exec.h:
* DAnCE/TargetManager/TargetManager_exec.cpp:
Added the structure in the TMExt interface to maintain the
mapping between hostname to NM refs.
Wed Mar 8 14:40:41 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* tools//Config_Handlers/Deployment.cpp
* tools//Config_Handlers/Deployment.hpp
* tools//Config_Handlers/GNUmakefile
* tools//Config_Handlers/cdd.cpp
* tools//Config_Handlers/cdd.hpp
* tools//Config_Handlers/pcd.cpp
* tools//Config_Handlers/pcd.hpp
* tools//Config_Handlers/toplevel.cpp
* tools//Config_Handlers/toplevel.hpp
* tools//Config_Handlers/Package_Handlers/PCD_Handler.cpp
* tools//Config_Handlers/Package_Handlers/PCD_Handler.h
New generated code.
Wed Mar 8 03:11:02 UTC 2006 Nilabja R <nilabjar@dre.vanderbilt.edu>
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.h:
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp:
Implement the Signal Handler for the process NodeManager. And
set the option avoid_zombies=0
* DAnCE/NodeManager/MonitorController.h:
* DAnCE/NodeManager/MonitorController.cpp:
* DAnCE/TargetManager/DomainDataManager.h:
* DAnCE/TargetManager/TargetManager_exec.cpp:
Implement ComponentID to Process Id mapping
Tue Mar 7 23:26:41 UTC 2006 Nilabja Roy <nilabjar@localhost.localdomain>
* DAnCE/TargetManager/DomainDataManager.cpp
* DAnCE/TargetManager/TargetManagerExt.idl
* DAnCE/TargetManager/TargetManager.mpc:
Changed to depend on the NodeManager_Stub, so that
CIAO::NodeManager can be used.
Tue Mar 7 03:14:50 UTC 2006 Nilabja R <nilabjar@dre.vanderbilt.edu>
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.h:
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp:
Changed to add the Comp_id to Proc_id mapping
* DAnCE/NodeManager/CIAO_Monitor.h:
* DAnCE/NodeManager/CIAO_Monitor.cpp:
Changed to add the percentage cpu same as vmstat
* DAnCE/NodeManager/MonitorController.h:
* DAnCE/NodeManager/MonitorController.cpp:
Changed to add the Comp_id to Proc_id mapping
* DAnCE/NodeManager/NodeManager_Impl.h:
* DAnCE/NodeManager/NodeManager_Impl.cpp:
Changed to add the Comp_id to Proc_id mapping
* DAnCE/TargetManager/DomainDataManager.h:
* DAnCE/TargetManager/DomainDataManager.cpp:
Changed to add interface to RACE
* DAnCE/TargetManager/TargetManagerExt.idl:
* DAnCE/TargetManager/TargetManager_exec.h:
* DAnCE/TargetManager/TargetManager_exec.cpp:
Changed to add interface to RACE
* DAnCE/TargetManager/descriptors/Domain.cdd:
Updated to the latest xsd
* docs/schema/cdd.xsd:
Changed the Domain definations
Mon Mar 6 19:46:54 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/Interfaces/NodeManager.idl
* DAnCE/NodeManager/NodeManager_Impl.h
* DAnCE/NodeManager/NodeManager_Impl.cpp:
Added the set_priority method to modify the priority of
NodeApplication process.
Wed Mar 1 20:56:16 UTC 2006 Nishanth Shankaran <nshankar@dre.vanderbilt.edu>
* DAnCE/TargetManager/TargetManager_exec.h
* DAnCE/TargetManager/TargetManager_exec.cpp
* DAnCE/TargetManager/TargetManagerExt.idl:
Added method to TargetManagerExt interface to obtain references to
the NodeManagers.
Fri Feb 24 22:55:51 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* tools/Config_Handlers/Basic_Deployment_Data.cpp
* tools/Config_Handlers/Basic_Deployment_Data.hpp
* tools/Config_Handlers/CEPE_Handler.cpp
* tools/Config_Handlers/CEPE_Handler.h
* tools/Config_Handlers/CPD_Handler.cpp
* tools/Config_Handlers/CPD_Handler.h
* tools/Config_Handlers/CRDD_Handler.cpp
* tools/Config_Handlers/ComponentPropertyDescription_Handler.cpp
* tools/Config_Handlers/Config_Handlers.mpc
* tools/Config_Handlers/DP_Handler.cpp
* tools/Config_Handlers/DP_Handler.h
* tools/Config_Handlers/DataType_Handler.cpp
* tools/Config_Handlers/DataType_Handler.h
* tools/Config_Handlers/DnC_Dump.cpp
* tools/Config_Handlers/ERE_Handler.h
* tools/Config_Handlers/IDD_Handler.cpp
* tools/Config_Handlers/IDREF_Base.cpp
* tools/Config_Handlers/IDREF_Base.h
* tools/Config_Handlers/ID_Handler.cpp
* tools/Config_Handlers/ID_Handler.h
* tools/Config_Handlers/IRDD_Handler.cpp
* tools/Config_Handlers/IRDD_Handler.h
* tools/Config_Handlers/MDD_Handler.cpp
* tools/Config_Handlers/PCD_Handler.cpp
* tools/Config_Handlers/Property_Handler.h
* tools/Config_Handlers/RDD_Handler.cpp
* tools/Config_Handlers/Req_Handler.cpp
* tools/Config_Handlers/Req_Handler.h
* tools/Config_Handlers/STD_PCD_Handler.h
* tools/Config_Handlers/ccd.cpp
* tools/Config_Handlers/ccd.hpp
* tools/Config_Handlers/cid.cpp
* tools/Config_Handlers/cid.hpp
* tools/Config_Handlers/cpd.cpp
* tools/Config_Handlers/cpd.hpp
* tools/Config_Handlers/iad.cpp
* tools/Config_Handlers/iad.hpp
* tools/Config_Handlers/pcd.cpp
* tools/Config_Handlers/pcd.hpp
* tools/Config_Handlers/test.cdp
* tools/Config_Handlers/Package_Handlers/CAD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CAD_Handler.h
* tools/Config_Handlers/Package_Handlers/CID_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CID_Handler.h
* tools/Config_Handlers/Package_Handlers/CPD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/CPD_Handler.h
* tools/Config_Handlers/Package_Handlers/Comp_Intf_Descr_Handler.cpp
* tools/Config_Handlers/Package_Handlers/Comp_Intf_Descr_Handler.h
* tools/Config_Handlers/Package_Handlers/IAD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/IAD_Handler.h
* tools/Config_Handlers/Package_Handlers/NIA_Handler.h
* tools/Config_Handlers/Package_Handlers/PCD_Handler.cpp
* tools/Config_Handlers/Package_Handlers/PCD_Handler.h
* tools/Config_Handlers/Package_Handlers/PC_Intf.cpp
* tools/Config_Handlers/Package_Handlers/PC_Intf.h
* tools/Config_Handlers/Package_Handlers/Package_Handlers.mpc
* tools/Config_Handlers/Package_Handlers/Packaging_Handlers_Export.h
* tools/Config_Handlers/Package_Handlers/SID_Handler.cpp
* tools/Config_Handlers/Package_Handlers/SID_Handler.h
* tools/Config_Handlers/Package_Handlers/test.cpp
* tools/Config_Handlers/Package_Handlers/descriptors/package.tpd
* tools/Config_Handlers/Utils/Exceptions.h
* tools/Config_Handlers/Utils/Functors.h
* tools/Config_Handlers/Utils/XML_Error_Handler.cpp
* tools/Config_Handlers/Utils/XML_Helper.h
* tools/Config_Handlers/XMLSchema/Writer.hpp
Package handlers and changes necessary to support them.
Fri Apr 21 08:13:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* CIDLC/ServantSourceGenerator.cpp:
Removed usage of ACE_NESTED_CLASS
* DAnCE/RepositoryManager/PC_Updater.cpp:
Fixed compile errors
Thu Apr 20 13:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/DnC_Dump.cpp:
* DAnCE/RepositoryManager/RMadmin.cpp:
Fixed compile error
Thu Apr 20 09:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/RT-CCM/CLA_Handler.cpp:
Fixed compile error
Wed Apr 19 19:03:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* DAnCE/NodeApplication/NodeApplication_Impl.cpp:
* DAnCE/NodeApplicationManager/Containers_Info_Map.cpp:
* DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.cpp:
Fixed usage of sequences. The sequences now return
a pointer on the subscript operators, not _var which was not according
to the spec.
Wed Apr 19 14:39:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/XMLSchema/Types.hpp:
Removed vc6 workaround
Wed Apr 19 13:43:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/schema/xsc-banner.h:
* tools/Config_Handlers/RT-CCM/CIAOServerResources.hpp:
* tools/Config_Handlers/CIAO_Events/CIAOEvents.hpp:
Removed include of vc6-4786.h
Wed Apr 19 13:39:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/STD_PC_Intf.cpp:
* tools/Config_Handlers/XSCRT/XMLSchema.hpp:
* tools/Config_Handlers/XSCRT/Elements.hpp:
* tools/Config_Handlers/XSCRT/XML.hpp:
* tools/Config_Handlers/DP_Handler.cpp:
* tools/Config_Handlers/DP_Handler.cpp:
Removed vc6 workarounds
Wed Apr 19 11:23:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/DnC_Dump.{h,cpp}:
Updated for string manager change in TAO
* ciao/Servant_Impl_Base.cpp:
Updated for sequence change
Wed Apr 19 07:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tools/Config_Handlers/Basic_Deployment_Data.hpp
* tools/Config_Handlers/Deployment.hpp
* tools/Config_Handlers/ccd.hpp
* tools/Config_Handlers/cdd.hpp
* tools/Config_Handlers/cdp.hpp
* tools/Config_Handlers/cid.hpp
* tools/Config_Handlers/cpd.hpp
* tools/Config_Handlers/iad.hpp
* tools/Config_Handlers/pcd.hpp
* tools/Config_Handlers/toplevel.hpp
Removed vc6 workarounds
* tools/Config_Handlers/vc6-4786.h
Removed
Tue Apr 18 20:55:05 2006 Wallace Zhang <zhangw@ociweb.com>
* CIAO version 0.5.1 released.
Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End:
|