Bug 2300 - Simplify serialize/deserialize of sequences
Summary: Simplify serialize/deserialize of sequences
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: IDL Compiler (show other bugs)
Version: 1.4.10
Hardware: All All
: P3 normal
Assignee: Johnny Willemsen
URL:
Depends on:
Blocks: 1929
  Show dependency tree
 
Reported: 2005-11-16 06:54 CST by Johnny Willemsen
Modified: 2006-04-19 07:24 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 Johnny Willemsen 2005-11-16 06:54:38 CST
sequence item
Comment 1 Johnny Willemsen 2005-11-16 06:57:23 CST
Added block, reassign at the same time. Idea is to refactor
serialize/deserialize out of the idl compiler into just some template methods,
will simplify the generated code for sequences a lot.

The code will then just be:

::CORBA::Boolean operator<< (
    TAO_OutputCDR &strm,
    const ParamMod::ParameterTester::object_seq_type &_tao_sequence
  )
{
  return TAO::details::insert_unbounded_sequence(strm, _tao_sequence);
}
::CORBA::Boolean operator>> (
    TAO_InputCDR &strm,
    ParamMod::ParameterTester::object_seq_type &_tao_sequence
  )
{
  return TAO::details::extract_unbounded_sequence(strm, _tao_sequence);
}

Comment 2 Jeff Parsons 2005-11-16 08:04:53 CST
Okay, please let me know when things are ready for these changes to be made.
Comment 3 Johnny Willemsen 2006-03-06 08:15:26 CST
will be part of the sequence changes
Comment 4 Johnny Willemsen 2006-04-19 07:24:03 CDT
Wed Apr 19 07:48:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>