summaryrefslogtreecommitdiff
path: root/TAO/CIAO/ChangeLog
blob: 3666fb33f71c063a1b7e4d3179c68de05823e9eb (plain)
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
Thu Aug  5 17:42:56 2004  Jeff Parsons <j.parsons@vanderbilt.edu>

        * CIDLC/ExecImplGenerator.cpp:
        * CIDLC/ExecImplGenerator.hpp:
        * CIDLC/ExecImplHeaderGenerator.cpp:
        * CIDLC/ExecImplHeaderGenerator.hpp:
        * CIDLC/ExecImplSourceGenerator.cpp:
        * CIDLC/ExecImplSourceGenerator.hpp:

          New files, which generate empty executor implementation
          classes (with spec-defined operations filled in and
          IDL operations and attributes marked for the developer
          to fill in). This generation is optional, triggered by
          the CIDL compiler command line option --gen-exec-impl.
          Two other options --exec-hdr-file-suffix and --exec-src-file-suffix,
          can override the default generated file extensions of
          _exec.h and _exec.cpp. Tao others, --exec-hdr-file-regex and
          --exec-src-file-regex, allow replacement of default generated
          filenames by pattern matching with regular expressions.
          And finally, two more, --exec-export-include,
          overrides the default generated export macro header file,
          and --exec-export-macro, overrides the default generated
          export macro for the executor implementation file.

        * CIDLC/Literals.cpp:
        * CIDLC/Literals.hpp:
        * CIDLC/ServantGenerator.cpp:
        * CIDLC/ServantHeaderGenerator.cpp:
        * CIDLC/ServantHeaderGenerator.hpp:
        * CIDLC/ServantSourceGenerator.cpp:
        * CIDLC/TypeNameEmitter.cpp:
        * CIDLC/TypeNameEmitter.hpp:
        * CIDLC/cidlc.cpp:

          - Added generation of (unimplemented) home finder
            operations.

          - Filled gaps and organized the command line options
            for servant filename suffixes and regular expressions
            to replace default generated filenames.

          - Added a new type name emitter that generates the
            appropriate NULL return value for any type.

        * tests/CIDL/CodeGen/Basic.idl:
        * tests/CIDL/CodeGen/Basic_stub_export.h:
        * tests/CIDL/CodeGen/Basic_svnt_export.h:
        * tests/CIDL/CodeGen/CodeGen.cidl:
        * tests/CIDL/CodeGen/CodeGen.idl:
        * tests/CIDL/CodeGen/CodeGen.mpc:
        * tests/CIDL/CodeGen/CodeGen_exec_export.h:
        * tests/CIDL/CodeGen/CodeGen_stub_export.h:
        * tests/CIDL/CodeGen/CodeGen_svnt_export.h:
        * tests/CIDL/CodeGen/README:

          New test, for servant and executor implemtation code
          generation of the CIDL compiler. This test target
          correct code generation for many component-specific
          features of IDL - catching operations and attributes
          for supported interfaces, operations and attributes
          for parents of supported interfaces, home operations
          from base homes, inherited home factory and finder
          operations, etc. The object of the test is to check
          that the generated code builds and links successfully.

Thu Aug  5 15:49:10 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

	* DAnCE/tests/NodeApplicationTest/RoundTrip_exec.h:

	  Made destructors in reference count enabled classes protected to
	  enforce proper memory management through the reference counting
	  mechansism (i.e. prevent directly calling operator delete() on
	  the reference counted object).

	  (cube_long):
	* DAnCE/tests/NodeApplicationTest/RoundTrip_exec.cpp (cube_long):
	* performance-tests/Benchmark/RoundTrip/RoundTrip_exec.h
	  (makeCall):
	* performance-tests/Benchmark/RoundTrip/RoundTrip_exec.cpp
	  (makeCall):

	  Added missing emulated exception parameter.  Fixes compile-time
	  errors in emulated exception builds.

	* examples/OEP/Display/NavDisplayGUI_exec/NavDisplayGUI_exec.cpp
	  (ccm_activate):

	  Corrected emulated excepton parameter.  Fixes a compile-time
	  error in emulated exception builds.

	* performance-tests/Protocols/Controller/Controller.mpc:
	* tests/RTCCM/DiffServ/Receiver/Receiver.mpc
	  (DiffServ_Receiver_exec):
	* tests/RTCCM/DiffServ/Sender/Sender.mpc (DiffServ_Sender_exec):

	  Added missing "requires += exceptions".  These tests will not
	  compile in emulated exception configurations.

	* performance-tests/Benchmark/RoundTrip/RoundTrip_exec.cpp
	  (get_latency):

	  Fixed unused parameter warning in emulated exception builds.

Thu Aug  5 11:48:49 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

	* performance-tests/Protocols/Controller/Controller.mpc:

	  Corrected library link order.  Addresses undefined reference
	  link-time errors in static builds.

	* tools/XML_Helpers/XMLHelpers.mpc (Helper_Test):

	  Added missing TAO_IFR_Client library to "libs" variable.
	  Addresses undefined reference link-time errors in static
	  builds.

Thu Aug  5 13:28:49 2004  Will Otte <wotte@dre.vanderbilt.edu>

	* docs/schema/ciaopolicy.xsd:

	  Schema describing ORB policy configurations.

Thu Aug  5 11:56:03 2004  Jeff Parsons <j.parsons@vanderbilt.edu>

        * CCF/CCF/CodeGenerationKit/IndentationImplanter.hpp:

          Changed template template parameter of class Implanter from
          "Buffer" to "BufferType" because the former was causing a
          problem with VC 7.1 clashing with a class Buffer in another
          file.

Thu Aug  5 08:48:50 2004  Krishnakumar B  <kitty@nospam.invalid.domain>

        * CIAO-INSTALL.html: Updated to reflect dependency on Xerces and
          native exceptions.

Wed Aug  4 22:50:17 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

	* examples/Hello/Sender/Sender.mpc (Hello_Starter):
	* performance-tests/Protocols/Controller/Controller.mpc (perf):
	* tools/XML_Helpers/XMLHelpers.mpc (Helper_Test):

	  Fixed static build link-time errors caused by not linking the
	  appropriate libraries.

Wed Aug  4 22:31:24 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

	* docs/tutorial/Hello/client.cpp (main):

	  Fixed typo that caused a syntax error.

Wed Aug  4 17:24:18 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

	* examples/OEP/Display/RateGen/RateGen_exec.cpp (create):
	* performance-tests/Benchmark/LatencyTest.cpp (makeCall):
	* performance-tests/Benchmark/RoundTripServer/LatencyTest.cpp
	  (makeCall):
	* tests/RTCCM/Priority_Test/Controllers/Rate_Controller.cpp
	  (create):
	* tests/RTCCM/Priority_Test/Workers/CB_Worker_exec.cpp:
	* tests/RTCCM/Priority_Test/Workers/IOB_Worker_exec.cpp:

	  Fixued unused parameter warnings.

	* docs/tutorial/Hello/hello_exec.cpp:
	* performance-tests/Benchmark/RoundTrip/RoundTrip_exec.cpp:

	  Fixed emulated exception usage.

	  Fixed unused argument warnings.

	* docs/tutorial/Hello/client.cpp (main):
	* docs/tutorial/Hello/simple_client.cpp (main):
	* performance-tests/Benchmark/Multi_Threaded/client.cpp (main):
	* performance-tests/Benchmark/RoundTrip/client.cpp (main):
	* performance-tests/Benchmark/RoundTripClient/client.cpp (main):

	  Fixed CORBA::ORB_init() arguments in emulated exception case.

	  Added missing ACE_TRY_CHECK after CORBA::ORB_init() call.

	* performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.cpp
	  (start):

	  Fixed emulated exception usage.

	  Added missing emulated exception parameter.  Fixes a
	  compile-time error.

	  Fixed unused parameter warnings.

	* tests/RTCCM/DiffServ/Sender/Sender_exec.cpp:

	  Include "ace/OS_NS_unistd.h" to pull in ACE_OS::sleep()
	  declaration.

	* tests/RTCCM/Priority_Test/Controllers/Controller_exec.cpp:

	  Include "ace/OS_NS_stdio.h" to pull in ACE_OS::snprintf()
	  declaration.

	  Fixed unused parameter warnings.

Wed Aug  4 16:43:43 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

	* DAnCE/tests/NodeApplicationTest/RoundTrip_exec.cpp:
	* examples/OEP/Display/NavDisplayGUI_exec/NavDisplayGUI_exec.cpp
	  (push_Refresh):

	  Fixed emulated exception usage.

	  Fixed unused parameter warnings.

	* examples/OEP/BasicSP/EC/EC_exec.cpp (pulse):

	  Added missing ACE_TRY_CHECK emulated exception macro.  Fixes
	  warning about unused "ACE_TRY_LABEL" label.

	* examples/OEP/Display/RateGen/client.cpp:

	  Include "ace/OS_NS_unistd.h" to pull in ACE_OS::sleep()
	  declaration.

	* examples/Hello/Receiver/Receiver_exec.cpp (ccm_activate):
	* examples/OEP/BasicSP/BMClosedED/BMClosedED_exec.cpp
	  (ccm_activate):
	* examples/OEP/BasicSP/BMDevice/BMDevice_exec.cpp (ccm_activate):
	* examples/OEP/BasicSP/BMDisplay/BMDisplay_exec.cpp
	  (ccm_activate):
	* examples/OEP/Display/GPS/GPS_exec.cpp (get_MyLocation, posx):
	  (posy, create):
	* examples/OEP/Display/GPS/GPS_tracing_exec.cpp (get_MyLocation):
	  (posx, posy, create):
	* examples/OEP/Display/NavDisplay/NavDisplay_exec.cpp
	  (ccm_activate):
	* examples/OEP/Display/NavDisplayGUI_exec/AddNavUnitCmd.cpp
	  (execute):
	* examples/OEP/Display/NavDisplayGUI_exec/NodeItem.cpp (moveBy):
	* examples/OEP/Display/NavDisplayGUI_exec/QuitCmd.cpp (execute):

	  Fixed unused parameter warnings.

Wed Aug  4 11:16:47 2004  Will Otte <wotte@dre.vanderbilt.edu>

	* Components/ComplexComponent/Attributes/Attributes.idl:
	* Homes/Attributes/HomeAttributes.idl:
	* ImpliedIDL/Components/Basic/ICBasic.idl:
	* Homes/Finder/Finder.idl:
	* ImpliedIDL/Components/EventSink/ICEventSink.idl:
	* ImpliedIDL/Components/EventSource/ICEventSource.idl:
	* ImpliedIDL/Components/Receptacles/ICReceptacles.idl:

	  Addressed some build errors on the Fuzz build.

	* Components/ComplexComponent/Attributes/AttributesS.cpp:
	* Components/ComplexComponent/EventSink/EventSinkS.cpp:
	* Components/ComplexComponent/EventSource/EventSourceS.cpp:
	* Components/ComplexComponent/Facets/FacetsS.cpp:
	* Components/ComplexComponent/Receptacles/ReceptaclesS.cpp:
	* Components/SimpleComponent/SimpleComponentS.cpp:
	* Events/Abstract/AbstractS.cpp:
	* Events/Regular/RegularS.cpp:
	* Homes/Attributes/HomeAttributesS.cpp:
	* Homes/Basic/BasicS.cpp:
	* Homes/Factory/FactoryS.cpp:
	* Homes/Finder/FinderS.cpp:
	* Homes/Inheritance/InheritanceS.cpp:
	* ImpliedIDL/Components/Basic/ICBasicS.cpp:
	* ImpliedIDL/Components/EventSink/ICEventSinkS.cpp:
	* ImpliedIDL/Components/EventSource/ICEventSourceS.cpp:
	* ImpliedIDL/Components/Receptacles/ICReceptaclesS.cpp:
	* ImpliedIDL/Events/EventsS.cpp:
	* ImpliedIDL/Homes/HomesS.cpp:

	  Removed a bunch of generated code from the repository.

Tue Aug  3 20:18:48 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

	* docs/schema/cid.xsd:
	* docs/schema/Deployment.xsd:

	  Added some tweaks.

Tue Aug  3 14:25:44 2004  Will Otte <wotte@dre.vanderbilt.edu>

	* IDL3/Components/ComplexComponent/Attributes/Attributes.idl:
	* IDL3/Components/ComplexComponent/Attributes/Attributes.mpc:
	* IDL3/Components/ComplexComponent/Attributes/AttributesS.cpp:
	* IDL3/Components/ComplexComponent/Attributes/Attributes_stub_export.h:
	* IDL3/Components/ComplexComponent/Attributes/Attributes_svnt_export.h:
	* IDL3/Components/ComplexComponent/EventSink/EventSink.idl:
	* IDL3/Components/ComplexComponent/EventSink/EventSink.mpc:
	* IDL3/Components/ComplexComponent/EventSink/EventSinkS.cpp:
	* IDL3/Components/ComplexComponent/EventSink/EventSink_stub_export.h:
	* IDL3/Components/ComplexComponent/EventSink/EventSink_svnt_export.h:
	* IDL3/Components/ComplexComponent/EventSource/EventSource.idl:
	* IDL3/Components/ComplexComponent/EventSource/EventSource.mpc:
	* IDL3/Components/ComplexComponent/EventSource/EventSourceS.cpp:
	* IDL3/Components/ComplexComponent/EventSource/EventSource_stub_export.h:
	* IDL3/Components/ComplexComponent/EventSource/EventSource_svnt_export.h:
	* IDL3/Components/ComplexComponent/Facets/Facets.idl:
	* IDL3/Components/ComplexComponent/Facets/Facets.mpc:
	* IDL3/Components/ComplexComponent/Facets/FacetsS.cpp:
	* IDL3/Components/ComplexComponent/Facets/Facets_stub_export.h:
	* IDL3/Components/ComplexComponent/Facets/Facets_svnt_export.h:
	* IDL3/Components/ComplexComponent/Receptacles/Receptacles.idl:
	* IDL3/Components/ComplexComponent/Receptacles/Receptacles.mpc:
	* IDL3/Components/ComplexComponent/Receptacles/ReceptaclesS.cpp:
	* IDL3/Components/ComplexComponent/Receptacles/Receptacles_stub_export.h:
	* IDL3/Components/ComplexComponent/Receptacles/Receptacles_svnt_export.h:
	* IDL3/Components/SimpleComponent/SimpleComponent.idl:
	* IDL3/Components/SimpleComponent/SimpleComponent.mpc:
	* IDL3/Components/SimpleComponent/SimpleComponentS.cpp:
	* IDL3/Components/SimpleComponent/SimpleComponent_exec_export.h:
	* IDL3/Components/SimpleComponent/SimpleComponent_stub_export.h:
	* IDL3/Components/SimpleComponent/SimpleComponent_svnt_export.h:
	* IDL3/Events/Abstract/Abstract.idl:
	* IDL3/Events/Abstract/Abstract.mpc:
	* IDL3/Events/Abstract/AbstractS.cpp:
	* IDL3/Events/Abstract/Abstract_stub_export.h:
	* IDL3/Events/Abstract/Abstract_svnt_export.h:
	* IDL3/Events/Regular/Regular.idl:
	* IDL3/Events/Regular/Regular.mpc:
	* IDL3/Events/Regular/RegularS.cpp:
	* IDL3/Events/Regular/Regular_stub_export.h:
	* IDL3/Events/Regular/Regular_svnt_export.h:
	* IDL3/Homes/Attributes/HomeAttributes.idl:
	* IDL3/Homes/Attributes/HomeAttributes.mpc:
	* IDL3/Homes/Attributes/HomeAttributesS.cpp:
	* IDL3/Homes/Attributes/HomeAttributes_stub_export.h:
	* IDL3/Homes/Attributes/HomeAttributes_svnt_export.h:
	* IDL3/Homes/Basic/Basic.idl:
	* IDL3/Homes/Basic/Basic.mpc:
	* IDL3/Homes/Basic/BasicS.cpp:
	* IDL3/Homes/Basic/Basic_stub_export.h:
	* IDL3/Homes/Basic/Basic_svnt_export.h:
	* IDL3/Homes/Factory/Factory.idl:
	* IDL3/Homes/Factory/Factory.mpc:
	* IDL3/Homes/Factory/FactoryS.cpp:
	* IDL3/Homes/Factory/Factory_stub_export.h:
	* IDL3/Homes/Factory/Factory_svnt_export.h:
	* IDL3/Homes/Finder/Finder.idl:
	* IDL3/Homes/Finder/Finder.mpc:
	* IDL3/Homes/Finder/FinderS.cpp:
	* IDL3/Homes/Finder/Finder_stub_export.h:
	* IDL3/Homes/Finder/Finder_svnt_export.h:
	* IDL3/Homes/Inheritance/Inheritance.idl:
	* IDL3/Homes/Inheritance/Inheritance.mpc:
	* IDL3/Homes/Inheritance/InheritanceS.cpp:
	* IDL3/Homes/Inheritance/Inheritance_stub_export.h:
	* IDL3/Homes/Inheritance/Inheritance_svnt_export.h:
	* IDL3/ImpliedIDL/Components/Basic/ICBasic.idl:
	* IDL3/ImpliedIDL/Components/Basic/ICBasic.mpc:
	* IDL3/ImpliedIDL/Components/Basic/ICBasicS.cpp:
	* IDL3/ImpliedIDL/Components/Basic/ICBasic_stub_export.h:
	* IDL3/ImpliedIDL/Components/Basic/ICBasic_svnt_export.h:
	* IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl:
	* IDL3/ImpliedIDL/Components/EventSink/ICEventSink.mpc:
	* IDL3/ImpliedIDL/Components/EventSink/ICEventSinkS.cpp:
	* IDL3/ImpliedIDL/Components/EventSink/ICEventSink_stub_export.h:
	* IDL3/ImpliedIDL/Components/EventSink/ICEventSink_svnt_export.h:
	* IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl:
	* IDL3/ImpliedIDL/Components/EventSource/ICEventSource.mpc:
	* IDL3/ImpliedIDL/Components/EventSource/ICEventSourceS.cpp:
	* IDL3/ImpliedIDL/Components:

	  Various tests of compilation for IDL3 constructs.

Tue Aug  3 18:36:10 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

	* docs/schema/README.html:

	  File explaining what these new descriptors mean.

 	* docs/schema/Basic_Deployment_Data.xsd:
	* docs/schema/Deployment.xsd:
	* docs/schema/Modified_Deployment.xsd:
	* docs/schema/Spec_Defined_Deployment.xsd:
	* docs/schema/Spec_Defined_XMI.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:
	* docs/schema/unused_elements.xsd:

	  Sets of schemata that will be used in DAnCE. The meaning of
	  these different schemata have been documented in the
	  README.html.

Sun Aug  1 09:30:37 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

	* ChangeLogs:

	  Created a new directory and moved a bunch of ChangeLog entries
	  there.

Sat Jul 31 11:15:15 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * CIAO version 0.4.2 released.

Local Variables:
add-log-time-format: current-time-string
End: