Summary: | Update array implementation | ||
---|---|---|---|
Product: | TAO | Reporter: | Johnny Willemsen <jwillemsen> |
Component: | ORB | Assignee: | DOC Center Support List (internal) <tao-support> |
Status: | NEW --- | ||
Severity: | enhancement | ||
Priority: | P3 | ||
Version: | 1.5.1 | ||
Hardware: | All | ||
OS: | All | ||
Bug Depends on: | |||
Bug Blocks: | 2454 | ||
Attachments: | some code parts |
Description
Johnny Willemsen
2005-11-21 06:27:47 CST
Created attachment 414 [details]
some code parts
accept will be handled by Remedy accept updated version the _alloc, _dup, etc methods could then also call the methods on the trait in the generated code we then get something like this, will be added more struct char_seq_array_traits { typedef char_seq_array value_type; typedef char_seq_array_slice slice_type; }; typedef TAO_VarArray_Var_T< char_seq_array_traits > char_seq_array_var; typedef TAO_Array_Out_T< char_seq_array_traits > char_seq_array_out; typedef TAO_Array_Forany_T< char_seq_array_traits > char_seq_array_forany; namespace TAO { namespace details { template<class BASE_TYPE, size N> class primitive_type_array_traits { typedef BASE_TYPE array_type[N]; typedef BASE_TYPE * array_slice; // add functions here, such as copy, duplicate, etc. }; }} Now the generated code would look like this: // IDL typedef char Arraychar[2]; // C++ typedef TAO::details::primitive_array_traits<CORBA::Char,2> Arraychar; with the new last proposal the trick is how to support multi dimensional arrays without any problems. first iteration of refactoring is ready on taoarray branch, when x.5.2 is out this goes in the repo to pool enhancement |