Bug 1529 - GIOP_Message_Base::write_protocol_header needs to be more efficient
Summary: GIOP_Message_Base::write_protocol_header needs to be more efficient
Status: ASSIGNED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.3.2
Hardware: All All
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2003-06-09 22:55 CDT by Nanbor Wang
Modified: 2003-06-25 13:01 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nanbor Wang 2003-06-09 22:55:39 CDT
Few points for making it efficient

1. The call reset () on the CDR should be removed and its a waste since we only 
use a fresh CDR
2. The GIOP class should cache a CDR stream with the GIOP header written the 
first time. This is perfectly valid 

   - the client holds a lock on the transport and so you can use the cached   
version with the same header again and again

   - the server needs to asses the GIOP minor revision before sending the reply 
out and its a single write operation after indexing to the right position. 

for #2 to be possible the ACE/TAO_OutputCDR streams need to have a way to chain 
CDR streams or the internal message blocks.  

This should save CPU cycles in the outgoing path.
Comment 1 Nanbor Wang 2003-06-25 13:01:09 CDT
Accept for tao-support