Please report new issues athttps://github.com/DOCGroup
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/0 http://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.
added depends
work is done on the ondemand branch in cvs, branchpoint is tagged as preondemand
mine
accept
curren ondemand branch compiles and first tests show it works as concept.
Created attachment 515 [details] diff
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).
first version has been committed to head
to pool