forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-multitopic
419 lines (279 loc) · 13.9 KB
/
ChangeLog-multitopic
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
Thu Jul 22 22:20:39 UTC 2010 Adam Mitz <[email protected]>
* Merged from trunk r3467 through r3494.
Thu Jul 22 22:01:55 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.cpp:
Fixed GCC error and warnings. Corrected refcount management on the
"resulting" data reader for the multitopic.
Thu Jul 22 21:24:00 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.h:
* dds/DCPS/MultiTopicDataReader_T.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
This completes the MultiTopic implementation:
- added error handling
- implemented cross-joins
- now tracking instance_state and view_state
- the Subscriber is now aware of the MultiTopic DataReader so
that the normal lookup, delete, etc. operations work and the
MultiTopic DataReader can de-register its listener during cleanup
* tests/DCPS/MultiTopic/MultiTopicTest.cpp:
* tests/DCPS/MultiTopic/MultiTopicTest.idl:
Added testing cross-join and instance state management.
* tests/DCPS/unit/MyTypeSupportImpl.h:
Adapted to DataReaderImpl.h modification.
Tue Jul 20 22:56:24 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReader_T.cpp:
GCC requires a few more "typename"s than VC++.
Tue Jul 20 22:38:47 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/LocalObject.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.h:
* dds/DCPS/MultiTopicDataReader_T.cpp:
Continued implementing MultiTopic, specifically the ability to have
arbitrarily complex joins with different keys. Not all of that is
test yet, and cross-joins are not yet implemented.
* dds/idl/CPPTemplate.txt:
Corrected filtering (WHERE clause) for MultiTopic.
* tests/DCPS/MultiTopic/MultiTopicTest.cpp:
* tests/DCPS/MultiTopic/MultiTopicTest.idl:
Added a 3rd incoming topic to the test, provides coverage for the
case where one of the topics has a subset of the keys of the
resulting topic.
Mon Jul 19 14:57:16 UTC 2010 Adam Mitz <[email protected]>
* tests/DCPS/unit/MyTypeSupportImpl.h:
* tests/DCPS/unit/MyTypeSupportImpl.cpp:
Updated unit test for more recent change to DataReaderImpl.
Fri Jul 16 22:33:25 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/FilterEvaluator.h:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.h:
* dds/DCPS/MultiTopicDataReader_T.cpp:
* dds/DCPS/MultiTopicImpl.h:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
* dds/idl/metaclass_generator.cpp:
Continued implementing more joins for MultiTopic.
Not every case is handled yet.
Thu Jul 15 19:10:42 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReaderBase.cpp:
Fixed typo which caused the wrong overload to be called.
* dds/DCPS/TypeSupportImpl.h:
Added the Export macro which GCC 4 needed to make the vtable visible.
Thu Jul 15 17:26:24 UTC 2010 Adam Mitz <[email protected]>
* Merged from trunk r3439 through r3466.
Wed Jul 14 20:31:40 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReader_T.cpp:
updated comment to describe current functionality
* dds/idl/metaclass_generator.cpp:
Fixed a bug in the arrays-of-arrays case.
* tests/DCPS/MetaStruct/MetaStructTest.cpp:
* tests/DCPS/MetaStruct/MetaStructTest.idl:
Added a test for arrays-of-arrays.
Wed Jul 14 17:42:29 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReader_T.cpp:
Implemented joining on multiple key fields.
The MultiTopic test should now pass.
Wed Jul 14 16:03:35 UTC 2010 Adam Mitz <[email protected]>
* dds/idl/metaclass_generator.cpp:
Fixed MetaStruct::assign() for arrays-of-arrays.
* tests/DCPS/MultiTopic/MultiTopicTest.cpp:
* tests/DCPS/MultiTopic/MultiTopicTest.idl:
Extended the test to use two fields as DCPS_DATA_KEYs and
MultiTopic join keys. This will make the test fail until
the implementation of MultiTopic is enhanced to cover this case.
Tue Jul 13 19:42:19 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReaderBase.cpp:
Minor change: bail out early if DDS::RETCODE_NO_DATA.
* dds/idl/dds_generator.h:
* dds/idl/marshal_generator.cpp:
Moved common code to dds_generator.h.
* dds/idl/metaclass_generator.cpp:
Re-used code from dds_generator.h.
Added support for MetaStruct::assign() of nested structs, unions,
sequences, and arrays.
* bin/dcps_tests.lst:
* tests/DCPS/MetaStruct/MetaStructTest.idl:
* tests/DCPS/MetaStruct/MetaStructTest.cpp:
* tests/DCPS/MetaStruct/MetaStructTest.mpc:
* tests/DCPS/MetaStruct/run_test.pl:
New test for MetaStruct::assign() of complex IDL types.
Mon Jul 12 16:56:37 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* tests/DCPS/unit/MyTypeSupportImpl.h:
* tests/DCPS/unit/MyTypeSupportImpl.cpp:
Fixed some compilation errors from the latest multitopic work.
Fri Jul 9 18:12:09 UTC 2010 Adam Mitz <[email protected]>
* Merged from trunk r3408 through r3438.
Fri Jul 9 17:54:01 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.h:
* dds/DCPS/MultiTopicDataReader_T.cpp:
Continued implementing MultiTopic. The simplest case of JOINing
data from different topics is now working.
* dds/DCPS/OwnershipManager.h:
Removed comment that was copied from a different class.
* dds/DCPS/DataReaderImpl.h:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
Added lookup_instance_generic() and read_instance_generic().
* dds/DCPS/FilterEvaluator.h:
* dds/idl/metaclass_generator.cpp:
Added allocate()/deallocate() to the MetaStruct for "reflective"
creation of new data-sample structs.
* tests/DCPS/MultiTopic/MultiTopicTest.cpp:
* tests/DCPS/MultiTopic/MultiTopicTest.idl:
Added DCPS_DATA_KEYs to match the JOIN keys. Enhanced test.
Wed Jul 7 22:08:49 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.h:
* dds/DCPS/MultiTopicDataReader_T.cpp:
Continued with handling incoming samples in the MultiTopic reader.
This is all still a work in progress.
* dds/DCPS/ZeroCopySeq_T.h:
Typo fix in comment.
* dds/DCPS/FilterEvaluator.h:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
* dds/idl/metaclass_generator.cpp:
Added new functions to "reflectively" assign field data from
one struct to another.
* tests/DCPS/unit/MyTypeSupportImpl.h:
* tests/DCPS/unit/MyTypeSupportImpl.cpp:
Added new DataReaderImpl virtual method.
Tue Jul 6 21:42:51 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
Started implementing on_data_available() for the incoming
datareaders.
* tests/DCPS/MultiTopic/MultiTopicTest.cpp:
* tests/DCPS/MultiTopic/MultiTopicTest.idl:
Changed the test's idl structs to better reflect a real use case.
Tue Jul 6 15:16:05 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
Added fwd decl for TopicDescriptionImpl.
* tests/DCPS/unit/MyTypeSupportImpl.h:
* tests/DCPS/unit/MyTypeSupportImpl.cpp:
Added new methods to hand-written TypeSupportImpl.
Fri Jul 2 21:53:08 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicImpl.h:
GCC compatibility for the previous commit.
Fri Jul 2 20:06:45 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/FilterEvaluator.h:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.h:
* dds/DCPS/MultiTopicDataReader_T.cpp:
* dds/DCPS/MultiTopicImpl.h:
* dds/DCPS/MultiTopicImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/TypeSupportImpl.h:
* dds/DdsDcpsTypeSupportExt.idl:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
* dds/idl/metaclass_generator.cpp:
* dds/idl/ts_generator.cpp:
Continued implementing MultiTopic: initialization of the MultiTopic's
DataReader and its constituent DataReaders (both incoming readers
and the resulting reader).
* tests/DCPS/TopicExpression/TopicExpressionTest.mpc:
Set exename to the project name instead of the name of the cpp file.
Wed Jun 30 21:58:49 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicImpl.cpp:
* dds/DCPS/SubscriberImpl.cpp:
Basic cleanup; error messages.
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopicTest.cpp:
Fixed a memory leak of the type name string.
* tests/DCPS/MultiTopic/MultiTopicTest.cpp:
* tests/DCPS/MultiTopic/MultiTopicTest.idl:
Continued developing the simple functional test for MultiTopic.
Wed Jun 30 15:21:26 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/AstNodeWrapper.h:
* dds/DCPS/MultiTopicImpl.cpp:
* dds/DCPS/SubscriberImpl.cpp:
Added missing #includes.
Tue Jun 29 22:24:52 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/AstNodeWrapper.h:
* dds/DCPS/ContentFilteredTopicImpl.h:
* dds/DCPS/ContentFilteredTopicImpl.cpp:
* dds/DCPS/FilterEvaluator.h:
* dds/DCPS/FilterEvaluator.cpp:
* dds/DCPS/MultiTopicImpl.h:
* dds/DCPS/MultiTopicImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
Re-factored some common code from the FilterEvaluator to be reused
in MultiTopic (WHERE clause). Continued implementing MultiTopic.
* bin/dcps_tests.lst:
* tests/DCPS/MultiTopic/MultiTopicTest.cpp:
* tests/DCPS/MultiTopic/MultiTopicTest.idl:
* tests/DCPS/MultiTopic/MultiTopicTest.mpc:
* tests/DCPS/MultiTopic/dcps.ini:
* tests/DCPS/MultiTopic/run_test.pl:
New test for MultiTopic -- it doesn't do anything yet.
Tue Jun 29 14:50:41 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/MultiTopicImpl.cpp:
Added missing #include for std library header.
Mon Jun 28 22:09:42 UTC 2010 Adam Mitz <[email protected]>
* Merged from trunk r3399 through r3407.
Mon Jun 28 21:59:00 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/MultiTopicImpl.h:
* dds/DCPS/MultiTopicImpl.cpp:
Began implementing spec-defined methods for MultiTopic.
* dds/DCPS/TopicExpressionGrammar.h:
Enhanced the grammar to get a useful AST out of it.
* tests/DCPS/TopicExpression/TopicExpression.cpp:
Added some new test cases.
* tests/DCPS/ManyTopicTest:
* tests/DCPS/ManyTopicTest/DataReaderListener1.cpp:
* tests/DCPS/ManyTopicTest/DataReaderListener2.cpp:
* tests/DCPS/ManyTopicTest/DataReaderListener3.cpp:
* tests/DCPS/ManyTopicTest/ManyTopicTest.mpc:
* tests/DCPS/ManyTopicTest/Writer.cpp:
* tests/DCPS/ManyTopicTest/publisher.cpp:
* tests/DCPS/ManyTopicTest/subscriber.cpp:
* tests/DCPS/ManyTopicTypes:
* tests/DCPS/ManyTopicTypes/ManyTopicTypes.mpc:
Renamed these tests from "MultiTopic*" since they do not in fact
test MultiTopics.
* tests/DCPS/MultiTopicTest:
* tests/DCPS/MultiTopicTypes:
Removed these files. They have been renamed.
Fri Jun 25 20:02:08 UTC 2010 Adam Mitz <[email protected]>
* BranchChangeLog:
Creating a ChangeLog for this branch (this file).
* dds/DCPS/FilterExpressionGrammar.h:
* dds/DCPS/TopicExpressionGrammar.h:
Implemented TopicExpression parsing (for MultiTopic), includes some
refactoring of FilterExpression parsing in order to re-use common
grammar rules.
* bin/dcps_tests.lst:
* tests/DCPS/TopicExpression:
* tests/DCPS/TopicExpression/TopicExpression.cpp:
* tests/DCPS/TopicExpression/TopicExpressionTest.mpc:
* tests/DCPS/TopicExpression/run_test.pl:
New test for parsing TopicExpressions
# vim: filetype=changelog
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: