Bug 2455 - On demand read/write addition
Summary: On demand read/write addition
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.5
Hardware: All All
: P3 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on: 158 358
Blocks:
  Show dependency tree
 
Reported: 2006-03-17 04:25 CST by Johnny Willemsen
Modified: 2007-04-11 06:04 CDT (History)
0 users

See Also:


Attachments
diff (35.98 KB, patch)
2006-04-05 08:04 CDT, Johnny Willemsen
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2006-03-17 04:25:41 CST
TAO allocates large buffers for applications sending large
amounts of data, which increases the runtime memory of the
application.  It would therefore be beneficial to reduce the
buffer allocations by making use of the GIOP fragments feature.
The goal is to perform CDR stream reads and writes on-demand,
i.e. read/write enough to be able know what to demarshal or
marshal, respectively.  The following link has details on how we
propose to implement that in TAO:

http://deuce.doc.wustl.edu/bugzilla/﷒0http://deuce.doc.wustl.edu/bugzilla/﷒1﷓

This will involve the following activities:

        . Implement a "backing store" class that hides the source
          buffer, and provides on-demand reads and writes from and to
          that buffer, respectively.

	. Update the ACE CDR stream implementation and the TAO
          messaging code to utilize on-demand reads/writes.
Comment 1 Johnny Willemsen 2006-03-17 04:25:52 CST
added depends
Comment 2 Johnny Willemsen 2006-03-17 05:04:06 CST
work is done on the ondemand branch in cvs, branchpoint is tagged as preondemand
Comment 3 Johnny Willemsen 2006-03-17 05:33:04 CST
mine
Comment 4 Johnny Willemsen 2006-03-17 05:33:11 CST
accept
Comment 5 Johnny Willemsen 2006-04-04 04:26:02 CDT
curren ondemand branch compiles and first tests show it works as concept.
Comment 6 Johnny Willemsen 2006-04-05 08:04:46 CDT
Created attachment 515 [details]
diff
Comment 7 Johnny Willemsen 2006-04-05 08:05:21 CDT
added patches from Chad

his comments

The diff contains a change in Message_Block.{h,inl} and CDR_Stream.cpp that I
needed to get them to work correctly with my allocator.  There is a case in
CDR_Stream.cpp where it did an ACE_NEW_RETURN for an ACE_Message_Block that I
thought should use the message_block_allocator_ of the ACE_OutputCDR (if there
was one available).
Comment 8 Johnny Willemsen 2006-04-20 07:50:15 CDT
first version has been committed to head
Comment 9 Johnny Willemsen 2007-04-11 06:04:07 CDT
to pool