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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
template<FIRSTTYPE, SECONDTYPE>
%MappedType pair<FIRSTTYPE, SECONDTYPE>
{
%TypeHeaderCode
#include <utility>
%End
%ConvertFromTypeCode
PyObject *t;
// Create the Python list of the correct length.
if ((t = PyTuple_New(2)) == NULL)
return NULL;
PyObject* tmp;
FIRSTTYPE* first = new FIRSTTYPE(sipCpp->first);
if ((tmp = BALL_CONVERT_FROM_INSTANCE(first, FIRSTTYPE, sipTransferObj)) == NULL)
{
Py_DECREF(t);
return NULL;
}
PyTuple_SET_ITEM(t, 0, tmp);
SECONDTYPE* second = new SECONDTYPE(sipCpp->second);
if ((tmp = BALL_CONVERT_FROM_INSTANCE(second, SECONDTYPE, sipTransferObj)) == NULL)
{
Py_DECREF(t);
return NULL;
}
PyTuple_SET_ITEM(t, 1, tmp);
return t;
%End
%ConvertToTypeCode
// Check if type is compatible
if (sipIsErr == NULL)
{
// Must be any iterable
if(PyTuple_Check(sipPy)) {
return PyTuple_Size(sipPy) == 2;
}
return false;
}
int state;
if(!BALL_CAN_CONVERT_TO_INSTANCE(PyTuple_GET_ITEM(sipPy, 0), FIRSTTYPE))
{
PyErr_Format(PyExc_TypeError, "Object 0 in tuple cannot be converted to FIRSTTYPE");
*sipIsErr = 1;
return 0;
}
FIRSTTYPE* first = BALL_CONVERT_TO_INSTANCE(PyTuple_GET_ITEM(sipPy, 0), FIRSTTYPE, state);
if(!BALL_CAN_CONVERT_TO_INSTANCE(PyTuple_GET_ITEM(sipPy, 1), SECONDTYPE))
{
PyErr_Format(PyExc_TypeError, "Object 1 in tuple cannot be converted to SECONDTYPE");
*sipIsErr = 1;
return 0;
}
SECONDTYPE* second = BALL_CONVERT_TO_INSTANCE(PyTuple_GET_ITEM(sipPy, 1), SECONDTYPE, state);
std::pair<FIRSTTYPE, SECONDTYPE>* result = NULL;
if(!*sipIsErr) {
result = new std::pair<FIRSTTYPE, SECONDTYPE>(*first, *second);
}
BALL_RELEASE_INSTANCE(first , FIRSTTYPE, state);
BALL_RELEASE_INSTANCE(second, SECONDTYPE, state);
*sipCppPtr = result;
return sipGetState(sipTransferObj);
%End
};
//
// Specialization for double
//
template<FIRSTTYPE, double>
%MappedType pair<FIRSTTYPE, double>
{
%TypeHeaderCode
#include <utility>
%End
%ConvertFromTypeCode
PyObject *t;
// Create the Python list of the correct length.
if ((t = PyTuple_New(2)) == NULL)
return NULL;
PyObject* tmp;
FIRSTTYPE* first = new FIRSTTYPE(sipCpp->first);
if ((tmp = BALL_CONVERT_FROM_INSTANCE(first, FIRSTTYPE, sipTransferObj)) == NULL)
{
Py_DECREF(t);
return NULL;
}
PyTuple_SET_ITEM(t, 0, tmp);
PyTuple_SET_ITEM(t, 1, PyFloat_FromDouble(sipCpp->second));
return t;
%End
%ConvertToTypeCode
// Check if type is compatible
if (sipIsErr == NULL)
{
return PyTuple_Check(sipPy) && (PyTuple_Size(sipPy) == 2) && PyNumber_Check(PyTuple_GET_ITEM(sipPy, 1));
}
PyObject* tmp = PyTuple_GET_ITEM(sipPy, 0);
if(!BALL_CAN_CONVERT_TO_INSTANCE(tmp, FIRSTTYPE))
{
PyErr_Format(PyExc_TypeError, "Object 0 in tuple cannot be converted to FIRSTTYPE");
*sipIsErr = 1;
return 0;
}
int state;
FIRSTTYPE* first = BALL_CONVERT_TO_INSTANCE(PyTuple_GET_ITEM(sipPy, 0), FIRSTTYPE, state);
if(!PyNumber_Check(PyTuple_GET_ITEM(sipPy, 1)))
{
PyErr_Format(PyExc_TypeError, "Object 1 in tuple cannot be converted to double");
*sipIsErr = 1;
return 0;
}
std::pair<FIRSTTYPE,double>* result = 0;
if(!*sipIsErr) {
result = new std::pair<FIRSTTYPE, double>(*first, PyFloat_AsDouble(PyNumber_Float(PyTuple_GET_ITEM(sipPy, 1))));
}
BALL_RELEASE_INSTANCE(first, FIRSTTYPE, state);
*sipCppPtr = result;
return sipGetState(sipTransferObj);
%End
};
//
// Specialization for Position, Position
//
%MappedType pair<Position, Position>
{
%TypeHeaderCode
#include <utility>
%End
%ConvertFromTypeCode
PyObject *t;
// Create the Python list of the correct length.
if ((t = PyTuple_New(2)) == NULL)
return NULL;
PyTuple_SET_ITEM(t, 0, PyInt_FromLong(sipCpp->first));
PyTuple_SET_ITEM(t, 1, PyInt_FromLong(sipCpp->second));
return t;
%End
%ConvertToTypeCode
// Check if type is compatible
if (sipIsErr == NULL)
{
return PyTuple_Check(sipPy)
&& (PyTuple_Size(sipPy) == 2)
&& PyNumber_Check(PyTuple_GET_ITEM(sipPy, 0))
&& PyNumber_Check(PyTuple_GET_ITEM(sipPy, 1));
}
std::pair<Position,Position>* result = 0;
if(!*sipIsErr) {
result = new std::pair<Position, Position>(PyInt_AsLong(PyNumber_Int(PyTuple_GET_ITEM(sipPy, 0))), PyInt_AsLong(PyNumber_Int(PyTuple_GET_ITEM(sipPy, 1))));
}
*sipCppPtr = result;
return sipGetState(sipTransferObj);
%End
};
|