Summary: | Issues with ACE_Hash_Map_Manager implementation | ||
---|---|---|---|
Product: | ACE | Reporter: | Nanbor Wang <bala> |
Component: | ACE Core | Assignee: | DOC Center Support List (internal) <tao-support> |
Status: | ASSIGNED --- | ||
Severity: | normal | CC: | fhunleth |
Priority: | P3 | ||
Version: | 5.2.1 | ||
Hardware: | All | ||
OS: | All | ||
Bug Depends on: | |||
Bug Blocks: | 2181 |
Description
Nanbor Wang
2002-02-16 09:27:28 CST
*** Bug 907 has been marked as a duplicate of this bug. *** Comments on plans to address this bug after the meeting between Dr.Cytron, Irfan and Ravi. * Instead of building in real-time characteristics by subclassing in different ways to get the required functionality, a better way would be to implement this using an observer [which examines the hash table's state in order to determine if any actions like rehashing need to be done] and by encapsulating the strategy used to rehash, within a separate class by itself. This approach seems like a better thing to do given that subclassing would lead to arbitrarily-sized classes. So, the same class could be used in whatever manner is deemed necessary, with or without real-time characteristics purely by choosing what kind of strategy is employed for rehashing [if at all]. * Special cases like string->pointer mappings could be implemented using partial template specialization as pointed out in the original bug report. The idea would be to write a wrapper class which would probably instantiate a class mapping string->(void *) and perform the necessary casts when used for specific types. Since the wrapper would be really thin, the increase in footprint with each instantiation would be much smaller. * To cut down on the heavy interface exported, a viable strategy would be to have a Hash_Map_Manager_Lite class which would support the very basic operations and then have other classes inherit from that and accordingly support whatever iterators seem useful / necessary. |