Bug 358 - Implement CDR streams that are read (or written) on demand.
Summary: Implement CDR streams that are read (or written) on demand.
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.0.5
Hardware: All All
: P3 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks: 158 2455
  Show dependency tree
 
Reported: 1999-10-07 14:46 CDT by Carlos O'Ryan
Modified: 2007-04-11 06:10 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 Carlos O'Ryan 1999-10-07 14:46:12 CDT
Our CDR stream classes read a complete message from the network and then process
the message in memory. For some applications it could be more efficient to read
enough of the message as to start demarshaling and then simply:
+ Copy the rest of the message directly to another socket, minimizing latency in
gateways (this was suggested by James Megquier from BBN)
+ Drop the message because it is not important (ex: late replies to timed out
request.
This shouldn't be too hard to implement: a backing store class will hide the
source of the buffer and read it on demand, much like iostreams work; in the
simple case the backin store will read from a fixed size buffer (though a chain
of buffers is also interesting); in the socket case the backin store could read
using the Transport class from the pluggable protocols framework.
Writing to a backing store is harder because the message size is on the first
few bytes, and the real message size is not known until it is completed. Using
an iterator to record the placeholder left for the message size and some kind of
upcall to let the application write the total message size before flushing
*could* solve the problem, but that requires more thinking.
Comment 1 Ossama Othman 1999-10-15 11:51:59 CDT
Accepted.
Comment 2 Ossama Othman 2006-02-08 13:23:54 CST
A related bugzilla entry is Bug 1356.  Not sure if there should be an explicit 
dependency between the two.
Comment 3 Johnny Willemsen 2006-03-17 05:34:22 CST
mine
Comment 4 Johnny Willemsen 2006-03-17 05:34:31 CST
accept
Comment 5 Johnny Willemsen 2007-04-11 06:10:43 CDT
to pool