Bug 907 - Refactor string->pointer uses of ACE_Hash_Map_Manager to reduce footprint
Summary: Refactor string->pointer uses of ACE_Hash_Map_Manager to reduce footprint
Status: RESOLVED DUPLICATE of bug 1151
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.1.15
Hardware: All All
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2001-05-10 13:57 CDT by fhunleth
Modified: 2002-02-16 09:29 CST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description fhunleth 2001-05-10 13:57:22 CDT
Instantiating ACE_Hash_Map_Manager incurs a lot of overhead in terms of code 
size to support infrequently used operations such as reverse iterators.  TAO 
has many instances of string->pointer maps that result in a new instantion of 
all of the classes, even though they are essentially the same except for 
pointer types.  Footprint could be saved by creating an adapter template to 
perform the appropriate casting to the desired pointer types, but only using 
one template instantiation of the string->pointer map.

Also, look into setting the default size of the initial hash map to reduce 
runtime footprint.

Note from previous investigation for doing this: A few months ago Irfan and I 
started looking into doing this, but ran into some complications making an 
adapter for ACE_Hash_Map_Entry due to its use of public member variables.  Then 
the effort got put off.

After the RTCORBA effort is done, I'll take responsibility for this one, but 
don't let this stop anyone else from taking it if they have time sooner.
Comment 1 Carlos O'Ryan 2001-05-22 12:42:31 CDT
Accepted for tao-support
Comment 2 Nanbor Wang 2002-02-16 09:29:41 CST
Closing this bug. Bug 1151 superceedes this.

*** This bug has been marked as a duplicate of 1151 ***