Summary: | operator[] of sequence<string> returns TAO_SeqElem_String_Manager instead of TAO_String_Manager | ||
---|---|---|---|
Product: | TAO | Reporter: | Mark Paulus <mark.paulus> |
Component: | IDL Compiler | Assignee: | Johnny Willemsen <jwillemsen> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | david.everly |
Priority: | P3 | ||
Version: | 1.4.10 | ||
Hardware: | SPARC | ||
OS: | Solaris | ||
Bug Depends on: | |||
Bug Blocks: | 1929 |
Description
Mark Paulus
2003-12-12 08:53:58 CST
Unfortunately, you didn't say what the compile errors are. I tried this example in my workspace and got this: w:\ace_wrappers\tao\tests\bench\local\main.cpp(44) : error C2665: 'populate' : none of the 2 overloads can convert parameter 1 from type 'class TAO_SeqElem_String_Manager' The offending line is: populate(theUserData.userPools[0]); This can be easily fixed by changing the line to: populate(theUserData.userPools[0].in ()); I don't know if this was your problem or not. Jeff, I work with Mark. The compiler error you got was the same error we got...and actually, .out() will work in this case. However this doesn't meet our specific needs, and appears also not to meet the following portion of the OMG C++ mapping document (http://www.omg.org/docs/formal/03-06-03.pdf): "For strings, wide strings, and object references, operator[] for a sequence must return a type with the same semantics as the types used for string, wide string, and object reference members of structs and arrays, so that assignment to the string, wide string, or object reference sequence member via operator=() will release old storage when appropriate." Dave. CC: updates to david.everly@mci.com This is exactly what the TAO_SeqElem_String_Mgr type is for - to provide automatic release semantics and such. There are also conversion operators defined for the class. The problem is that the compiler cannot grok them, and in such cases we have to call the explicit conversion functions. The return type of [] for strings is TAO_SeqElem_String_Mgr, which has the memory management semantics required by the spec. This type also has automatic conversion operators for const and non-const operations. Unfortunately, this compiler cannot grok these things, and we have to use the explicit conversion functions. Jeff, Thanks for your responses. Just a few follow up questions if I may: 1. Our tests of the above sample with Orbix work fine, because in the Orbix header files, the return type of [] for a sequence of string is char& instead TAO_SeqElem_String_Manager. The Orbix behavior is what I had expected when reading the OMG mapping document statement regarding sequence<string>: "...operator[] for a sequence must return a type with the same semantics as the types used for string..." and "The overloaded subscript operators (operator[]) return the item at the given index. The non-const version must return something that can serve as an lvalue (i.e., something that allows assignment into the item at the given index)..." Are both implementations equally compliant in this respect? 2. Which compiler will grok the TAO implementation with our sample code on Solaris 8? 3. Is there a bug that should be pursued in GCC? Again, thanks for your help. Dave. I've been reading the mapping standard and found this also: "1.13.4 Sequence T_var and T_out Types: In addition to the regular operations defined for T_var and T_out types, the T_var and T_out for a sequence type also supports an overloaded operator[] that forwards requests to the operator[] of the underlying sequence.11 This subscript operator should have the same return type as that of the corresponding operator on the underlying sequence type." Not sure if the above is relevant. However, it is occuring to me that the reason the compiler doesn't resolve Sequence of String to CORBA::String_out is that TAO uses TAO_String_Manager with the CORBA string type and TAO_SeqElem_String_Manager for and instance of CORBA sequence<string> type (don't know why I didn't see this before). I wonder if any compiler could resolve this difference without cast. If I add another overloaded function that takes TAO_SeqElem_String_Manager as input, the sample compiles and appears to work as anticipated. However, this makes the sample not portable between ORBs. This bug seems related to all the other work I am doing for sequences. Adding a dependency so it does not get forgotten. the string managers could be reimplemented as templates so that we only have one template for string and wstring. Reassign, this one is handled in the sequenceupdate branch which will be made public with the x.5.2 release. The seqelem string manager is gone accept update blocks Wed Apr 19 07:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl> |