/usr/include/openturns/swig/Collection.i is in python-openturns-dev 1.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | // SWIG file Collection.i
// @author schueller
// @date 2012-01-02 11:44:01 +0100 (Mon, 02 Jan 2012)
%{
#include "Collection.hxx"
%}
%include Collection.hxx
%copyctor Collection;
namespace OT {
%extend Collection {
Collection(PyObject * pyObj)
{
return OT::buildCollectionFromPySequence< T >( pyObj );
}
template <class T> Collection(const Collection<T> & other)
{
return new OT::Collection<T>(other);
}
%define OT_COLLECTION_GETITEM(collectionType, elementType)
PyObject * __getitem__(PyObject * arg) const
{
if ( PySlice_Check(arg) )
{
Py_ssize_t start = 0;
Py_ssize_t stop = 0;
Py_ssize_t step = 0;
Py_ssize_t slicelength = 0;
if( PySlice_GetIndicesEx( OT::SliceCast( arg ), self->getSize(), &start, &stop, &step, &slicelength ) < 0 )
throw OT::InternalException(HERE);
collectionType result( slicelength );
for ( Py_ssize_t i = 0; i < slicelength; ++ i )
{
result.at(i) = self->at( start + i*step );
}
return SWIG_NewPointerObj((new collectionType(static_cast< const collectionType& >(result))), SWIG_TypeQuery( #collectionType " *"), SWIG_POINTER_OWN | 0 );
}
else
{
OT::UnsignedLong arg2;
unsigned long val2 ;
int ecode2 = 0 ;
ecode2 = SWIG_AsVal_unsigned_SS_long(arg, &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" #collectionType "___getitem__" "', argument " "2"" of type '" "OT::UnsignedLong""'");
}
arg2 = static_cast< OT::UnsignedLong >(val2);
return OT::convert< elementType, OT::traitsPythonType<elementType>::Type>( self->at( arg2 ) );
}
fail:
return NULL;
}
%enddef
%define OT_COLLECTION_SETITEM(collectionType, elementType)
void __setitem__(PyObject * arg, PyObject * valObj)
{
if ( PySlice_Check( arg ) )
{
Py_ssize_t start1;
Py_ssize_t stop1;
Py_ssize_t step1;
Py_ssize_t slicelength1;
PySlice_GetIndicesEx( OT::SliceCast( arg ), self->getSize(), &start1, &stop1, &step1, &slicelength1 );
collectionType temp2 ;
collectionType *val2 = 0 ;
if (! SWIG_IsOK(SWIG_ConvertPtr(valObj, (void **) &val2, SWIG_TypeQuery( #collectionType " *"), 0))) {
temp2 = OT::convert< OT::_PySequence_, collectionType >( valObj );
val2 = &temp2;
}
assert( val2 );
for ( Py_ssize_t i = 0; i < slicelength1; ++ i )
{
self->at( start1 + i*step1 ) = val2->at(i);
}
}
else
{
OT::UnsignedLong arg2;
unsigned long val2 ;
int ecode2 = 0 ;
ecode2 = SWIG_AsVal_unsigned_SS_long(arg, &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" #collectionType "___setitem__" "', argument " "2"" of type '" "OT::UnsignedLong""'");
}
arg2 = static_cast< OT::UnsignedLong >(val2);
elementType val = OT::convert< OT::traitsPythonType<elementType>::Type, elementType >( valObj );
self->at(arg2) = val;
}
fail:
return;
}
%enddef
} // %extend
}
|