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
|
Thu Feb 20 19:18:17 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* ChangeLogs/ChangeLog-02b:
* ChangeLogs/ChangeLog-03a: New files having all the old ChangeLog
entries till 5.3.1.
* ChangeLog: Shortened the changelog for ease of use.
Thu Feb 20 10:35:15 2003 Ossama Othman <ossama@uci.edu>
* ace/Strategies_T.h:
* ace/Strategies_T.cpp:
Reverted part of changes that introduced extensive use of
traits since they were forcing the introduction of the
ACE_TYPENAME macro in more places than is desirable at this
point in time. They may be reintroduced in the future.
Thu Feb 20 09:24:00 2003 Ossama Othman <ossama@uci.edu>
* ace/Service_Config.h:
Forward declare ACE_Service_Object. Necessitated by inter-header
dependency reductions.
Thu Feb 20 09:23:51 2003 Ossama Othman <ossama@uci.edu>
* ace/Acceptor.h:
* ace/Connector.h:
No need to include "ace/Service_Config.h" and
"ace/Svc_Handler.h".
Include "ace/Synch_Options.h". Necessitated by inter-header
dependency reductions.
* ace/Acceptor.cpp:
* ace/Connector.cpp:
Include "ace/Svc_Handler.h". Necessitated by inter-header
dependency reductions.
* ace/Atomic_Op.h:
Fixed doxygen documentation.
* ace/Atomic_Op.i (operator++, operator--):
Implement these post{in,de}crement operators in terms of their
corresponding pre{in,de}crement operators to ensure consistent
semantics.
* ace/Atomic_Op_T.h (mutex_, own_mutex_):
Improved const-correctness by making these mutex members
mutable. This allows us to avoid casting away the constness.
* ace/Atomic_Op_T.i (operator==, operator>=, operator>):
(operator<=, operator<, value, operator=):
Do not cast away the constness of the mutex. That hack is no
longer necessary since the mutex is now mutable.
* ace/Basic_Types.h:
Improved doxygen documentation.
Moved endianness determination macros prior to ACE_U_LongLong
class.
(operator=):
Added ACE_ULongLong assignment operator declarations that accept
32 bit signed and unsigned integers.
(operator++, operator--):
Added missing ACE_ULongLong post{in,de}crement operator
declarations.
(data_):
Make declaration order of lower and upper 32 bit members (lo_
and hi_) of this structure dependant on the endianness of the
platform. This mimics what is done for the ACE_LongLong type
in the ACE_CDR classes.
* ace/Basic_Types.i (operator=):
Added ACE_ULongLong assignment operator implementation that
accept 32 bit signed and unsigned integers.
(operator++, operator--):
Added missing ACE_ULongLong post{in,de}crement operator
implementations.
* ace/CDR_Base.cpp (mb_align):
Uninlined this method in order to reduce inter-header
dependencies.
(operator<, operator<=, operator>, operator>=, operator==):
(operator!=):
Added these missing operator for the ACE_LongLong type.
(Float, operator=, operator!=):
Fixed potential unused argument warnings for the Cray/UNICOS
case.
* ace/CDR_Base.h:
Include "ace/OS.h" instead of "ace/Message_Block.h", and forward
declare ACE_Message_Block in order to reduce inter-header
dependencies.
Changed all uses of typedefs like "u_char" and "u_long" to their
non-typedef counterparts, e.g. "unsigned char" and "unsigned
long". Makes it possible to avoid including headers that
contain those typedefs.
(operator=):
Added ACE_LongLong constructors assignment operators that accept
32-bit integers.
(operator==, operator!=, operator<=, operator<, operator>=):
(operator>):
Added these missing ACE_LongLong relation operators.
* ace/CDR_Base.inl (operator=):
Added ACE_LongLong constructors assignment operators that accept
32-bit integers.
(operator==, operator!=, operator<=, operator<, operator>=):
(operator>):
Added these missing ACE_LongLong relation operators.
* ace/CDR_Stream.h:
Moved definition of the ACE_CDR_BYTE_ORDER macros from OS.h to
this header. Helps with header dependency reduction.
* ace/Capabilities.h:
Use ACE_Hash_Map_Manager_Ex instead of ACE_Hash_Map_Manager.
Doing so saves us three template instantiations.
* ace/Capabilities.i:
Cosmetic changes.
* ace/Capabilities.cpp:
No need to include "ace/Map_Manager.h".
Added missing ACE_RCSID macro.
Improved conformance to ACE coding conventions.
Removed explicit template instantiations for the
ACE_Hash_Map_Manager template. That template is no longer
used.
(reset_caps):
Use ACE_Hash_Map_Manager_Ex template traits instead of the
actual template type. Makes for cleaner code.
* ace/Configuration.cpp:
* ace/Configuration.h:
* ace/Strategies_T.cpp:
* ace/Token_Collection.cpp:
* ace/Token_Collection.h:
* ace/Token_Invariants.cpp:
* ace/Token_Invariants.h:
* ace/Token_Manager.cpp:
* ace/Token_Manager.h:
* ace/WIN32_Asynch_IO.cpp:
* ace/WIN32_Asynch_IO.h:
Take advantage of template traits to improve clarity of code.
* ace/Copy_Disabled.h:
Corrected comment.
* ace/Default_Constants.h:
Moved ACE_DEFAULT_CDR_BUFSIZE, ACE_DEFAULT_CDR_EXP_GROWTH_MAX,
ACE_DEFAULT_CDR_LINEAR_GROWTH_CHUNK,
ACE_DEFAULT_CDR_MEMCPY_TRADEOFF macros from OS.h to this
header. Helps with inter-header dependency reduction.
* ace/Dynamic_Service_Base.cpp:
* ace/Parse_Node.cpp:
* ace/Service_Manager.cpp:
* ace/Service_Repository.cpp:
* ace/Svc_Conf.y:
* ace/Svc_Conf_y.cpp:
Include "ace/Service_Types.h". Necessitated by inter-header
dependency reduction.
* ace/Filecache.h:
* ace/Filecache.cpp:
* ace/Hash_Map_With_Allocator_T.h:
* ace/Hash_Map_With_Allocator_T.cpp:
* ace/Local_Name_Space_T.h:
* ace/Local_Name_Space.cpp:
Use ACE_Hash_Map_Manager_Ex instead of ACE_Hash_Map_Manager.
Doing so saves us three template instantiations.
* ace/Future_Set.h:
* ace/Map_T.h:
Include "ace/Hash_Map_Manager_T.h" instead of
"ace/Hash_Map_Manager.h". The former is all that is needed, and
the latter already includes the former.
* ace/Hash_Map_Manager_T.i (operator++, operator--):
* ace/Map_Manager.i:
* ace/RB_Tree.i:
Implement the post-{in,de}crement operators in terms of their
pre-{in,de}crement operator counterparts to ensure consistency.
* ace/Local_Name_Space_T.cpp:
No need to include "ace/Auto_Ptr.h"
Use template traits to improve code clarity.
* ace/OS.h:
Moved ACE_CDR_BYTE_ORDER macro definition to CDR_Stream.h.
Helps with inter-header dependencies.
Moved ACE_DEFAULT_CDR_BUFSIZE, ACE_DEFAULT_CDR_EXP_GROWTH_MAX,
ACE_DEFAULT_CDR_LINEAR_GROWTH_CHUNK,
ACE_DEFAULT_CDR_MEMCPY_TRADEOFF to Default_Constants.h. Helps
with inter-header dependency reduction.
* ace/POSIX_Asynch_IO.cpp:
Added missing ACE_RCSID macro.
(bytes_transferred):
Use map template traits to improve code clarity.
* ace/POSIX_Asynch_IO.h:
Redefined old map typedefs in terms of the map traits.
* ace/Parse_Node.h:
* ace/Service_Repository.h:
No need to include "ace/Service_Types.h". A forward declaration
for ACE_Service_Types is enough.
* ace/Service_Config.h:
No need to include "ace/Service_Types.h" and "ace/Signal.h".
Forward declaring ACE_Service_Types and ACE_Sig_Adapter is
enough.
* ace/Strategies_T.h:
No need to include "ace/Service_Config.h" and
"ace/Synch_Options.h".
* ace/Synch_Options.h:
Changed all uses of typedefs like "u_char" and "u_long" to their
non-typedef counterparts, e.g. "unsigned char" and "unsigned
long". Makes it possible to avoid including OS.h. A big win in
compile time reduction.
Include "ace/Time_Value.h". Necessitated by inter-header
dependency reduction.
* ace/Synch_Options.cpp:
Changed all uses of typedefs like "u_char" and "u_long" to their
non-typedef counterparts, e.g. "unsigned char" and "unsigned
long". Makes it possible to avoid including OS.h. A big win in
compile time reduction.
Include "ace/Trace.h". Necessitated by inter-header
dependency reduction.
* ace/Template_Instantiations.cpp:
Removed all ACE_Hash_Map_Manager related template
instantiations. The ones for ACE_Hash_Map_Manager_Ex are all
that are needed.
* ace/SSL/SSL_SOCK_Acceptor.h (ACE_SSL_SOCK_Acceptor):
Inherit privately from ACE_SSL_SOCK, instead of publically.
ACE_SSL_SOCK_Acceptor is IMPLEMENTED-IN-TERMS-OF ACE_SSL_SOCK.
It does not satisfy the IS-A relationship.
* ace/SSL/SSL_SOCK_Connector.cpp (ssl_connect):
Use ACE_Countdown_Time to take into account the time between
each call to select() instead of using the same timeout value in
each loop iteration.
* ace/SSL/SSL_SOCK_Stream.cpp (get_remote_addr):
Retrieve the remote addr from the parent ACE_SSL_SOCK class, not
ACE_SOCK. Addresses potential inconsistencies in the future.
* ace/SSL/SSL_SOCK_Stream.h (ACE_SSL_SOCK_Stream):
Removed friend declarations for the
ACE_SSL_SOCK_{Acceptor,Connector} classes. They are
unnecessary.
|