Bug 158 - Use GIOP 1.1 fragments to minimize the buffer allocations
Summary: Use GIOP 1.1 fragments to minimize the buffer allocations
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.0
Hardware: All All
: P3 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on: 358
Blocks: 2455
  Show dependency tree
 
Reported: 1999-07-26 18:33 CDT by Ossama Othman
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 Ossama Othman 1999-07-26 18:33:46 CDT
Use GIOP 1.1 fragments to minimize the buffer allocations: the buffer could be
fixed size and we simply send fragments for each buffer.
Comment 1 Carlos O'Ryan 1999-08-04 11:39:59 CDT
This is a good optimization and should be considered the next time we devote
time to that.
Comment 2 Carlos O'Ryan 2000-02-26 22:25:59 CST
Bug #358 describes a possible way to implement fragments: the CDR stream
classes can have a back-end that is used to allocate the buffers, when
an output CDR stream runs out of buffer space it can request more memory from
the back-end, but instead of performing another allocation the CDR back-end
sends a fragment, and continues marshaling on anew CDR stream.
Comment 3 Ossama Othman 2005-10-13 13:39:48 CDT
A slightly clearer rewording of the tasks:

      . 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 task 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 4 Ossama Othman 2006-01-12 12:24:31 CST
Mine.
Comment 5 Johnny Willemsen 2006-03-17 05:33:45 CST
taking this over
Comment 6 Johnny Willemsen 2006-03-17 05:33:52 CST
accept
Comment 7 Johnny Willemsen 2007-04-11 06:10:17 CDT
to pool