Salome HOME
Merge branch 'master' of https://codev-tuleap.cea.fr/plugins/git/salome/yacs
[modules/yacs.git] / src / runtime / TypeConversions.cxx
1 // Copyright (C) 2006-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //#define REFCNT
21 //
22 #ifdef REFCNT
23 #define private public
24 #define protected public
25 #include <omniORB4/CORBA.h>
26 #include <omniORB4/internal/typecode.h>
27 #endif
28
29 #include "TypeConversions.hxx"
30 #include "ConversionException.hxx"
31 #include "RuntimeSALOME.hxx"
32 #include "Salome_file_i.hxx"
33 #include "TypeCode.hxx"
34 #include "Cstr2d.hxx"
35 #include "SALOME_GenericObj.hh"
36
37 #include <iostream>
38 #include <iomanip>
39 #include <sstream>
40
41 #ifdef WIN32
42 #include <fcntl.h>
43 #define _S_IREAD 256
44 #define _S_IWRITE 128
45 int mkstemp(char *tmpl)
46 {
47   int ret=-1;
48   mktemp(tmpl); ret=open(tmpl,O_RDWR|O_BINARY|O_CREAT|O_EXCL|_O_SHORT_LIVED, _S_IREAD|_S_IWRITE);
49   return ret;
50 }
51 #endif
52
53 //#define _DEVDEBUG_
54 #include "YacsTrace.hxx"
55
56 using namespace std;
57
58 namespace YACS
59 {
60   namespace ENGINE
61   {
62     void printbin(const std::string& bin)
63       {
64         register char c;
65         for(int i=0;i<bin.length();i++)
66           {
67             c=bin[i];
68             if (c < ' ' || c >= 0x7f) 
69               {
70                 fprintf(stderr,"\\x%02x",c & 0xff);
71               }
72             else
73               fprintf(stderr,"%c",c);
74           }
75         fprintf(stderr,"\n");
76       }
77
78     std::string getImplName(ImplType impl)
79       {
80          switch(impl)
81            {
82            case CORBAImpl:
83              return "CORBA";
84            case PYTHONImpl:
85              return "PYTHON";
86            case NEUTRALImpl:
87              return "NEUTRAL";
88            case XMLImpl:
89              return "XML";
90            case CPPImpl:
91              return "CPP";
92            default:
93              return "UNKNOWN";
94            }
95       }
96     /*
97      * Functions to return a CORBA TypeCode equivalent to a YACS TypeCode
98      */
99
100     typedef CORBA::TypeCode_ptr (*getCorbaTCFn)(const TypeCode *);
101
102     CORBA::TypeCode_ptr getCorbaTCNull(const TypeCode *t)
103       {
104         stringstream msg;
105         msg << "Conversion not implemented: kind= " << t->kind();
106         msg << " : " << __FILE__ << ":" << __LINE__;
107         throw YACS::ENGINE::ConversionException(msg.str());
108       }
109
110     CORBA::TypeCode_ptr getCorbaTCDouble(const TypeCode *t)
111     {
112       return CORBA::TypeCode::_duplicate(CORBA::_tc_double);
113     }
114
115     CORBA::TypeCode_ptr getCorbaTCInt(const TypeCode *t)
116     {
117       return CORBA::TypeCode::_duplicate(CORBA::_tc_long);
118     }
119
120     CORBA::TypeCode_ptr getCorbaTCString(const TypeCode *t)
121     {
122       return CORBA::TypeCode::_duplicate(CORBA::_tc_string);
123     }
124
125     CORBA::TypeCode_ptr getCorbaTCBool(const TypeCode *t)
126     {
127       return CORBA::TypeCode::_duplicate(CORBA::_tc_boolean);
128     }
129
130     CORBA::TypeCode_ptr getCorbaTCObjref(const TypeCode *t)
131     {
132       DEBTRACE( t->name() << " " << t->shortName() << " " << t->id());
133       CORBA::TypeCode_ptr tc;
134       if(strncmp(t->id(),"python",6)==0 )
135         tc= CORBA::TypeCode::_duplicate(Engines::_tc_fileBlock);
136       else if(strncmp(t->id(),"json",4)==0)
137         tc= CORBA::TypeCode::_duplicate(CORBA::_tc_string);
138       else
139         tc= getSALOMERuntime()->getOrb()->create_interface_tc(t->id(),t->shortName());
140 #ifdef REFCNT
141       DEBTRACE("refcount CORBA tc Objref: " << ((omni::TypeCode_base*)tc)->pd_ref_count);
142 #endif
143       return tc;
144     }
145
146     CORBA::TypeCode_ptr getCorbaTCSequence(const TypeCode *t)
147     {
148       CORBA::TypeCode_var content_type=getCorbaTC(t->contentType());
149       CORBA::TypeCode_ptr tc= getSALOMERuntime()->getOrb()->create_sequence_tc(0,content_type);
150 #ifdef REFCNT
151       DEBTRACE("refcount CORBA content_type: " << ((omni::TypeCode_base*)content_type.in())->pd_ref_count);
152       DEBTRACE("refcount CORBA tc: " << ((omni::TypeCode_base*)tc)->pd_ref_count);
153 #endif
154       return tc;
155     }
156
157     CORBA::TypeCode_ptr getCorbaTCStruct(const TypeCode *t)
158     {
159       CORBA::StructMemberSeq mseq;
160       YACS::ENGINE::TypeCodeStruct* tst=(YACS::ENGINE::TypeCodeStruct*)t;
161       int nMember=tst->memberCount();
162       mseq.length(nMember);
163       for(int i=0;i<nMember;i++)
164         {
165           const char * name=tst->memberName(i);
166           TypeCode* tm=tst->memberType(i);
167           mseq[i].name=CORBA::string_dup(name);
168           mseq[i].type=getCorbaTC(tm);
169         }
170       CORBA::TypeCode_ptr tc= getSALOMERuntime()->getOrb()->create_struct_tc(t->id(),t->shortName(),mseq);
171 #ifdef REFCNT
172       DEBTRACE("refcount CORBA tc: " << ((omni::TypeCode_base*)tc)->pd_ref_count);
173 #endif
174       return tc;
175     }
176
177     getCorbaTCFn getCorbaTCFns[]=
178       {
179         getCorbaTCNull,
180         getCorbaTCDouble,
181         getCorbaTCInt,
182         getCorbaTCString,
183         getCorbaTCBool,
184         getCorbaTCObjref,
185         getCorbaTCSequence,
186         getCorbaTCNull,
187         getCorbaTCStruct,
188       };
189
190     CORBA::TypeCode_ptr getCorbaTC(const TypeCode *t)
191     {
192       int tk=t->kind();
193       return getCorbaTCFns[tk](t);
194     }
195
196     /*
197      * End of Functions to return a CORBA TypeCode equivalent to a YACS TypeCode
198      */
199
200     /*
201      * Section that defines functions to check adaptation from one implementation to another
202      * isAdaptable is template function that checks if TypeCode t1 from implementation IMPLIN
203      * can be converted to TypeCode t2 from implementation IMPLOUT
204      * IMPLIN is the implementation of an output port
205      * IMPLOUT is the implementation of an input port
206      * If the check is True, the input port can be adapted to the output port
207      */
208
209     template <ImplType IMPLIN,ImplType IMPLOUT> inline int isAdaptable(const TypeCode *t1,const TypeCode* t2);
210
211     template <ImplType IMPLIN,ImplType IMPLOUT>
212     struct isAdaptableDouble
213       {
214         static inline int apply(const TypeCode *t1,const TypeCode* t2)
215           {
216             if(t1->kind() == Double)return 1;
217             if(t1->kind() == Int)return 1;
218             return 0;
219           }
220       };
221     template <ImplType IMPLIN,ImplType IMPLOUT>
222     struct isAdaptableInt
223       {
224         static inline int apply(const TypeCode *t1,const TypeCode* t2)
225           {
226             if(t1->kind() == Int)return 1;
227             return 0;
228           }
229       };
230     template <ImplType IMPLIN,ImplType IMPLOUT>
231     struct isAdaptableString
232       {
233         static inline int apply(const TypeCode *t1,const TypeCode* t2)
234           {
235             if(t1->kind() == String)return 1;
236             return 0;
237           }
238       };
239     template <ImplType IMPLIN,ImplType IMPLOUT>
240     struct isAdaptableBool
241       {
242         static inline int apply(const TypeCode *t1,const TypeCode* t2)
243           {
244             if(t1->kind() == Bool)return 1;
245             if(t1->kind() == Int)return 1;
246             return 0;
247           }
248       };
249     template <ImplType IMPLIN,ImplType IMPLOUT>
250     struct isAdaptableObjref
251       {
252         static inline int apply(const TypeCode *t1,const TypeCode* t2)
253           {
254             if(t1->kind() == Objref)
255               {
256                 //The inport type must be more general than outport type
257                 if( t1->isA(t2->id()) )
258                   return 1;
259               }
260             else if(t1->kind() == Sequence)
261               {
262                 const TypeCodeSeq *t1c(dynamic_cast<const TypeCodeSeq *>(t1));
263                 if(!t1c)
264                   return 0;
265                 const TypeCode *t1cc(t1c->contentType());
266                 if(t1cc==t2)
267                   return 1;
268                 if(t1cc->kind() == Objref && std::string(t1cc->id())==std::string(t2->id()))
269                   return 1;
270               }
271             return 0;
272           }
273       };
274     template <ImplType IMPLIN,ImplType IMPLOUT>
275     struct isAdaptableSequence
276       {
277         static inline int apply(const TypeCode *t1,const TypeCode* t2)
278           {
279             if(t1->kind() == Sequence)
280               {
281                 if(isAdaptable<IMPLIN,IMPLOUT>(t1->contentType(),t2->contentType()))
282                   {
283                     return 1;
284                   }
285               }
286             return 0;
287           }
288       };
289     template <ImplType IMPLIN,ImplType IMPLOUT>
290     struct isAdaptableArray
291       {
292         static inline int apply(const TypeCode *t1,const TypeCode* t2)
293           {
294             return 0;
295           }
296       };
297     template <ImplType IMPLIN,ImplType IMPLOUT>
298     struct isAdaptableStruct
299       {
300         static inline int apply(const TypeCode *t1,const TypeCode* t2)
301           {
302             if(t1->kind() == Struct)
303               {
304                 if( t1->isA(t2) )
305                   return 1;
306               }
307             return 0;
308           }
309       };
310
311     /*
312      * Function to check adaptation from implementation 1 (IMPLIN,t1) to implementation 2 (IMPLOUT,t2)
313      * t1 is the IMPLIN output port type
314      * t2 is the IMPLOUT input port type
315      */
316     template <ImplType IMPLIN,ImplType IMPLOUT>
317     inline int isAdaptable(const TypeCode *t1,const TypeCode* t2)
318       {
319          switch(t2->kind())
320            {
321            case Double:
322              return isAdaptableDouble<IMPLIN,IMPLOUT>::apply(t1,t2);
323            case Int:
324              return isAdaptableInt<IMPLIN,IMPLOUT>::apply(t1,t2);
325            case String:
326              return isAdaptableString<IMPLIN,IMPLOUT>::apply(t1,t2);
327            case Bool:
328              return isAdaptableBool<IMPLIN,IMPLOUT>::apply(t1,t2);
329            case Objref:
330              return isAdaptableObjref<IMPLIN,IMPLOUT>::apply(t1,t2);
331            case Sequence:
332              return isAdaptableSequence<IMPLIN,IMPLOUT>::apply(t1,t2);
333            case Array:
334              return isAdaptableArray<IMPLIN,IMPLOUT>::apply(t1,t2);
335            case Struct:
336              return isAdaptableStruct<IMPLIN,IMPLOUT>::apply(t1,t2);
337            default:
338              break;
339            }
340          return 0;
341       }
342
343     //xxx to Python adaptations
344     int isAdaptableCorbaPyObject(const TypeCode *t1,const TypeCode *t2)
345     {
346       return isAdaptable<PYTHONImpl,CORBAImpl>(t1,t2);
347     }
348     int isAdaptableNeutralPyObject(const TypeCode * t1, const TypeCode * t2)
349     {
350       return isAdaptable<PYTHONImpl,NEUTRALImpl>(t1,t2);
351     }
352     int isAdaptablePyObjectPyObject(const TypeCode *t1,const TypeCode *t2)
353     {
354       return isAdaptable<PYTHONImpl,PYTHONImpl>(t1,t2);
355     }
356
357     //xxx to Neutral adaptations
358     int isAdaptableCorbaNeutral(const TypeCode *t1,const TypeCode *t2)
359     {
360       return isAdaptable<NEUTRALImpl,CORBAImpl>(t1,t2);
361     }
362     int isAdaptablePyObjectNeutral(const TypeCode *t1,const TypeCode *t2)
363     {
364       return isAdaptable<NEUTRALImpl,PYTHONImpl>(t1,t2);
365     }
366     int isAdaptableXmlNeutral(const TypeCode *t1,const TypeCode *t2)
367     {
368       return isAdaptable<NEUTRALImpl,XMLImpl>(t1,t2);
369     }
370     int isAdaptableNeutralNeutral(const TypeCode *t1, const TypeCode *t2)
371     {
372       return isAdaptableNeutralCorba(t1, t2);
373     }
374
375     //xxx to XML adaptations
376     int isAdaptableNeutralXml(const TypeCode * t1, const TypeCode * t2)
377     {
378       return isAdaptable<XMLImpl,NEUTRALImpl>(t1,t2);
379     }
380
381     //xxx to Corba adaptations
382     int isAdaptableNeutralCorba(const TypeCode *t1,const TypeCode *t2)
383     {
384       return isAdaptable<CORBAImpl,NEUTRALImpl>(t1,t2);
385     }
386     int isAdaptableXmlCorba(const TypeCode *t1,const TypeCode *t2)
387     {
388       return isAdaptable<CORBAImpl,XMLImpl>(t1,t2);
389     }
390     int isAdaptableCorbaCorba(const TypeCode *t1,const TypeCode *t2)
391     {
392       return isAdaptable<CORBAImpl,CORBAImpl>(t1,t2);
393     }
394     int isAdaptablePyObjectCorba(const TypeCode *t1,const TypeCode *t2)
395     {
396       return isAdaptable<CORBAImpl,PYTHONImpl>(t1,t2);
397     }
398
399     //! Basic template convertor from type TIN to Yacs<TOUT> type
400     /*!
401      * This convertor does nothing : throws exception
402      * It must be partially specialize for a specific type (TIN)
403      */
404     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
405     struct convertToYacsDouble
406     {
407       static inline double convert(const TypeCode *t,TIN o,TIN2 aux)
408         {
409           stringstream msg;
410           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
411           msg << " : " << __FILE__ << ":" << __LINE__;
412           throw YACS::ENGINE::ConversionException(msg.str());
413         }
414     };
415     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
416     struct convertToYacsInt
417     {
418       static inline long convert(const TypeCode *t,TIN o,TIN2 aux)
419         {
420           stringstream msg;
421           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
422           msg << " : " << __FILE__ << ":" << __LINE__;
423           throw YACS::ENGINE::ConversionException(msg.str());
424         }
425     };
426     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
427     struct convertToYacsString
428     {
429       static inline std::string convert(const TypeCode *t,TIN o,TIN2 aux)
430         {
431           stringstream msg;
432           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
433           msg << " : " << __FILE__ << ":" << __LINE__;
434           throw YACS::ENGINE::ConversionException(msg.str());
435         }
436     };
437     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
438     struct convertToYacsBool
439     {
440       static inline bool convert(const TypeCode *t,TIN o,TIN2 aux)
441         {
442           stringstream msg;
443           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
444           msg << " : " << __FILE__ << ":" << __LINE__;
445           throw YACS::ENGINE::ConversionException(msg.str());
446         }
447     };
448     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
449     struct convertToYacsObjref
450     {
451       static inline std::string convert(const TypeCode *t,TIN o,TIN2 aux,int protocol)
452         {
453           stringstream msg;
454           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
455           msg << " : " << __FILE__ << ":" << __LINE__;
456           throw YACS::ENGINE::ConversionException(msg.str());
457         }
458     };
459     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
460     struct convertToYacsSequence
461     {
462       static inline void convert(const TypeCode *t,TIN o,TIN2 aux,std::vector<TOUT>& v)
463         {
464           stringstream msg;
465           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
466           msg << " : " << __FILE__ << ":" << __LINE__;
467           throw YACS::ENGINE::ConversionException(msg.str());
468         }
469     };
470     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
471     struct convertToYacsArray
472     {
473       static inline void convert(const TypeCode *t,TIN o,TIN2 aux,std::vector<TOUT>& v)
474         {
475           stringstream msg;
476           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
477           msg << " : " << __FILE__ << ":" << __LINE__;
478           throw YACS::ENGINE::ConversionException(msg.str());
479         }
480     };
481     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
482     struct convertToYacsStruct
483     {
484       static inline void convert(const TypeCode *t,TIN o,TIN2 aux,std::map<std::string,TOUT>& v)
485         {
486           stringstream msg;
487           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLIN << " to: " << IMPLOUT;
488           msg << " : " << __FILE__ << ":" << __LINE__;
489           throw YACS::ENGINE::ConversionException(msg.str());
490         }
491     };
492
493     //! Basic convertor from Yacs<TOUT> type to full TOUT type
494     /*!
495      *
496      */
497     template <ImplType IMPLOUT, class TOUT>
498     struct convertFromYacsDouble
499     {
500       static inline TOUT convert(const TypeCode *t,double o)
501         {
502           stringstream msg;
503           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
504           msg << " : " << __FILE__ << ":" << __LINE__;
505           throw YACS::ENGINE::ConversionException(msg.str());
506         }
507     };
508     template <ImplType IMPLOUT, class TOUT>
509     struct convertFromYacsInt
510     {
511       static inline TOUT convert(const TypeCode *t,long o)
512         {
513           stringstream msg;
514           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
515           msg << " : " << __FILE__ << ":" << __LINE__;
516           throw YACS::ENGINE::ConversionException(msg.str());
517         }
518     };
519     template <ImplType IMPLOUT, class TOUT>
520     struct convertFromYacsString
521     {
522       static inline TOUT convert(const TypeCode *t,std::string o)
523         {
524           stringstream msg;
525           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
526           msg << " : " << __FILE__ << ":" << __LINE__;
527           throw YACS::ENGINE::ConversionException(msg.str());
528         }
529     };
530     template <ImplType IMPLOUT, class TOUT>
531     struct convertFromYacsBool
532     {
533       static inline TOUT convert(const TypeCode *t,bool o)
534         {
535           stringstream msg;
536           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
537           msg << " : " << __FILE__ << ":" << __LINE__;
538           throw YACS::ENGINE::ConversionException(msg.str());
539         }
540     };
541     template <ImplType IMPLOUT, class TOUT>
542     struct convertFromYacsObjref
543     {
544       static inline TOUT convert(const TypeCode *t,std::string o)
545         {
546           stringstream msg;
547           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
548           msg << " : " << __FILE__ << ":" << __LINE__;
549           throw YACS::ENGINE::ConversionException(msg.str());
550         }
551     };
552     template <ImplType IMPLOUT, class TOUT>
553     struct convertFromYacsSequence
554     {
555       static inline TOUT convert(const TypeCode *t,std::vector<TOUT>& v)
556         {
557           stringstream msg;
558           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
559           msg << " : " << __FILE__ << ":" << __LINE__;
560           throw YACS::ENGINE::ConversionException(msg.str());
561         }
562     };
563     template <ImplType IMPLOUT, class TOUT>
564     struct convertFromYacsArray
565     {
566       static inline TOUT convert(const TypeCode *t,std::vector<TOUT>& v)
567         {
568           stringstream msg;
569           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
570           msg << " : " << __FILE__ << ":" << __LINE__;
571           throw YACS::ENGINE::ConversionException(msg.str());
572         }
573     };
574     template <ImplType IMPLOUT, class TOUT>
575     struct convertFromYacsStruct
576     {
577       static inline TOUT convert(const TypeCode *t,std::map<std::string,TOUT>& v)
578         {
579           stringstream msg;
580           msg << "Conversion not implemented: kind= " << t->kind() << " Implementation: " << IMPLOUT;
581           msg << " : " << __FILE__ << ":" << __LINE__;
582           throw YACS::ENGINE::ConversionException(msg.str());
583         }
584     };
585     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
586     inline TOUT convertDouble(const TypeCode *t,TIN o,TIN2 aux)
587     {
588       double d=convertToYacsDouble<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux);
589       DEBTRACE( d );
590       TOUT r=convertFromYacsDouble<IMPLOUT,TOUT>::convert(t,d);
591       return r;
592     }
593     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
594     inline TOUT convertInt(const TypeCode *t,TIN o,TIN2 aux)
595     {
596       long d=convertToYacsInt<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux);
597       DEBTRACE( d );
598       TOUT r=convertFromYacsInt<IMPLOUT,TOUT>::convert(t,d);
599       return r;
600     }
601     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
602     inline TOUT convertString(const TypeCode *t,TIN o,TIN2 aux)
603     {
604       std::string d=convertToYacsString<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux);
605       DEBTRACE( d );
606       TOUT r=convertFromYacsString<IMPLOUT,TOUT>::convert(t,d);
607       return r;
608     }
609     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
610     inline TOUT convertBool(const TypeCode *t,TIN o,TIN2 aux)
611     {
612       double d=convertToYacsBool<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux);
613       DEBTRACE( d );
614       TOUT r=convertFromYacsBool<IMPLOUT,TOUT>::convert(t,d);
615       return r;
616     }
617     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
618     inline TOUT convertObjref(const TypeCode *t,TIN o,TIN2 aux)
619     {
620       int protocol=-1;
621       if(IMPLOUT==XMLImpl)
622         protocol=0;//to avoid presence of \0 into XML generated file
623       if(IMPLOUT==NEUTRALImpl)
624         protocol=4;
625       std::string d=convertToYacsObjref<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux,protocol);
626       DEBTRACE( d );
627       TOUT r=convertFromYacsObjref<IMPLOUT,TOUT>::convert(t,d);
628       return r;
629     }
630
631     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
632     inline TOUT convertSequence(const TypeCode *t,TIN o,TIN2 aux)
633     {
634       std::vector<TOUT> v;
635       convertToYacsSequence<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux,v);
636       TOUT r=convertFromYacsSequence<IMPLOUT,TOUT>::convert(t,v);
637       return r;
638     }
639     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
640     inline TOUT convertArray(const TypeCode *t,TIN o,TIN2 aux)
641     {
642       std::vector<TOUT> v;
643       convertToYacsArray<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux,v);
644       TOUT r=convertFromYacsArray<IMPLOUT,TOUT>::convert(t,v);
645       return r;
646     }
647     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
648     inline TOUT convertStruct(const TypeCode *t,TIN o,TIN2 aux)
649     {
650       std::map<std::string,TOUT> v;
651       convertToYacsStruct<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>::convert(t,o,aux,v);
652       TOUT r=convertFromYacsStruct<IMPLOUT,TOUT>::convert(t,v);
653       return r;
654     }
655
656     template <ImplType IMPLIN,class TIN,class TIN2,ImplType IMPLOUT, class TOUT>
657     inline TOUT YacsConvertor(const TypeCode *t,TIN o,TIN2 aux)
658       {
659          int tk=t->kind();
660          switch(t->kind())
661            {
662            case Double:
663              return convertDouble<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
664            case Int:
665              return convertInt<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
666            case String:
667              return convertString<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
668            case Bool:
669              return convertBool<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
670            case Objref:
671              return convertObjref<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
672            case Sequence:
673              return convertSequence<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
674            case Array:
675              return convertArray<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
676            case Struct:
677              return convertStruct<IMPLIN,TIN,TIN2,IMPLOUT,TOUT>(t,o,aux);
678            default:
679              break;
680            }
681          stringstream msg;
682          msg << "Conversion not implemented: kind= " << tk << " Implementation: " << IMPLOUT;
683          msg << " : " << __FILE__ << ":" << __LINE__;
684          throw YACS::ENGINE::ConversionException(msg.str());
685       }
686
687     //! ToYacs Convertor for PYTHONImpl
688     /*!
689      * This convertor converts Python object to YACS<TOUT> types
690      * Partial specialization for Python implementation with type PyObject* (PYTHONImpl)
691      */
692     template <ImplType IMPLOUT, class TOUT>
693     struct convertToYacsDouble<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>
694     {
695       static inline double convert(const TypeCode *t,PyObject* o,void*)
696         {
697           double x;
698           if (PyFloat_Check(o))
699             x=PyFloat_AS_DOUBLE(o);
700           else if(PyLong_Check(o))
701             x=PyLong_AsLong(o);
702           else
703             {
704               stringstream msg;
705               msg << "Not a python double. ";
706 #ifdef _DEVDEBUG_
707               msg << "kind=" << t->kind() ;
708               msg << " ( " << __FILE__ << ":" << __LINE__ << ")";
709 #endif
710               throw YACS::ENGINE::ConversionException(msg.str());
711             }
712           return x;
713         }
714     };
715     template <ImplType IMPLOUT, class TOUT>
716     struct convertToYacsInt<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>
717     {
718       static inline long convert(const TypeCode *t,PyObject* o,void*)
719         {
720           long l;
721           if(PyLong_Check(o))
722             l=PyLong_AsLong(o);
723           else
724             {
725               stringstream msg;
726               msg << "Not a python integer. ";
727 #ifdef _DEVDEBUG_
728               msg << "kind=" << t->kind() ;
729               msg << " ( " << __FILE__ << ":" << __LINE__ << ")";
730 #endif
731               throw YACS::ENGINE::ConversionException(msg.str());
732             }
733           return l;
734         }
735     };
736     template <ImplType IMPLOUT, class TOUT>
737     struct convertToYacsString<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>
738     {
739       static inline std::string convert(const TypeCode *t,PyObject* o,void*)
740         {
741           std::string s;
742           if (PyUnicode_Check(o))
743             {
744               Py_ssize_t size;
745               char *ptr = PyUnicode_AsUTF8AndSize(o, &size);
746               if (!ptr)
747                 throw YACS::ENGINE::ConversionException("Conversion from PyUnicode to string failed");
748               s.assign(ptr, size);
749             }
750           else
751             {
752               stringstream msg;
753               msg << "Not a python string. ";
754 #ifdef _DEVDEBUG_
755               msg << "kind=" << t->kind() ;
756               msg << " ( " << __FILE__ << ":" << __LINE__ << ")";
757 #endif
758               throw YACS::ENGINE::ConversionException(msg.str());
759             }
760           return s;
761         }
762     };
763     template <ImplType IMPLOUT, class TOUT>
764     struct convertToYacsBool<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>
765     {
766       static inline bool convert(const TypeCode *t,PyObject* o,void*)
767         {
768           bool l;
769           if (PyBool_Check(o))
770               l=(o==Py_True);
771           else if(PyLong_Check(o))
772               l=(PyLong_AsLong(o)!=0);
773           else
774             {
775               stringstream msg;
776               msg << "Not a python boolean. ";
777 #ifdef _DEVDEBUG_
778               msg << "kind=" << t->kind() ;
779               msg << " ( " << __FILE__ << ":" << __LINE__ << ")";
780 #endif
781               throw YACS::ENGINE::ConversionException(msg.str());
782             }
783           return l;
784         }
785     };
786     template <ImplType IMPLOUT, class TOUT>
787     struct convertToYacsObjref<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>
788     {
789       static inline std::string convert(const TypeCode *t,PyObject* o,void*,int protocol)
790         {
791           if (PyUnicode_Check(o) && strncmp(t->id(),"python",6)!=0)
792             {
793               // the objref is used by Python as a string (prefix:value) keep it as a string
794               Py_ssize_t size;
795               std::string s;
796               char *ptr = PyUnicode_AsUTF8AndSize(o, &size);
797               if (!ptr)
798                 throw YACS::ENGINE::ConversionException("Conversion from PyUnicode to string failed");
799               s.assign(ptr, size);
800               return s;
801             }
802           if(strncmp(t->id(),"python",6)==0)
803             {
804               // It's a native Python object pickle it
805               PyObject* mod=PyImport_ImportModule("pickle");
806               PyObject *pickled=PyObject_CallMethod(mod,(char *)"dumps",(char *)"Oi",o,protocol);
807               DEBTRACE(PyObject_Repr(pickled) );
808               Py_DECREF(mod);
809               if(pickled==NULL)
810                 {
811                   PyErr_Print();
812                   throw YACS::ENGINE::ConversionException("Problem in convertToYacsObjref<PYTHONImpl");
813                 }
814               std::string mystr(PyBytes_AsString(pickled),PyBytes_Size(pickled));
815               Py_DECREF(pickled);
816               return mystr;
817             }
818           else if(strncmp(t->id(),"json",4)==0)
819             {
820               // It's a Python  object convert it to json 
821               PyObject* mod=PyImport_ImportModule("simplejson");
822               if(mod==NULL)
823                 {
824                   PyErr_Print();
825                   throw YACS::ENGINE::ConversionException("Problem in convertToYacsObjref<PYTHONImpl: no simplejson module");
826                 }
827               PyObject *pickled=PyObject_CallMethod(mod,(char *)"dumps",(char *)"O",o);
828               Py_DECREF(mod);
829               if(pickled==NULL)
830                 {
831                   PyErr_Print();
832                   throw YACS::ENGINE::ConversionException("Problem in convertToYacsObjref<PYTHONImpl");
833                 }
834               std::string mystr=PyBytes_AsString(pickled);
835               Py_DECREF(pickled);
836               return mystr;
837             }
838           else
839             {
840               // It should be a CORBA Object convert it to an IOR string
841               PyObject *pystring=PyObject_CallMethod(getSALOMERuntime()->getPyOrb(),(char *)"object_to_string",(char *)"O",o);
842               if(pystring==NULL)
843                 {
844                   PyErr_Print();
845                   throw YACS::ENGINE::ConversionException("Problem in convertToYacsObjref<PYTHONImpl");
846                 }
847               Py_ssize_t size;
848               std::string mystr;
849               char *ptr = PyUnicode_AsUTF8AndSize(pystring, &size);
850               if (!ptr)
851                 throw YACS::ENGINE::ConversionException("Conversion from PyUnicode to string failed");
852               mystr.assign(ptr, size);
853               Py_DECREF(pystring);
854               return mystr;
855             }
856         }
857     };
858     template <ImplType IMPLOUT, class TOUT>
859     struct convertToYacsSequence<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>
860     {
861       static inline void convert(const TypeCode *t,PyObject* o,void*,std::vector<TOUT>& v)
862         {
863           if(!PySequence_Check(o))
864             {
865               stringstream msg;
866               msg << "Problem in conversion: the python object is not a sequence " << std::endl;
867 #ifdef _DEVDEBUG_
868               msg << " ( " << __FILE__ << ":" << __LINE__ << ")";
869 #endif
870               throw YACS::ENGINE::ConversionException(msg.str());
871             }
872           int length=PySequence_Size(o);
873           DEBTRACE("length: " << length );
874           v.resize(length);
875           for(int i=0;i<length;i++)
876             {
877               PyObject *item=PySequence_ITEM(o,i);
878 #ifdef _DEVDEBUG_
879               std::cerr <<"item[" << i << "]=";
880               PyObject_Print(item,stderr,Py_PRINT_RAW);
881               std::cerr << std::endl;
882 #endif
883               DEBTRACE( "item refcnt: " << item->ob_refcnt );
884               try
885                 {
886                   TOUT ro=YacsConvertor<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>(t->contentType(),item,0);
887                   v[i]=ro;
888                   Py_DECREF(item);
889                 }
890               catch(ConversionException& ex)
891                 {
892                   stringstream msg;
893                   msg << ex.what() << " for sequence element " << i;
894                   throw YACS::ENGINE::ConversionException(msg.str(),false);
895                 }
896             }
897         }
898     };
899     template <ImplType IMPLOUT, class TOUT>
900     struct convertToYacsStruct<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>
901     {
902       static inline void convert(const TypeCode *t,PyObject* o,void*,std::map<std::string,TOUT>& m)
903         {
904           DEBTRACE( "o refcnt: " << o->ob_refcnt );
905           PyObject *key, *value;
906           YACS::ENGINE::TypeCodeStruct* tst=(YACS::ENGINE::TypeCodeStruct*)t;
907           int nMember=tst->memberCount();
908           DEBTRACE("nMember="<<nMember);
909           for(int i=0;i<nMember;i++)
910             {
911               std::string name=tst->memberName(i);
912               DEBTRACE("Member name="<<name);
913               TypeCode* tm=tst->memberType(i);
914               value=PyDict_GetItemString(o, name.c_str());
915               if(value==NULL)
916                 {
917                   //member name not present
918                   //TODO delete all allocated objects in m
919 #ifdef _DEVDEBUG_
920                   PyObject_Print(o,stderr,Py_PRINT_RAW);
921                   std::cerr << std::endl;
922 #endif
923                   stringstream msg;
924                   msg << "member " << name << " not present " ;
925                   throw YACS::ENGINE::ConversionException(msg.str());
926                 }
927               DEBTRACE( "value refcnt: " << value->ob_refcnt );
928               try
929                 {
930                   TOUT ro=YacsConvertor<PYTHONImpl,PyObject*,void*,IMPLOUT,TOUT>(tm,value,0);
931                   m[name]=ro;
932                 }
933               catch(ConversionException& ex)
934                 {
935                   std::string s=" for struct member "+name;
936                   throw YACS::ENGINE::ConversionException(ex.what()+s,false);
937                 }
938             }
939         }
940     };
941     /* End of ToYacs Convertor for PYTHONImpl */
942
943     //! FromYacs Convertor for PYTHONImpl
944     /*!
945      * Convert YACS<PyObject*> intermediate types to PyObject* types (PYTHONImpl)
946      */
947     template <>
948     struct convertFromYacsDouble<PYTHONImpl,PyObject*>
949     {
950       static inline PyObject* convert(const TypeCode *t,double o)
951         {
952           PyObject *pyob=PyFloat_FromDouble(o);
953           return pyob;
954         }
955     };
956     template <>
957     struct convertFromYacsInt<PYTHONImpl,PyObject*>
958     {
959       static inline PyObject* convert(const TypeCode *t,long o)
960         {
961           PyObject *pyob=PyLong_FromLong(o);
962           return pyob;
963         }
964     };
965     template <>
966     struct convertFromYacsString<PYTHONImpl,PyObject*>
967     {
968       static inline PyObject* convert(const TypeCode *t,std::string& o)
969         {
970           return PyUnicode_FromString(o.c_str());
971         }
972     };
973     template <>
974     struct convertFromYacsBool<PYTHONImpl,PyObject*>
975     {
976       static inline PyObject* convert(const TypeCode *t,bool o)
977         {
978           return PyBool_FromLong ((long)o);
979         }
980     };
981     template <>
982     struct convertFromYacsObjref<PYTHONImpl,PyObject*>
983     {
984       static inline PyObject* convert(const TypeCode *t,std::string& o)
985         {
986           if(o=="")
987             {
988               Py_INCREF(Py_None);
989               return Py_None;
990             }
991           if(t->isA(Runtime::_tc_file))
992             {
993               //It's an objref file. Convert it specially
994               return PyUnicode_FromString(o.c_str());
995             }
996           if(strncmp(t->id(),"python",6)==0) //ex: "python:obj:1.0"
997             {
998               //It's a python pickled object, unpickled it
999               PyObject* mod=PyImport_ImportModule("pickle");
1000               PyObject *ob=PyObject_CallMethod(mod,(char *)"loads",(char *)"y#",o.c_str(),o.length());
1001               DEBTRACE(PyObject_Repr(ob));
1002               Py_DECREF(mod);
1003               if(ob==NULL)
1004                 {
1005                   PyErr_Print();
1006                   throw YACS::ENGINE::ConversionException("Problem in convertFromYacsObjref<PYTHONImpl");
1007                 }
1008               return ob;
1009             }
1010           if(strncmp(t->id(),"json",4)==0)
1011             {
1012               // It's a json object unpack it
1013               PyObject* mod=PyImport_ImportModule("simplejson");
1014               if(mod==NULL)
1015                 {
1016                   PyErr_Print();
1017                   throw YACS::ENGINE::ConversionException("Problem in convertToYacsObjref<PYTHONImpl: no simplejson module");
1018                 }
1019               PyObject *ob=PyObject_CallMethod(mod,(char *)"loads",(char *)"y",o.c_str());
1020               Py_DECREF(mod);
1021               if(ob==NULL)
1022                 {
1023                   PyErr_Print();
1024                   throw YACS::ENGINE::ConversionException("Problem in convertFromYacsObjref<PYTHONImpl");
1025                 }
1026               return ob;
1027             }
1028
1029           /* another way to convert IOR string to CORBA PyObject 
1030           PyObject* ob= PyObject_CallMethod(getSALOMERuntime()->getPyOrb(),"string_to_object","s",o.c_str());
1031           DEBTRACE( "Objref python refcnt: " << ob->ob_refcnt );
1032           return ob;
1033           */
1034
1035           //Objref CORBA. prefix=IOR,corbaname,corbaloc
1036           CORBA::Object_var obref;
1037           try
1038             {
1039               obref = getSALOMERuntime()->getOrb()->string_to_object(o.c_str());
1040 #ifdef REFCNT
1041               DEBTRACE("obref refCount: " << obref->_PR_getobj()->pd_refCount);
1042 #endif
1043             }
1044           catch(CORBA::Exception& ex) 
1045             {
1046               DEBTRACE( "Can't get reference to object." );
1047               throw ConversionException("Can't get reference to object");
1048             }
1049
1050           if(obref->_non_existent())
1051             {
1052               throw ConversionException("non_existent object");
1053             }
1054
1055           if( CORBA::is_nil(obref) )
1056             {
1057               DEBTRACE( "Can't get reference to object (or it was nil)." );
1058               throw ConversionException("Can't get reference to object");
1059             }
1060
1061           if(!obref->_is_a(t->id()))
1062             {
1063               stringstream msg;
1064               msg << "Problem in conversion: an objref " << t->id() << " is expected " << endl;
1065               msg << "An objref of type " << obref->_PD_repoId << " is given " << endl;
1066               msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1067               throw YACS::ENGINE::ConversionException(msg.str());
1068             }
1069 #ifdef REFCNT
1070           DEBTRACE("obref refCount: " << obref->_PR_getobj()->pd_refCount);
1071 #endif
1072 #ifdef _DEVDEBUG_
1073           std::cerr << "_PD_repoId: " << obref->_PD_repoId << std::endl;
1074           std::cerr << "_mostDerivedRepoId: " << obref->_PR_getobj()->_mostDerivedRepoId()  << std::endl;
1075 #endif
1076
1077           //hold_lock is true: caller is supposed to hold the GIL.
1078           //omniorb will not take the GIL
1079           PyObject* ob= getSALOMERuntime()->getApi()->cxxObjRefToPyObjRef(obref, 1);
1080
1081 #ifdef _DEVDEBUG_
1082           PyObject_Print(ob,stderr,Py_PRINT_RAW);
1083           std::cerr << std::endl;
1084           std::cerr << "obref is a generic: " << obref->_is_a("IDL:SALOME/GenericObj:1.0") << std::endl;
1085           PyObject_Print(getSALOMERuntime()->get_omnipy(),stderr,Py_PRINT_RAW);
1086           std::cerr << std::endl;
1087 #endif
1088
1089           //ob is a CORBA::Object. Try to convert it to more specific type SALOME/GenericObj
1090           if(obref->_is_a("IDL:SALOME/GenericObj:1.0"))
1091             {
1092               PyObject *result = PyObject_CallMethod(getSALOMERuntime()->get_omnipy(), (char *)"narrow", (char *)"Osi",ob,"IDL:SALOME/GenericObj:1.0",1);
1093               if(result==NULL)
1094                 PyErr_Clear();//Exception during narrow. Keep ob
1095               else if(result==Py_None)
1096                 Py_DECREF(result); //Can't narrow. Keep ob
1097               else
1098                 {
1099                   //Can narrow. Keep result
1100 #ifdef _DEVDEBUG_
1101                   PyObject_Print(result,stderr,Py_PRINT_RAW);
1102                   std::cerr << std::endl;
1103 #endif
1104                   Py_DECREF(ob);
1105                   ob=result;
1106                 }
1107             }
1108
1109 #ifdef REFCNT
1110           DEBTRACE("obref refCount: " << obref->_PR_getobj()->pd_refCount);
1111 #endif
1112           return ob;
1113         }
1114     };
1115
1116     template <>
1117     struct convertFromYacsSequence<PYTHONImpl,PyObject*>
1118     {
1119       static inline PyObject* convert(const TypeCode *t,std::vector<PyObject*>& v)
1120         {
1121           std::vector<PyObject*>::const_iterator iter;
1122           PyObject *pyob = PyList_New(v.size());
1123           int i=0;
1124           for(iter=v.begin();iter!=v.end();iter++)
1125             {
1126               PyObject* item=*iter;
1127               DEBTRACE( "item refcnt: " << item->ob_refcnt );
1128               PyList_SetItem(pyob,i,item);
1129               DEBTRACE( "item refcnt: " << item->ob_refcnt );
1130               i++;
1131             }
1132           return pyob;
1133         }
1134     };
1135     template <>
1136     struct convertFromYacsStruct<PYTHONImpl,PyObject*>
1137     {
1138       static inline PyObject* convert(const TypeCode *t,std::map<std::string,PyObject*>& m)
1139         {
1140           PyObject *pyob = PyDict_New();
1141           std::map<std::string, PyObject*>::const_iterator pt;
1142           for(pt=m.begin();pt!=m.end();pt++)
1143             {
1144               std::string name=(*pt).first;
1145               PyObject* item=(*pt).second;
1146               DEBTRACE( "item refcnt: " << item->ob_refcnt );
1147               PyDict_SetItemString(pyob,name.c_str(),item);
1148               Py_DECREF(item);
1149               DEBTRACE( "item refcnt: " << item->ob_refcnt );
1150             }
1151           DEBTRACE( "pyob refcnt: " << pyob->ob_refcnt );
1152           return pyob;
1153         }
1154     };
1155     /* End of FromYacs Convertor for PYTHONImpl */
1156
1157     //! ToYacs Convertor for XMLImpl
1158     /*!
1159      * Partial specialization for XML implementation (XMLImpl)
1160      * This convertor converts xml object to YACS<TOUT> types
1161      */
1162     template <ImplType IMPLOUT, class TOUT>
1163     struct convertToYacsDouble<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>
1164     {
1165       static inline double convert(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur)
1166         {
1167           double d=0;
1168           cur = cur->xmlChildrenNode;
1169           while (cur != NULL)
1170             {
1171               if ((!xmlStrcmp(cur->name, (const xmlChar *)"double")))
1172                 {
1173                   //wait a double, got a double
1174                   xmlChar * s = NULL;
1175                   s = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
1176                   if (s)
1177                     {
1178                       DEBTRACE( "convertToYacsDouble " << (const char *)s );
1179                       d=Cstr2d((const char *)s);
1180                       xmlFree(s);
1181                     }
1182                   else
1183                     {
1184                       DEBTRACE("############### workaround to improve...");
1185                     }
1186                   return d;
1187                 }
1188               else if ((!xmlStrcmp(cur->name, (const xmlChar *)"int")))
1189                 {
1190                   //wait a double, got an int
1191                   xmlChar * s = NULL;
1192                   s = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
1193                   if (s)
1194                     {
1195                       DEBTRACE( "convertToYacsDouble " << (const char *)s );
1196                       d=Cstr2d((const char *)s);
1197                       xmlFree(s);
1198                     }
1199                   else
1200                     {
1201                       DEBTRACE("############### workaround to improve...");
1202                     }
1203                   return d;
1204                 }
1205               cur = cur->next;
1206             }
1207           stringstream msg;
1208           msg << "Problem in conversion from Xml to " << getImplName(IMPLOUT) << " with type:  " << t->id() ;
1209           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1210           throw YACS::ENGINE::ConversionException(msg.str());
1211         }
1212     };
1213     template <ImplType IMPLOUT, class TOUT>
1214     struct convertToYacsInt<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>
1215     {
1216       static inline long convert(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur)
1217         {
1218           long d=0;
1219           cur = cur->xmlChildrenNode;
1220           while (cur != NULL)
1221             {
1222               if ((!xmlStrcmp(cur->name, (const xmlChar *)"int")))
1223                 {
1224                   xmlChar * s = NULL;
1225                   s = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
1226                   if (s)
1227                     {
1228                       DEBTRACE( "convertToYacsInt " << (const char *)s );
1229                       d=atol((const char *)s);
1230                       xmlFree(s);
1231                     }
1232                   else
1233                     {
1234                       DEBTRACE("############### workaround to improve...");
1235                     }
1236                   return d;
1237                 }
1238               cur = cur->next;
1239             }
1240           stringstream msg;
1241           msg << "Problem in conversion from Xml to " << getImplName(IMPLOUT) << " with type:  " << t->id() ;
1242           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1243           throw YACS::ENGINE::ConversionException(msg.str());
1244         }
1245     };
1246     template <ImplType IMPLOUT, class TOUT>
1247     struct convertToYacsString<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>
1248     {
1249       static inline std::string convert(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur)
1250         {
1251           cur = cur->xmlChildrenNode;
1252           while (cur != NULL)
1253             {
1254               if ((!xmlStrcmp(cur->name, (const xmlChar *)"string")))
1255                 {
1256                   //wait a string, got a string
1257                   xmlChar * s = NULL;
1258                   s = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
1259                   if(s==0)return "";
1260                   DEBTRACE( "convertToYacsString " << (const char *)s );
1261                   std::string mystr=std::string((const char *)s);
1262                   xmlFree(s);
1263                   return mystr;
1264                 }
1265               cur = cur->next;
1266             }
1267           stringstream msg;
1268           msg << "Problem in conversion from Xml to " << getImplName(IMPLOUT) << " with type:  " << t->id() ;
1269           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1270           throw YACS::ENGINE::ConversionException(msg.str());
1271         }
1272     };
1273     template <ImplType IMPLOUT, class TOUT>
1274     struct convertToYacsBool<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>
1275     {
1276       static inline bool convert(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur)
1277         {
1278           cur = cur->xmlChildrenNode;
1279           while (cur != NULL)
1280             {
1281               if ((!xmlStrcmp(cur->name, (const xmlChar *)"boolean")))
1282                 {
1283                   //wait a boolean, got a boolean
1284                   xmlChar * s = NULL;
1285                   s = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
1286                   bool ob =false;
1287                   if (s)
1288                     {
1289                       DEBTRACE( "convertToYacsBool " << (const char *)s );
1290                       ob=atoi((const char*)s)!=0;
1291                       xmlFree(s);
1292                     }
1293                   else
1294                     {
1295                       DEBTRACE("############### workaround to improve...");
1296                     }
1297                   return ob;
1298                 }
1299               cur = cur->next;
1300             }
1301           stringstream msg;
1302           msg << "Problem in conversion from Xml to " << getImplName(IMPLOUT) << " with type:  " << t->id() ;
1303           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1304           throw YACS::ENGINE::ConversionException(msg.str());
1305         }
1306     };
1307     template <ImplType IMPLOUT, class TOUT>
1308     struct convertToYacsObjref<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>
1309     {
1310       static inline std::string convert(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur,int protocol)
1311         {
1312           cur = cur->xmlChildrenNode;
1313           while (cur != NULL)
1314             {
1315               if ((!xmlStrcmp(cur->name, (const xmlChar *)"objref")))
1316                 {
1317                   //we wait a objref, we have got a objref
1318                   xmlChar * s = NULL;
1319                   std::string mystr = "";
1320                   s = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
1321                   if (s)
1322                     {
1323                       DEBTRACE( "convertToYacsObjref " << (const char *)s );
1324                       mystr = (const char *)s;
1325                       xmlFree(s);
1326                     }
1327                   else
1328                     {
1329                       DEBTRACE("############### workaround to improve...");
1330                     }
1331                   return mystr;
1332                 }
1333               else if ((!xmlStrcmp(cur->name, (const xmlChar *)"string")))// <- here case where pyobj value has been stored in XML. pyobj has kind==ObjRef. And the stored format is String ! EDF11027
1334                 {
1335                   //wait a string, got a string
1336                   xmlChar * s = NULL;
1337                   s = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
1338                   if(s==0)return "";
1339                   DEBTRACE( "convertToYacsString " << (const char *)s );
1340                   std::string mystr=std::string((const char *)s);
1341                   xmlFree(s);
1342                   return mystr;
1343                 }
1344               cur = cur->next;
1345             }
1346           stringstream msg;
1347           msg << "Problem in conversion from Xml to " << getImplName(IMPLOUT) << " with type:  " << t->id() ;
1348           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1349           throw YACS::ENGINE::ConversionException(msg.str());
1350         }
1351     };
1352     template <ImplType IMPLOUT, class TOUT>
1353     struct convertToYacsSequence<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>
1354     {
1355       static inline void convert(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur,std::vector<TOUT>& v)
1356         {
1357           cur = cur->xmlChildrenNode;
1358           while (cur != NULL)
1359             {
1360               if ((!xmlStrcmp(cur->name, (const xmlChar *)"array")))
1361                 {
1362                   DEBTRACE( "parse sequence " );
1363                   xmlNodePtr cur1=cur->xmlChildrenNode;
1364                   while (cur1 != NULL)
1365                     {
1366                       if ((!xmlStrcmp(cur1->name, (const xmlChar *)"data")))
1367                         {
1368                           DEBTRACE( "parse data " );
1369                           xmlNodePtr cur2=cur1->xmlChildrenNode;
1370                           while (cur2 != NULL)
1371                             {
1372                               //collect all values
1373                               if ((!xmlStrcmp(cur2->name, (const xmlChar *)"value")))
1374                                 {
1375                                   TOUT ro=YacsConvertor<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>(t->contentType(),doc,cur2);
1376                                   v.push_back(ro);
1377                                 }
1378                               cur2 = cur2->next;
1379                             } // end while value
1380                           break;
1381                         }
1382                       cur1 = cur1->next;
1383                     } // end while data
1384                   break;
1385                 }
1386               cur = cur->next;
1387             } // end while array
1388         }
1389     };
1390     template <ImplType IMPLOUT, class TOUT>
1391     struct convertToYacsStruct<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>
1392     {
1393       static inline void convert(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur,std::map<std::string,TOUT>& m)
1394         {
1395           YACS::ENGINE::TypeCodeStruct* tst=(YACS::ENGINE::TypeCodeStruct*)t;
1396           int nMember=tst->memberCount();
1397           DEBTRACE("nMember="<<nMember);
1398           std::map<std::string,TypeCode*> mtc;
1399           for(int i=0;i<nMember;i++)
1400             {
1401               mtc[tst->memberName(i)]=tst->memberType(i);
1402             }
1403
1404           cur = cur->xmlChildrenNode;
1405           while (cur != NULL)
1406             {
1407               if ((!xmlStrcmp(cur->name, (const xmlChar *)"struct")))
1408                 {
1409                   DEBTRACE( "parse struct " );
1410                   xmlNodePtr cur1=cur->xmlChildrenNode;
1411                   while (cur1 != NULL)
1412                     {
1413                       if ((!xmlStrcmp(cur1->name, (const xmlChar *)"member")))
1414                         {
1415                           DEBTRACE( "parse member " );
1416                           xmlNodePtr cur2=cur1->xmlChildrenNode;
1417                           while (cur2 != NULL)
1418                             {
1419                               //member name
1420                               if ((!xmlStrcmp(cur2->name, (const xmlChar *)"name")))
1421                                 {
1422                                   xmlChar * s = NULL;
1423                                   s = xmlNodeListGetString(doc, cur2->xmlChildrenNode, 1);
1424                                   std::string name= (char *)s;
1425                                   cur2 = cur2->next;
1426                                   while (cur2 != NULL)
1427                                     {
1428                                       if ((!xmlStrcmp(cur2->name, (const xmlChar *)"value")))
1429                                         {
1430                                           TOUT ro=YacsConvertor<XMLImpl,xmlDocPtr,xmlNodePtr,IMPLOUT,TOUT>(mtc[name],doc,cur2);
1431                                           m[name]=ro;
1432                                           break;
1433                                         }
1434                                       cur2 = cur2->next;
1435                                     }
1436                                   xmlFree(s);
1437                                   break;
1438                                 }
1439                               cur2 = cur2->next;
1440                             } // end while member/value
1441                         }
1442                       cur1 = cur1->next;
1443                     } // end while member
1444                   break;
1445                 }
1446               cur = cur->next;
1447             } // end while struct
1448         }
1449     };
1450     /* End of ToYacs Convertor for XMLImpl */
1451
1452     //! FromYacs Convertor for XMLImpl
1453     /*!
1454      * Convert YACS<std::string> intermediate types to std::string types (XMLImpl)
1455      */
1456     template <>
1457     struct convertFromYacsDouble<XMLImpl,std::string>
1458     {
1459       static inline std::string convert(const TypeCode *t,double o)
1460         {
1461           stringstream msg ;
1462           msg << "<value><double>" << setprecision(16) << o << "</double></value>\n";
1463           return msg.str();
1464         }
1465     };
1466     template <>
1467     struct convertFromYacsInt<XMLImpl,std::string>
1468     {
1469       static inline std::string convert(const TypeCode *t,long o)
1470         {
1471           stringstream msg ;
1472           msg << "<value><int>" << o << "</int></value>\n";
1473           return msg.str();
1474         }
1475     };
1476     template <>
1477     struct convertFromYacsString<XMLImpl,std::string>
1478     {
1479       static inline std::string convert(const TypeCode *t,std::string& o)
1480         {
1481           std::string msg="<value><string>";
1482           return msg+o+"</string></value>\n";
1483         }
1484     };
1485     template <>
1486     struct convertFromYacsBool<XMLImpl,std::string>
1487     {
1488       static inline std::string convert(const TypeCode *t,bool o)
1489         {
1490           stringstream msg ;
1491           msg << "<value><boolean>" << o << "</boolean></value>\n";
1492           return msg.str();
1493         }
1494     };
1495     template <>
1496     struct convertFromYacsObjref<XMLImpl,std::string>
1497     {
1498       static inline std::string convert(const TypeCode *t,std::string& o)
1499         {
1500           if(strncmp(t->id(),"python",6)==0 )
1501             return "<value><objref><![CDATA[" + o + "]]></objref></value>\n";
1502           else if(strncmp(t->id(),"json",4)==0)
1503             return "<value><objref><![CDATA[" + o + "]]></objref></value>\n";
1504           else
1505             return "<value><objref>" + o + "</objref></value>\n";
1506         }
1507     };
1508
1509     template <>
1510     struct convertFromYacsSequence<XMLImpl,std::string>
1511     {
1512       static inline std::string convert(const TypeCode *t,std::vector<std::string>& v)
1513         {
1514           std::vector<std::string>::const_iterator iter;
1515           stringstream xmlob;
1516           xmlob << "<value><array><data>\n";
1517           for(iter=v.begin();iter!=v.end();iter++)
1518             {
1519               xmlob << *iter;
1520             }
1521           xmlob << "</data></array></value>\n";
1522           DEBTRACE("Sequence= " << xmlob);
1523           return xmlob.str();
1524         }
1525     };
1526     template <>
1527     struct convertFromYacsStruct<XMLImpl,std::string>
1528     {
1529       static inline std::string convert(const TypeCode *t,std::map<std::string,std::string>& m)
1530         {
1531           std::string result="<value><struct>\n";
1532           std::map<std::string, std::string>::const_iterator pt;
1533           for(pt=m.begin();pt!=m.end();pt++)
1534             {
1535               std::string name=(*pt).first;
1536               std::string item=(*pt).second;
1537               result=result+"<member>\n";
1538               result=result+"<name>"+name+"</name>\n";
1539               result=result+item;
1540               result=result+"</member>\n";
1541             }
1542           result=result+"</struct></value>\n";
1543           return result;
1544         }
1545     };
1546
1547     /* End of FromYacs Convertor for XMLImpl */
1548
1549     //! ToYacs Convertor for NEUTRALImpl
1550     /*!
1551      * This convertor converts Neutral objects to intermediate YACS<TOUT> types
1552      * Template : Partial specialization for Neutral implementation with types YACS::ENGINE::Any*
1553      */
1554     template <ImplType IMPLOUT, class TOUT>
1555     struct convertToYacsDouble<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>
1556     {
1557       static inline double convert(const TypeCode *t,YACS::ENGINE::Any* o,void*)
1558         {
1559           if(o->getType()->kind()==Double)
1560             return o->getDoubleValue();
1561           else if(o->getType()->kind()==Int)
1562             return o->getIntValue();
1563
1564           stringstream msg;
1565           msg << "Problem in conversion: a double or int is expected " ;
1566           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1567           throw YACS::ENGINE::ConversionException(msg.str());
1568         }
1569     };
1570     template <ImplType IMPLOUT, class TOUT>
1571     struct convertToYacsInt<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>
1572     {
1573       static inline long convert(const TypeCode *t,YACS::ENGINE::Any* o,void*)
1574         {
1575           if(o->getType()->kind()==Int)
1576             return o->getIntValue();
1577           stringstream msg;
1578           msg << "Problem in conversion: a int is expected " ;
1579           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1580           throw YACS::ENGINE::ConversionException(msg.str());
1581         }
1582     };
1583     template <ImplType IMPLOUT, class TOUT>
1584     struct convertToYacsString<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>
1585     {
1586       static inline std::string convert(const TypeCode *t,YACS::ENGINE::Any* o,void*)
1587         {
1588           if(o->getType()->kind()==String)
1589             return o->getStringValue();
1590           stringstream msg;
1591           msg << "Problem in conversion: a string is expected " ;
1592           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1593           throw YACS::ENGINE::ConversionException(msg.str());
1594         }
1595     };
1596     template <ImplType IMPLOUT, class TOUT>
1597     struct convertToYacsBool<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>
1598     {
1599       static inline bool convert(const TypeCode *t,YACS::ENGINE::Any* o,void*)
1600         {
1601           if(o->getType()->kind()==Bool)
1602             return o->getBoolValue();
1603           else if(o->getType()->kind()==Int)
1604             return o->getIntValue() != 0;
1605           stringstream msg;
1606           msg << "Problem in conversion: a bool or int is expected " ;
1607           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1608           throw YACS::ENGINE::ConversionException(msg.str());
1609         }
1610     };
1611     template <ImplType IMPLOUT, class TOUT>
1612     struct convertToYacsObjref<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>
1613     {
1614       static inline std::string convert(const TypeCode *t,YACS::ENGINE::Any* o,void*,int protocol)
1615         {
1616           if(o->getType()->kind()==String)
1617             return o->getStringValue();
1618           stringstream msg;
1619           msg << "Problem in conversion: a objref(string) is expected " ;
1620           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1621           throw YACS::ENGINE::ConversionException(msg.str());
1622         }
1623     };
1624     template <ImplType IMPLOUT, class TOUT>
1625     struct convertToYacsSequence<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>
1626     {
1627       static inline void convert(const TypeCode *t,YACS::ENGINE::Any* o,void*,std::vector<TOUT>& v)
1628         {
1629           SequenceAny* sdata= (SequenceAny*)o;
1630           int length=sdata->size();
1631           v.resize(length);
1632           for(int i=0;i<length;i++)
1633             {
1634               TOUT ro=YacsConvertor<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>(t->contentType(),(*sdata)[i],0);
1635               v[i]=ro;
1636             }
1637         }
1638     };
1639     template <ImplType IMPLOUT, class TOUT>
1640     struct convertToYacsStruct<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>
1641     {
1642       static inline void convert(const TypeCode *t,YACS::ENGINE::Any* o,void*,std::map<std::string,TOUT>& m)
1643         {
1644           StructAny * sdata = dynamic_cast<StructAny *>(o);
1645           YASSERT(sdata != NULL);
1646           const TypeCodeStruct * tst = dynamic_cast<const TypeCodeStruct *>(t);
1647           YASSERT(tst != NULL);
1648           for (int i=0 ; i<tst->memberCount() ; i++)
1649             {
1650               string name = tst->memberName(i);
1651               TOUT ro=YacsConvertor<NEUTRALImpl,YACS::ENGINE::Any*,void*,IMPLOUT,TOUT>(tst->memberType(i),(*sdata)[name.c_str()],0);
1652               m[name]=ro;
1653             }
1654         }
1655     };
1656     /* End of ToYacs Convertor for NEUTRALImpl */
1657
1658     //! FromYacs Convertor for NEUTRALImpl
1659     /*!
1660      * Convert YACS<YACS::ENGINE::Any*> intermediate types to YACS::ENGINE::Any* types (NEUTRALImpl)
1661      */
1662     template <>
1663     struct convertFromYacsDouble<NEUTRALImpl,YACS::ENGINE::Any*>
1664     {
1665       static inline YACS::ENGINE::Any* convert(const TypeCode *t,double o)
1666         {
1667           YACS::ENGINE::Any *ob=YACS::ENGINE::AtomAny::New(o);
1668           return ob;
1669         }
1670     };
1671     template <>
1672     struct convertFromYacsInt<NEUTRALImpl,YACS::ENGINE::Any*>
1673     {
1674       static inline YACS::ENGINE::Any* convert(const TypeCode *t,long o)
1675         {
1676           return YACS::ENGINE::AtomAny::New((int)o);
1677         }
1678     };
1679     template <>
1680     struct convertFromYacsString<NEUTRALImpl,YACS::ENGINE::Any*>
1681     {
1682       static inline YACS::ENGINE::Any* convert(const TypeCode *t,std::string& o)
1683         {
1684           return YACS::ENGINE::AtomAny::New(o);
1685         }
1686     };
1687     template <>
1688     struct convertFromYacsBool<NEUTRALImpl,YACS::ENGINE::Any*>
1689     {
1690       static inline YACS::ENGINE::Any* convert(const TypeCode *t,bool o)
1691         {
1692           return YACS::ENGINE::AtomAny::New(o);
1693         }
1694     };
1695     template <>
1696     struct convertFromYacsObjref<NEUTRALImpl,YACS::ENGINE::Any*>
1697     {
1698       static inline YACS::ENGINE::Any* convert(const TypeCode *t,std::string& o)
1699         {
1700           //Check if objref is a GenericObj and register it if it is the case (workaround for bad management of GenericObj)
1701           if(o=="" || (t->isA(Runtime::_tc_file)) || (strncmp(t->id(),"python",6)==0) || (strncmp(t->id(),"json",4)==0))
1702             return YACS::ENGINE::AtomAny::New(o);
1703
1704           //Objref CORBA. prefix=IOR,corbaname,corbaloc
1705           CORBA::Object_var obref;
1706           try
1707             {
1708               obref = getSALOMERuntime()->getOrb()->string_to_object(o.c_str());
1709             }
1710           catch(CORBA::Exception& ex)
1711             {
1712               throw ConversionException("Can't get reference to object");
1713             }
1714           if(obref->_non_existent())
1715             throw ConversionException("non_existent object");
1716           if( CORBA::is_nil(obref) )
1717             throw ConversionException("Can't get reference to object");
1718           if(!obref->_is_a(t->id()))
1719             {
1720               stringstream msg;
1721               msg << "Problem in conversion: an objref " << t->id() << " is expected " << endl;
1722               msg << "An objref of type " << obref->_PD_repoId << " is given " << endl;
1723               msg << " (" << __FILE__ << ":" << __LINE__ << ")";
1724               throw YACS::ENGINE::ConversionException(msg.str());
1725             }
1726
1727           SALOME::GenericObj_var gobj=SALOME::GenericObj::_narrow(obref);
1728           if(!CORBA::is_nil(gobj))
1729             {
1730               DEBTRACE("It's a SALOME::GenericObj register it");
1731               gobj->Register();
1732             }
1733           else
1734               DEBTRACE("It's a CORBA::Object but not a SALOME::GenericObj");
1735
1736           return YACS::ENGINE::AtomAny::New(o);
1737         }
1738     };
1739
1740     template <>
1741     struct convertFromYacsSequence<NEUTRALImpl,YACS::ENGINE::Any*>
1742     {
1743       static inline YACS::ENGINE::Any* convert(const TypeCode *t,std::vector<YACS::ENGINE::Any*>& v)
1744         {
1745           std::vector<YACS::ENGINE::Any*>::const_iterator iter;
1746           //Objref are managed as string within YACS::ENGINE::Any objs
1747           SequenceAny* any;
1748           any=SequenceAny::New(t->contentType());
1749           for(iter=v.begin();iter!=v.end();iter++)
1750             {
1751               any->pushBack(*iter);
1752               (*iter)->decrRef();
1753             }
1754           DEBTRACE( "refcnt: " << any->getRefCnt() );
1755           return any;
1756         }
1757     };
1758
1759     template <>
1760     struct convertFromYacsStruct<NEUTRALImpl,YACS::ENGINE::Any*>
1761     {
1762       static inline YACS::ENGINE::Any* convert(const TypeCode *t,std::map<std::string,YACS::ENGINE::Any*>& m)
1763         {
1764           StructAny * any = StructAny::New((TypeCodeStruct *)t);
1765           std::map<std::string,YACS::ENGINE::Any*>::const_iterator it;
1766           for (it=m.begin() ; it!=m.end() ; it++)
1767             {
1768               any->setEltAtRank(it->first.c_str(), it->second);
1769               it->second->decrRef();
1770             }
1771           return any;
1772         }
1773     };
1774     /* End of FromYacs Convertor for NEUTRALImpl */
1775
1776     //! ToYacs Convertor for CORBAImpl
1777     /*!
1778      * This convertor converts Corba objects to intermediate YACS<TOUT> types
1779      * Template : Partial specialization for CORBA implementation with types CORBA::Any*
1780      */
1781     template <ImplType IMPLOUT, class TOUT>
1782     struct convertToYacsDouble<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>
1783     {
1784       static inline double convert(const TypeCode *t,CORBA::Any* o,void*)
1785         {
1786           CORBA::TypeCode_var tc = o->type();
1787           if (tc->equivalent(CORBA::_tc_double))
1788             {
1789               CORBA::Double d;
1790               *o >>= d;
1791               return d;
1792             }
1793           if (tc->equivalent(CORBA::_tc_long))
1794             {
1795               CORBA::Long d;
1796               *o >>= d;
1797               return d;
1798             }
1799           stringstream msg;
1800           msg << "Problem in CORBA to TOUT conversion: kind= " << t->kind() ;
1801           msg << " : " << __FILE__ << ":" << __LINE__;
1802           throw YACS::ENGINE::ConversionException(msg.str());
1803         }
1804     };
1805     template <ImplType IMPLOUT, class TOUT>
1806     struct convertToYacsInt<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>
1807     {
1808       static inline long convert(const TypeCode *t,CORBA::Any* o,void*)
1809         {
1810           CORBA::Long d;
1811           if(*o >>= d)
1812             return d;
1813           stringstream msg;
1814           msg << "Problem in CORBA to TOUT conversion: kind= " << t->kind() ;
1815           msg << " : " << __FILE__ << ":" << __LINE__;
1816           throw YACS::ENGINE::ConversionException(msg.str());
1817         }
1818     };
1819     template <ImplType IMPLOUT, class TOUT>
1820     struct convertToYacsString<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>
1821     {
1822       static inline std::string convert(const TypeCode *t,CORBA::Any* o,void*)
1823         {
1824           const char *s;
1825           if(*o >>=s)
1826             return s;
1827           stringstream msg;
1828           msg << "Problem in CORBA to TOUT conversion: kind= " << t->kind() ;
1829           msg << " : " << __FILE__ << ":" << __LINE__;
1830           throw YACS::ENGINE::ConversionException(msg.str());
1831         }
1832     };
1833     template <ImplType IMPLOUT, class TOUT>
1834     struct convertToYacsBool<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>
1835     {
1836       static inline bool convert(const TypeCode *t,CORBA::Any* o,void*)
1837         {
1838           CORBA::Boolean b;
1839           if(*o >>= CORBA::Any::to_boolean(b))
1840             return b;
1841           stringstream msg;
1842           msg << "Problem in Corba to TOUT conversion: kind= " << t->kind() ;
1843           msg << " : " << __FILE__ << ":" << __LINE__;
1844           throw YACS::ENGINE::ConversionException(msg.str());
1845         }
1846     };
1847     template <ImplType IMPLOUT, class TOUT>
1848     struct convertToYacsObjref<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>
1849     {
1850       static inline std::string convert(const TypeCode *t,CORBA::Any* o,void*,int protocol)
1851         {
1852           char file[]="/tmp/XXXXXX";
1853           if(t->isA(Runtime::_tc_file))
1854             {
1855               Engines::Salome_file_ptr sf;
1856               *o >>= sf;
1857               Salome_file_i* f=new Salome_file_i();
1858               mkstemp(file);
1859               f->setDistributedFile(file);
1860               f->connect(sf);
1861               f->recvFiles();
1862               delete f;
1863               return file;
1864             }
1865           else if(strncmp(t->id(),"python",6)==0)
1866             {
1867               const char *s;
1868               Engines::fileBlock * buffer;
1869               if(*o >>=buffer)
1870                 {
1871                   s=(const char*)buffer->get_buffer();
1872
1873                   if(protocol !=4)
1874                     {
1875                       std::string mystr(s,buffer->length());
1876                       return mystr;
1877                     }
1878
1879                   PyGILState_STATE gstate = PyGILState_Ensure(); 
1880                   PyObject* mod=PyImport_ImportModule("pickle");
1881                   PyObject *ob=PyObject_CallMethod(mod,(char *)"loads",(char *)"y#",s,buffer->length());
1882                   PyObject *pickled=PyObject_CallMethod(mod,(char *)"dumps",(char *)"Oi",ob,protocol);
1883                   DEBTRACE(PyObject_Repr(pickled));
1884                   std::string mystr=PyBytes_AsString(pickled);
1885                   Py_DECREF(mod);
1886                   Py_DECREF(ob);
1887                   Py_DECREF(pickled);
1888                   PyGILState_Release(gstate);
1889
1890                   return mystr;
1891                 }
1892               stringstream msg;
1893               msg << "Problem in CORBA (protocol python) to TOUT conversion: kind= " << t->kind() ;
1894               msg << " : " << __FILE__ << ":" << __LINE__;
1895               throw YACS::ENGINE::ConversionException(msg.str());
1896             }
1897           else if(strncmp(t->id(),"json",4)==0)
1898             {
1899               const char *s;
1900               if(*o >>=s)
1901                 {
1902                   return s;
1903                 }
1904               stringstream msg;
1905               msg << "Problem in CORBA (protocol json) to TOUT conversion: kind= " << t->kind() ;
1906               msg << " : " << __FILE__ << ":" << __LINE__;
1907               throw YACS::ENGINE::ConversionException(msg.str());
1908             }
1909           else
1910             {
1911               CORBA::Object_var ObjRef ;
1912               *o >>= CORBA::Any::to_object(ObjRef) ;
1913               CORBA::String_var objref = getSALOMERuntime()->getOrb()->object_to_string(ObjRef);
1914               return (char *)objref;
1915             }
1916         }
1917     };
1918     template <ImplType IMPLOUT, class TOUT>
1919     struct convertToYacsSequence<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>
1920     {
1921       static inline void convert(const TypeCode *t,CORBA::Any* o,void*,std::vector<TOUT>& v)
1922         {
1923           CORBA::TypeCode_var tc=o->type();
1924           if (tc->kind() != CORBA::tk_sequence)
1925             {
1926               stringstream msg;
1927               msg << "Not a sequence corba type " << tc->kind();
1928               msg << " : " << __FILE__ << ":" << __LINE__;
1929               throw YACS::ENGINE::ConversionException(msg.str());
1930             }
1931           DynamicAny::DynAny_ptr dynany=getSALOMERuntime()->getDynFactory()->create_dyn_any(*o);
1932           DynamicAny::DynSequence_ptr ds=DynamicAny::DynSequence::_narrow(dynany);
1933           CORBA::release(dynany);
1934           DynamicAny::AnySeq_var as=ds->get_elements();
1935           int len=as->length();
1936           v.resize(len);
1937           for(int i=0;i<len;i++)
1938             {
1939 #ifdef REFCNT
1940               DEBTRACE("refcount CORBA as[i]: " << ((omni::TypeCode_base*)as[i].pd_tc.in())->pd_ref_count);
1941 #endif
1942               TOUT ro=YacsConvertor<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>(t->contentType(),&as[i],0);
1943               v[i]=ro;
1944             }
1945           ds->destroy();
1946           CORBA::release(ds);
1947           for(int i=0;i<len;i++)
1948             {
1949 #ifdef REFCNT
1950               DEBTRACE("refcount CORBA as[i]: " << ((omni::TypeCode_base*)as[i].pd_tc.in())->pd_ref_count);
1951 #endif
1952             }
1953         }
1954     };
1955     template <ImplType IMPLOUT, class TOUT>
1956     struct convertToYacsStruct<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>
1957     {
1958       static inline void convert(const TypeCode *t,CORBA::Any* o,void*,std::map<std::string,TOUT>& m)
1959         {
1960           CORBA::TypeCode_var tc=o->type();
1961           DEBTRACE(tc->kind());
1962           if (tc->kind() != CORBA::tk_struct)
1963             {
1964               stringstream msg;
1965               msg << "Not a struct corba type " << tc->kind();
1966               msg << " : " << __FILE__ << ":" << __LINE__;
1967               throw YACS::ENGINE::ConversionException(msg.str());
1968             }
1969           YACS::ENGINE::TypeCodeStruct* tst=(YACS::ENGINE::TypeCodeStruct*)t;
1970           DynamicAny::DynAny_ptr dynany=getSALOMERuntime()->getDynFactory()->create_dyn_any(*o);
1971           DynamicAny::DynStruct_ptr ds=DynamicAny::DynStruct::_narrow(dynany);
1972           CORBA::release(dynany);
1973           DynamicAny::NameValuePairSeq_var as=ds->get_members();
1974           int len=as->length();
1975           for(int i=0;i<len;i++)
1976             {
1977               std::string name=as[i].id.in();
1978               DEBTRACE(name);
1979               CORBA::Any value=as[i].value;
1980 #ifdef REFCNT
1981               DEBTRACE("refcount CORBA value: " << ((omni::TypeCode_base*)value.pd_tc.in())->pd_ref_count);
1982 #endif
1983               TOUT ro=YacsConvertor<CORBAImpl,CORBA::Any*,void*,IMPLOUT,TOUT>(tst->memberType(i),&value,0);
1984               m[name]=ro;
1985             }
1986           ds->destroy();
1987           CORBA::release(ds);
1988         }
1989     };
1990     /* End of ToYacs Convertor for CORBAImpl */
1991
1992     //! FromYacs Convertor for CORBAImpl
1993     /*!
1994      * Convert YACS<CORBA::Any*> intermediate types to CORBA::Any* types (CORBAImpl)
1995      */
1996     template <>
1997     struct convertFromYacsDouble<CORBAImpl,CORBA::Any*>
1998     {
1999       static inline CORBA::Any* convert(const TypeCode *t,double o)
2000         {
2001           CORBA::Any *any = new CORBA::Any();
2002           *any <<= (CORBA::Double)o;
2003           return any;
2004         }
2005     };
2006     template <>
2007     struct convertFromYacsInt<CORBAImpl,CORBA::Any*>
2008     {
2009       static inline CORBA::Any* convert(const TypeCode *t,long o)
2010         {
2011           CORBA::Any *any = new CORBA::Any();
2012           *any <<= (CORBA::Long)o;
2013           return any;
2014         }
2015     };
2016     template <>
2017     struct convertFromYacsString<CORBAImpl,CORBA::Any*>
2018     {
2019       static inline CORBA::Any* convert(const TypeCode *t,std::string& o)
2020         {
2021           CORBA::Any *any = new CORBA::Any();
2022           *any <<= o.c_str();
2023           return any;
2024         }
2025     };
2026     template <>
2027     struct convertFromYacsBool<CORBAImpl,CORBA::Any*>
2028     {
2029       static inline CORBA::Any* convert(const TypeCode *t,bool o)
2030         {
2031           CORBA::Any *any = new CORBA::Any();
2032           *any <<= CORBA::Any::from_boolean(o);
2033           return any;
2034         }
2035     };
2036     template <>
2037     struct convertFromYacsObjref<CORBAImpl,CORBA::Any*>
2038     {
2039       static inline CORBA::Any* convert(const TypeCode *t,std::string& o)
2040         {
2041           CORBA::Object_var obref;
2042
2043           if(t->isA(Runtime::_tc_file))
2044             {
2045               //It's an objref file. Convert it specially
2046               Salome_file_i* aSalome_file = new Salome_file_i();
2047               try
2048                 {
2049                   aSalome_file->setLocalFile(o.c_str());
2050                   obref = aSalome_file->_this();
2051                   aSalome_file->_remove_ref();
2052                 }
2053               catch (const SALOME::SALOME_Exception& e)
2054                 {
2055                   stringstream msg;
2056                   msg << e.details.text;
2057                   msg << " : " << __FILE__ << ":" << __LINE__;
2058                   throw YACS::ENGINE::ConversionException(msg.str());
2059                 }
2060             }
2061           else if(strncmp(t->id(),"python",6)==0 )
2062             {
2063               CORBA::Any *any = new CORBA::Any();
2064               Engines::fileBlock * buffer=new Engines::fileBlock();
2065               buffer->length(o.length());
2066               CORBA::Octet *buf=buffer->get_buffer();
2067               memcpy(buf,o.c_str(),o.length());
2068               *any <<= buffer;
2069               return any;
2070             }
2071           else if(strncmp(t->id(),"json",4)==0)
2072             {
2073               CORBA::Any *any = new CORBA::Any();
2074               *any <<= o.c_str();
2075               return any;
2076             }
2077           else
2078             {
2079               try
2080                 {
2081                   obref=getSALOMERuntime()->getOrb()->string_to_object(o.c_str());
2082                 }
2083               catch(CORBA::Exception& ex)
2084                 {
2085                   throw ConversionException("Can't get reference to object");
2086                 }
2087               if( CORBA::is_nil(obref) )
2088                 {
2089                   throw ConversionException("Can't get reference to object");
2090                 }
2091             }
2092 #ifdef REFCNT
2093           DEBTRACE("ObjRef refCount: " << obref->_PR_getobj()->pd_refCount);
2094 #endif
2095           CORBA::Any *any = new CORBA::Any();
2096           *any <<= obref;
2097 #ifdef REFCNT
2098           DEBTRACE("ObjRef refCount: " << obref->_PR_getobj()->pd_refCount);
2099 #endif
2100           return any;
2101         }
2102     };
2103
2104     template <>
2105     struct convertFromYacsSequence<CORBAImpl,CORBA::Any*>
2106     {
2107       static inline CORBA::Any* convert(const TypeCode *t,std::vector<CORBA::Any*>& v)
2108         {
2109           CORBA::ORB_ptr orb=getSALOMERuntime()->getOrb();
2110           std::vector<CORBA::Any*>::const_iterator iter;
2111
2112           // Build an Any from vector v
2113           int isObjref=0;
2114           if(t->contentType()->kind() == Objref)
2115             isObjref=1;
2116
2117           CORBA::TypeCode_var tc=getCorbaTC(t);
2118
2119           DynamicAny::DynAny_var dynany=getSALOMERuntime()->getDynFactory()->create_dyn_any_from_type_code(tc);
2120           DynamicAny::DynSequence_var ds = DynamicAny::DynSequence::_narrow(dynany);
2121           ds->set_length(v.size());
2122
2123           for(iter=v.begin();iter!=v.end();iter++)
2124             {
2125               DynamicAny::DynAny_var temp=ds->current_component();
2126               CORBA::Any* a=*iter;
2127               //It seems that from_any does not support inherited objref: convert to CORBA::Object and insert reference
2128               if(isObjref)
2129                 {
2130                   CORBA::Object_var zzobj ;
2131                   *a >>= CORBA::Any::to_object(zzobj) ;
2132                   temp->insert_reference(zzobj);
2133                 }
2134               else
2135                 temp->from_any(*a);
2136
2137               //delete intermediate any
2138               delete a;
2139               ds->next();
2140             }
2141
2142           CORBA::Any *any=ds->to_any();
2143           ds->destroy();
2144           return any;
2145         }
2146     };
2147     template <>
2148     struct convertFromYacsStruct<CORBAImpl,CORBA::Any*>
2149     {
2150       static inline CORBA::Any* convert(const TypeCode *t,std::map<std::string,CORBA::Any*>& m)
2151         {
2152           CORBA::ORB_ptr orb=getSALOMERuntime()->getOrb();
2153
2154           YACS::ENGINE::TypeCodeStruct* tst=(YACS::ENGINE::TypeCodeStruct*)t;
2155           int nMember=tst->memberCount();
2156           DEBTRACE("nMember="<<nMember);
2157
2158           CORBA::TypeCode_var tc=getCorbaTC(t);
2159           DynamicAny::DynAny_var dynany=getSALOMERuntime()->getDynFactory()->create_dyn_any_from_type_code(tc);
2160           DynamicAny::DynStruct_var ds = DynamicAny::DynStruct::_narrow(dynany);
2161
2162           for(int i=0;i<nMember;i++)
2163             {
2164               DynamicAny::DynAny_var temp=ds->current_component();
2165               const char * name=tst->memberName(i);
2166               DEBTRACE("Member name="<<name);
2167               //do not test member presence : test has been done in ToYacs convertor
2168               CORBA::Any* a=m[name];
2169               //It seems that from_any does not support inherited objref: convert to CORBA::Object and insert reference
2170               CORBA::TypeCode_var atc = tc->member_type(i);
2171               if(atc->kind()==CORBA::tk_objref)
2172                 {
2173                   //special treatment for objref
2174                   CORBA::Object_var zzobj ;
2175                   *a >>= CORBA::Any::to_object(zzobj) ;
2176                   temp->insert_reference(zzobj);
2177                 }
2178               else
2179                 {
2180                   temp->from_any(*a);
2181                 }
2182               //delete intermediate any
2183               delete a;
2184               ds->next();
2185             }
2186           CORBA::Any *any=ds->to_any();
2187           ds->destroy();
2188
2189           return any;
2190         }
2191     };
2192     /* End of FromYacs Convertor for CORBAImpl */
2193
2194     /* Some shortcuts for CORBA to CORBA conversion */
2195     template <>
2196     inline CORBA::Any* convertDouble<CORBAImpl,CORBA::Any*,void*,CORBAImpl,CORBA::Any*>(const TypeCode *t,CORBA::Any* o,void* aux)
2197     {
2198       CORBA::TypeCode_var tc = o->type();
2199       if (tc->equivalent(CORBA::_tc_double))
2200         {
2201           return o;
2202         }
2203       if (tc->equivalent(CORBA::_tc_long))
2204         {
2205           CORBA::Long d;
2206           *o >>= d;
2207           CORBA::Any *any = new CORBA::Any();
2208           *any <<= (CORBA::Double)d;
2209           return any;
2210         }
2211       stringstream msg;
2212       msg << "Not a double or long corba type " << tc->kind();
2213       msg << " : " << __FILE__ << ":" << __LINE__;
2214       throw YACS::ENGINE::ConversionException(msg.str());
2215     }
2216     template <>
2217     inline CORBA::Any* convertInt<CORBAImpl,CORBA::Any*,void*,CORBAImpl,CORBA::Any*>(const TypeCode *t,CORBA::Any* o,void* aux)
2218     {
2219       return o;
2220     }
2221     template <>
2222     inline CORBA::Any* convertString<CORBAImpl,CORBA::Any*,void*,CORBAImpl,CORBA::Any*>(const TypeCode *t,CORBA::Any* o,void* aux)
2223     {
2224       return o;
2225     }
2226     template <>
2227     inline CORBA::Any* convertBool<CORBAImpl,CORBA::Any*,void*,CORBAImpl,CORBA::Any*>(const TypeCode *t,CORBA::Any* o,void* aux)
2228     {
2229       return o;
2230     }
2231     template <>
2232     inline CORBA::Any* convertObjref<CORBAImpl,CORBA::Any*,void*,CORBAImpl,CORBA::Any*>(const TypeCode *t,CORBA::Any* o,void* aux)
2233     {
2234       return o;
2235     }
2236     template <>
2237     inline CORBA::Any* convertStruct<CORBAImpl,CORBA::Any*,void*,CORBAImpl,CORBA::Any*>(const TypeCode *t,CORBA::Any* o,void* aux)
2238     {
2239       return o;
2240     }
2241     /* End of shortcuts for CORBA to CORBA conversion */
2242
2243     //! ToYacs Convertor for CPPImpl
2244     /*!
2245      * This convertor converts Python object to YACS<TOUT> types
2246      * Partial specialization for Python implementation with type PyObject* (PYTHONImpl)
2247      */
2248     template <ImplType IMPLOUT, class TOUT>
2249     struct convertToYacsDouble<CPPImpl,void*,const TypeCode*,IMPLOUT,TOUT>
2250     {
2251       static inline double convert(const TypeCode *t,void* o,const TypeCode* intype)
2252         {
2253           if(intype->kind()==YACS::ENGINE::Double)
2254             {
2255               return *(double*)o;
2256             }
2257           else if(intype->kind()==YACS::ENGINE::Int)
2258             {
2259               return *(long*)o;
2260             }
2261           stringstream msg;
2262           msg << "Problem in Cpp to TOUT conversion: kind= " << t->kind() ;
2263           msg << " : " << __FILE__ << ":" << __LINE__;
2264           throw YACS::ENGINE::ConversionException(msg.str());
2265         }
2266     };
2267     template <ImplType IMPLOUT, class TOUT>
2268     struct convertToYacsInt<CPPImpl,void*,const TypeCode*,IMPLOUT,TOUT>
2269     {
2270       static inline long convert(const TypeCode *t,void* o,const TypeCode* intype)
2271         {
2272           if(intype->kind()==YACS::ENGINE::Int)
2273             {
2274               return *(long*)o;
2275             }
2276           stringstream msg;
2277           msg << "Problem in Cpp to TOUT conversion: kind= " << t->kind() ;
2278           msg << " : " << __FILE__ << ":" << __LINE__;
2279           throw YACS::ENGINE::ConversionException(msg.str());
2280         }
2281     };
2282     /* End of ToYacs Convertor for CPPImpl */
2283
2284     //Python conversions
2285     std::string convertPyObjectXml(const TypeCode *t,PyObject *data)
2286       {
2287         return YacsConvertor<PYTHONImpl,PyObject*,void*,XMLImpl,std::string>(t,data,0);
2288       }
2289     YACS::ENGINE::Any* convertPyObjectNeutral(const TypeCode *t,PyObject *data)
2290       {
2291         return YacsConvertor<PYTHONImpl,PyObject*,void*,NEUTRALImpl,YACS::ENGINE::Any*>(t,data,0);
2292       }
2293     CORBA::Any* convertPyObjectCorba(const TypeCode *t,PyObject *data)
2294       {
2295         return YacsConvertor<PYTHONImpl,PyObject*,void*,CORBAImpl,CORBA::Any*>(t,data,0);
2296       }
2297     PyObject* convertPyObjectPyObject(const TypeCode *t,PyObject *data)
2298       {
2299         return YacsConvertor<PYTHONImpl,PyObject*,void*,PYTHONImpl,PyObject*>(t,data,0);
2300       }
2301
2302     std::string convertPyObjectToString(PyObject* ob)
2303     {
2304       PyObject *s;
2305       PyGILState_STATE gstate = PyGILState_Ensure(); 
2306       // TODO: separate treatment for string (maybe with bad encoding?) and other types of PyObject ?
2307       // Do we need str() or repr() and what are the possible causes of failure of str() ?
2308       // not clear, needs more analysis.
2309       s=PyObject_Str(ob);
2310       if (s == NULL) // for instance string with bad encoding, non utf-8
2311       {
2312         s=PyObject_ASCII(ob); // escape non ASCII characters and like repr(), which is not the same as str()...
2313       }
2314       Py_ssize_t size;
2315       char* characters=PyUnicode_AsUTF8AndSize(s, &size);
2316       std::string ss( characters, size);
2317       Py_DECREF(s);
2318       PyGILState_Release(gstate);
2319       return ss;
2320     }
2321
2322     //XML conversions
2323     PyObject* convertXmlPyObject(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur)
2324       {
2325         return YacsConvertor<XMLImpl,xmlDocPtr,xmlNodePtr,PYTHONImpl,PyObject*>(t,doc,cur);
2326       }
2327     YACS::ENGINE::Any* convertXmlNeutral(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur)
2328       {
2329         return YacsConvertor<XMLImpl,xmlDocPtr,xmlNodePtr,NEUTRALImpl,YACS::ENGINE::Any*>(t,doc,cur);
2330       }
2331     CORBA::Any* convertXmlCorba(const TypeCode *t,xmlDocPtr doc,xmlNodePtr cur)
2332       {
2333         return YacsConvertor<XMLImpl,xmlDocPtr,xmlNodePtr,CORBAImpl,CORBA::Any*>(t,doc,cur);
2334       }
2335     PyObject* convertXmlStrPyObject(const TypeCode *t,std::string data)
2336       {
2337         xmlDocPtr doc;
2338         xmlNodePtr cur;
2339         PyObject *ob=NULL;
2340         doc = xmlParseMemory(data.c_str(), strlen(data.c_str()));
2341         if (doc == NULL )
2342         {
2343           std::stringstream msg;
2344           msg << "Problem in conversion: XML Document not parsed successfully ";
2345           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
2346           throw YACS::ENGINE::ConversionException(msg.str());
2347         }
2348         cur = xmlDocGetRootElement(doc);
2349         if (cur == NULL)
2350         {
2351           xmlFreeDoc(doc);
2352           std::stringstream msg;
2353           msg << "Problem in conversion: empty XML Document";
2354           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
2355           throw YACS::ENGINE::ConversionException(msg.str());
2356         }
2357         while (cur != NULL)
2358         {
2359           if ((!xmlStrcmp(cur->name, (const xmlChar *)"value")))
2360           {
2361             ob=convertXmlPyObject(t,doc,cur);
2362             break;
2363           }
2364           cur = cur->next;
2365         }
2366         xmlFreeDoc(doc);
2367         if(ob==NULL)
2368         {
2369           std::stringstream msg;
2370           msg << "Problem in conversion: incorrect XML value";
2371           msg << " (" << __FILE__ << ":" << __LINE__ << ")";
2372           throw YACS::ENGINE::ConversionException(msg.str());
2373         }
2374         return ob;
2375       }
2376     //NEUTRAL conversions
2377     PyObject* convertNeutralPyObject(const TypeCode *t,YACS::ENGINE::Any* data)
2378       {
2379         return YacsConvertor<NEUTRALImpl,YACS::ENGINE::Any*,void*,PYTHONImpl,PyObject*>(t,data,0);
2380       }
2381     std::string convertNeutralXml(const TypeCode *t,YACS::ENGINE::Any* data)
2382       {
2383         return YacsConvertor<NEUTRALImpl,YACS::ENGINE::Any*,void*,XMLImpl,std::string>(t,data,0);
2384       }
2385     CORBA::Any* convertNeutralCorba(const TypeCode *t,YACS::ENGINE::Any* data)
2386       {
2387         return YacsConvertor<NEUTRALImpl,YACS::ENGINE::Any*,void*,CORBAImpl,CORBA::Any*>(t,data,0);
2388       }
2389     YACS::ENGINE::Any *convertNeutralNeutral(const TypeCode *t, YACS::ENGINE::Any* data)
2390       {
2391         data->incrRef();
2392         return data;
2393       }
2394
2395     //CORBA conversions
2396     PyObject* convertCorbaPyObject(const TypeCode *t,CORBA::Any* data)
2397       {
2398         return YacsConvertor<CORBAImpl,CORBA::Any*,void*,PYTHONImpl,PyObject*>(t,data,0);
2399       }
2400     std::string convertCorbaXml(const TypeCode *t,CORBA::Any* data)
2401       {
2402         return YacsConvertor<CORBAImpl,CORBA::Any*,void*,XMLImpl,std::string>(t,data,0);
2403       }
2404     YACS::ENGINE::Any* convertCorbaNeutral(const TypeCode *t,CORBA::Any* data)
2405       {
2406         return YacsConvertor<CORBAImpl,CORBA::Any*,void*,NEUTRALImpl,YACS::ENGINE::Any*>(t,data,0);
2407       }
2408     CORBA::Any *convertCorbaCorba(const TypeCode *t,CORBA::Any *data)
2409       {
2410         return YacsConvertor<CORBAImpl,CORBA::Any*,void*,CORBAImpl,CORBA::Any*>(t,data,0);
2411       }
2412
2413     //! Basic template checker from type TIN 
2414     /*!
2415      * This checker does nothing : throws exception
2416      * It must be partially specialize for a specific type (TIN)
2417      */
2418     template <ImplType IMPLIN,class TIN,class TIN2>
2419     static inline bool checkDouble(const TypeCode *t,TIN o,TIN2 aux)
2420         {
2421           stringstream msg;
2422           msg << "Check not implemented for Implementation: " << IMPLIN ;
2423           msg << " : " << __FILE__ << ":" << __LINE__;
2424           throw YACS::ENGINE::ConversionException(msg.str());
2425         }
2426     template <ImplType IMPLIN,class TIN,class TIN2>
2427     static inline bool checkInt(const TypeCode *t,TIN o,TIN2 aux)
2428         {
2429           stringstream msg;
2430           msg << "Check not implemented for Implementation: " << IMPLIN ;
2431           msg << " : " << __FILE__ << ":" << __LINE__;
2432           throw YACS::ENGINE::ConversionException(msg.str());
2433         }
2434     template <ImplType IMPLIN,class TIN,class TIN2>
2435     static inline bool checkBool(const TypeCode *t,TIN o,TIN2 aux)
2436         {
2437           stringstream msg;
2438           msg << "Check not implemented for Implementation: " << IMPLIN ;
2439           msg << " : " << __FILE__ << ":" << __LINE__;
2440           throw YACS::ENGINE::ConversionException(msg.str());
2441         }
2442     template <ImplType IMPLIN,class TIN,class TIN2>
2443     static inline bool checkString(const TypeCode *t,TIN o,TIN2 aux)
2444         {
2445           stringstream msg;
2446           msg << "Check not implemented for Implementation: " << IMPLIN ;
2447           msg << " : " << __FILE__ << ":" << __LINE__;
2448           throw YACS::ENGINE::ConversionException(msg.str());
2449         }
2450     template <ImplType IMPLIN,class TIN,class TIN2>
2451     static inline bool checkObjref(const TypeCode *t,TIN o,TIN2 aux)
2452         {
2453           stringstream msg;
2454           msg << "Check not implemented for Implementation: " << IMPLIN ;
2455           msg << " : " << __FILE__ << ":" << __LINE__;
2456           throw YACS::ENGINE::ConversionException(msg.str());
2457         }
2458     template <ImplType IMPLIN,class TIN,class TIN2>
2459     static inline bool checkSequence(const TypeCode *t,TIN o,TIN2 aux)
2460         {
2461           stringstream msg;
2462           msg << "Check not implemented for Implementation: " << IMPLIN ;
2463           msg << " : " << __FILE__ << ":" << __LINE__;
2464           throw YACS::ENGINE::ConversionException(msg.str());
2465         }
2466     template <ImplType IMPLIN,class TIN,class TIN2>
2467     static inline bool checkStruct(const TypeCode *t,TIN o,TIN2 aux)
2468         {
2469           stringstream msg;
2470           msg << "Check not implemented for Implementation: " << IMPLIN ;
2471           msg << " : " << __FILE__ << ":" << __LINE__;
2472           throw YACS::ENGINE::ConversionException(msg.str());
2473         }
2474     template <ImplType IMPLIN,class TIN,class TIN2>
2475     static inline bool checkArray(const TypeCode *t,TIN o,TIN2 aux)
2476         {
2477           stringstream msg;
2478           msg << "Check not implemented for Implementation: " << IMPLIN ;
2479           msg << " : " << __FILE__ << ":" << __LINE__;
2480           throw YACS::ENGINE::ConversionException(msg.str());
2481         }
2482
2483     template <ImplType IMPLIN,class TIN,class TIN2>
2484     inline bool YacsChecker(const TypeCode *t,TIN o,TIN2 aux)
2485       {
2486          int tk=t->kind();
2487          switch(t->kind())
2488            {
2489            case Double:
2490              return checkDouble<IMPLIN,TIN,TIN2>(t,o,aux);
2491            case Int:
2492              return checkInt<IMPLIN,TIN,TIN2>(t,o,aux);
2493            case String:
2494              return checkString<IMPLIN,TIN,TIN2>(t,o,aux);
2495            case Bool:
2496              return checkBool<IMPLIN,TIN,TIN2>(t,o,aux);
2497            case Objref:
2498              return checkObjref<IMPLIN,TIN,TIN2>(t,o,aux);
2499            case Sequence:
2500              return checkSequence<IMPLIN,TIN,TIN2>(t,o,aux);
2501            case Array:
2502              return checkArray<IMPLIN,TIN,TIN2>(t,o,aux);
2503            case Struct:
2504              return checkStruct<IMPLIN,TIN,TIN2>(t,o,aux);
2505            default:
2506              break;
2507            }
2508          stringstream msg;
2509          msg << "Check not implemented for kind= " << tk ;
2510          msg << " : " << __FILE__ << ":" << __LINE__;
2511          throw YACS::ENGINE::ConversionException(msg.str());
2512       }
2513     template<>
2514     inline bool checkDouble<PYTHONImpl,PyObject*,void*>(const TypeCode *t,PyObject* o,void* aux)
2515       {
2516         if (PyFloat_Check(o))
2517           return true;
2518         else if(PyLong_Check(o))
2519           return true;
2520         else
2521           {
2522             stringstream msg;
2523             msg << "Not a python double ";
2524             throw YACS::ENGINE::ConversionException(msg.str());
2525           }
2526       }
2527     template<>
2528     inline bool checkInt<PYTHONImpl,PyObject*,void*>(const TypeCode *t,PyObject* o,void* aux)
2529       {
2530           if (PyLong_Check(o))
2531             return true;
2532           else
2533             {
2534               stringstream msg;
2535               msg << "Not a python integer ";
2536               throw YACS::ENGINE::ConversionException(msg.str());
2537             }
2538       }
2539     template<>
2540     inline bool checkBool<PYTHONImpl,PyObject*,void*>(const TypeCode *t,PyObject* o,void* aux)
2541       {
2542           if (PyBool_Check(o))
2543               return true;
2544           else if(PyLong_Check(o))
2545               return true;
2546           else
2547             {
2548               stringstream msg;
2549               msg << "Not a python boolean " ;
2550               throw YACS::ENGINE::ConversionException(msg.str());
2551             }
2552
2553       }
2554     template<>
2555     inline bool checkString<PYTHONImpl,PyObject*,void*>(const TypeCode *t,PyObject* o,void* aux)
2556       {
2557           if (PyUnicode_Check(o))
2558             return true;
2559           else
2560             {
2561               stringstream msg;
2562               msg << "Not a python string " ;
2563               throw YACS::ENGINE::ConversionException(msg.str());
2564             }
2565       }
2566     template<>
2567     inline bool checkObjref<PYTHONImpl,PyObject*,void*>(const TypeCode *t,PyObject* o,void* aux)
2568       {
2569           if (PyUnicode_Check(o))
2570             return true;
2571           if(strncmp(t->id(),"python",6)==0) // a Python object is expected (it's always true)
2572             return true;
2573           else if(strncmp(t->id(),"json",4)==0) // The python object must be json pickable
2574             {
2575                // The python object should be json compliant (to improve)
2576                return true;
2577             }
2578           else
2579             {
2580               // The python object should be a CORBA obj (to improve)
2581                return true;
2582             }
2583       }
2584     template<>
2585     inline bool checkSequence<PYTHONImpl,PyObject*,void*>(const TypeCode *t,PyObject* o,void* aux)
2586       {
2587         if(!PySequence_Check(o))
2588           {
2589             stringstream msg;
2590             msg << "python object is not a sequence " ;
2591             throw YACS::ENGINE::ConversionException(msg.str());
2592           }
2593         int length=PySequence_Size(o);
2594         for(int i=0;i<length;i++)
2595           {
2596             PyObject *item=PySequence_ITEM(o,i);
2597             try
2598               {
2599                 YacsChecker<PYTHONImpl,PyObject*,void*>(t->contentType(),item,0);
2600               }
2601             catch(ConversionException& ex)
2602               {
2603                 stringstream msg;
2604                 msg << ex.what() << " for sequence element " << i;
2605                 throw YACS::ENGINE::ConversionException(msg.str(),false);
2606               }
2607             Py_DECREF(item);
2608           }
2609         return true;
2610       }
2611     template<>
2612     inline bool checkStruct<PYTHONImpl,PyObject*,void*>(const TypeCode *t,PyObject* o,void* aux)
2613       {
2614         PyObject *value;
2615         if(!PyDict_Check(o))
2616           {
2617             stringstream msg;
2618             msg << "python object is not a dict " ;
2619             throw YACS::ENGINE::ConversionException(msg.str());
2620           }
2621         YACS::ENGINE::TypeCodeStruct* tst=(YACS::ENGINE::TypeCodeStruct*)t;
2622         int nMember=tst->memberCount();
2623         for(int i=0;i<nMember;i++)
2624           {
2625             std::string name=tst->memberName(i);
2626             TypeCode* tm=tst->memberType(i);
2627             value=PyDict_GetItemString(o, name.c_str());
2628             if(value==NULL)
2629               {
2630                 stringstream msg;
2631                 msg << "member " << name << " not present " ;
2632                 throw YACS::ENGINE::ConversionException(msg.str());
2633               }
2634             try
2635               {
2636                 YacsChecker<PYTHONImpl,PyObject*,void*>(tm,value,0);
2637               }
2638             catch(ConversionException& ex)
2639               {
2640                 std::string s=" for struct member "+name;
2641                 throw YACS::ENGINE::ConversionException(ex.what()+s,false);
2642               }
2643           }
2644         return true;
2645       }
2646
2647     bool checkPyObject(const TypeCode *t,PyObject* ob)
2648       {
2649         return YacsChecker<PYTHONImpl,PyObject*,void*>(t,ob,0);
2650       }
2651   }
2652 }