Salome HOME
Indexes for sequences corrected.
[modules/hydro.git] / src / HYDROPy / HYDROData_SequenceOfObjects.sip
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 %ExportedHeaderCode
24 #include <NCollection_Sequence.hxx>
25 %End
26
27 %MappedType NCollection_Sequence<Handle_HYDROData_Entity>
28 {
29 %TypeHeaderCode
30 #include <NCollection_Sequence.hxx>
31 %End
32
33 %ConvertFromTypeCode
34     // Create the list.
35     PyObject *l;
36
37     if ((l = PyList_New(sipCpp->Length())) == NULL)
38         return NULL;
39
40     // Set the list elements.
41     for (int i = 1; i <= sipCpp->Length(); ++i)
42     {
43        HYDROData_Entity* aPntr = createPointer(sipCpp->Value(i));
44      
45         PyObject *tobj;
46         
47         if ((tobj = sipConvertFromNewType(aPntr, sipFindType( aPntr->DynamicType()->Name() ), sipTransferObj)) == NULL)
48         {
49             Py_DECREF(l);
50             {
51               Handle_HYDROData_Entity anEnt( aPntr );
52             }
53
54             return NULL;
55         }
56
57         PyList_SET_ITEM(l, i - 1, tobj);
58     }
59
60     return l;
61 %End
62
63 %ConvertToTypeCode
64     SIP_SSIZE_T len;
65
66     // Check the type if that is all that is required.
67     if (sipIsErr == NULL)
68     {
69         if (!PySequence_Check(sipPy) || (len = PySequence_Size(sipPy)) < 0)
70             return 0;
71
72         for (SIP_SSIZE_T i = 0; i < len; ++i)
73         {
74             PyObject *itm = PySequence_ITEM(sipPy, i);
75             bool ok = (itm && sipCanConvertToType(itm, sipType_HYDROData_Entity, SIP_NOT_NONE));
76
77             Py_XDECREF(itm);
78
79             if (!ok)
80                 return 0;
81         }
82
83         return 1;
84     }
85
86     NCollection_Sequence<Handle_HYDROData_Entity> *aSeq = 
87       new NCollection_Sequence<Handle_HYDROData_Entity>;
88     len = PySequence_Size(sipPy);
89  
90     for (SIP_SSIZE_T i = 0; i < len; ++i)
91     {
92         PyObject *itm = PySequence_ITEM(sipPy, i);
93         int state;
94         HYDROData_Entity *t = 
95           reinterpret_cast<HYDROData_Entity *>(sipConvertToType(itm, sipType_HYDROData_Entity, sipTransferObj, SIP_NOT_NONE, &state, sipIsErr));
96
97         Py_DECREF(itm);
98  
99         if (*sipIsErr)
100         {
101             sipReleaseType(t, sipType_HYDROData_Entity, state);
102
103             delete aSeq;
104             return 0;
105         }
106
107         Handle_HYDROData_Entity anEnt( t );
108         aSeq->Append( anEnt );
109
110         //sipReleaseType(t, sipType_HYDROData_Entity, state);
111     }
112  
113     *sipCppPtr = aSeq;
114  
115     return sipGetState(sipTransferObj);
116 %End
117 };
118
119 typedef NCollection_Sequence<Handle_HYDROData_Entity> HYDROData_SequenceOfObjects;