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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/***********************************************
SWIG input file for DPM python interface
(including typemaps for non-trivial functions)
***********************************************/
#ifdef SWIGPYTHON
/***************************************
Input (in) Typemaps
***************************************/
%typemap(in) (gid_t *gids) {
int size;
if ($input == Py_None || (size = PyList_Size($input)) < 0)
$1 = NULL;
else {
int i;
$1 = (gid_t *) calloc (size + 1, sizeof (gid_t));
for (i = 0; i < size; ++i) {
$1[i] = PyInt_AsLong (PyList_GetItem($input, i));
}
}
}
%typemap(in, numinputs=0) (int *LENGTH, struct dpm_fs **OUTPUT){
int tmp_int;
struct dpm_fs *tmp_struct;
$1 = &tmp_int;
$2 = &tmp_struct;
}
%typemap(in, numinputs=0) (int *LENGTH, struct dpm_pool **OUTPUT){
int tmp_int;
struct dpm_pool *tmp_struct;
$1 = &tmp_int;
$2 = &tmp_struct;
}
%typemap(in, numinputs=0) (int *LENGTH, char ***OUTPUT){
int tmp_int;
char **tmp_struct = 0;
$1 = &tmp_int;
$2 = &tmp_struct;
}
%typemap(in) (int LENGTH, char **TUPLE){
/* Check the input list */
if(!PyList_Check($input)){
PyErr_SetString(PyExc_ValueError, "Expecting a list");
return NULL;
}
/* No error */
else {
/* Length of the python list (how many space tokens) */
$1 = PyList_Size($input);
/* Reserve space to store all the space tokens in an array (after converting them) */
$2 = (char **) calloc ($1, sizeof(char *)) ;
int i;
for (i=0; i<$1; ++i)
$2[i] = PyString_AsString (PyList_GetItem($input, i));
}/* end of: No error */
}/* end of: typemap(in) */
/* Free the temporary space tokens array passed to the C function after the dpm_getspacemd function has returned */
%typemap(freearg) (int LENGTH, char **TUPLE) {
if($2){
free($2);
}
}
%typemap(in, numinputs=0) (int *LENGTH, struct dpm_space_metadata **OUTPUT){
int tmp_int;
struct dpm_space_metadata *tmp_struct;
$1 = &tmp_int;
$2 = &tmp_struct;
}
%typemap(in) (struct dpm_pool *POOL){
/* Temp pointer */
struct dpm_pool * aux_p;
/* This moves aux_p to point to a newly allocated dpns_acl struct representing the item in the python list */
SWIG_ConvertPtr($input, (void**) &aux_p,
$descriptor(struct dpm_pool *), SWIG_POINTER_EXCEPTION);
/* Copy the value to the array */
$1 = aux_p;
}/* end of: typemap(in) */
%typemap(in) (int LENGTH, gid_t *INPUT){
/* Empty list */
if ($input == Py_None) {
$1 = 0;
$2 = NULL;
}
/* Check the input list */
else if (!PyList_Check ($input)) {
PyErr_SetString (PyExc_ValueError, "Expecting a list");
return NULL;
}
/* No error */
else {
int i;
/* Length of the python list */
$1 = PyList_Size($input);
$2 = (gid_t *) calloc ($1, sizeof (gid_t));
for (i = 0; i < $1; ++i) {
$2[i] = PyInt_AsLong (PyList_GetItem($input, i));
}
}/* end of: No error */
}/* end of: typemap(in) */
/* Free the temporary array passed to the C function */
%typemap(freearg) (int LENGTH, gid_t *INPUT) {
if ($2) {
free ($2);
}
}
%typemap(in, numinputs=0) (char *OUTPUT) {
char tmp[2];
$1 = tmp;
}
%typemap(in, numinputs=0) (char *TOKEN) {
char tmp[CA_MAXDPMTOKENLEN+1];
$1 = tmp;
}
%typemap(in, numinputs=0) (u_signed64 *OUTPUT) {
u_signed64 tmp;
$1 = &tmp;
}
%typemap(in, numinputs=0) (time_t *OUTPUT) {
time_t tmp;
$1 = &tmp;
}
%typemap(in, numinputs=0) (gid_t *OUTPUT) {
gid_t tmp;
$1 = &tmp;
}
/***************************************
Output (out/argout) Typemaps
***************************************/
%typemap(out) gid_t * {
PyObject *myresult;
/* Error, return None */
if ($1 == 0) {
myresult = Py_None;
Py_INCREF(Py_None);
}
/* No error */
else {
int i;
/* the size of the C table is the previous field (int type) of the same structure */
int len = (arg1)->nbgids;
myresult = PyList_New(len);
for (i = 0; i < len; ++i)
PyList_SetItem($result, i, PyInt_FromLong ($1[i]));
}
$result = my_t_output_helper(NULL, myresult);
}
%typemap(argout) (int *LENGTH, struct dpm_fs **OUTPUT) {
PyObject *myresult;
/* Error, return None */
if(result < 0){
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else{
int i;
myresult = PyList_New(*$1);
for (i = 0; i < *$1; ++i) {
/* Let python garbage-collect only the 1st one. That will already delete it all! */
int PYTHON_OWNED = i > 0 ? 0 : 1;
struct dpm_fs * aux = (struct dpm_fs *) (*$2)+i;
/* Create a python object based on the C struct set by the C function */
PyObject * aux_obj = SWIG_NewPointerObj(aux, $descriptor(struct dpm_fs *), PYTHON_OWNED);
/* Add the python object to the tuple to return */
PyList_SetItem(myresult, i, aux_obj);
}
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (int *LENGTH, struct dpm_pool **OUTPUT) {
PyObject *myresult;
/* Error, return None */
if (result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else {
int i;
myresult = PyList_New(*$1);
for (i = 0; i < *$1; ++i) {
/* Let python garbage-collect only the 1st one. That will already delete it all! */
int PYTHON_OWNED = i > 0 ? 0 : 1;
struct dpm_pool * aux = (struct dpm_pool *) (*$2)+i;
/* Create a python object based on the C struct set by the C function */
PyObject * aux_obj = SWIG_NewPointerObj(aux, $descriptor(struct dpm_pool *), PYTHON_OWNED);
/* Add the python object to the tuple to return */
PyList_SetItem(myresult, i, aux_obj);
}
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (int *LENGTH, char ***OUTPUT) {
PyObject *myresult;
/* Error, return None */
if(result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else{
int i;
myresult = PyList_New(*$1);
for (i = 0; i < *$1; ++i) {
PyList_SetItem(myresult, i, PyString_FromString ((*$2)[i]));
free((*$2)[i]);
}
free(*$2);
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (int *LENGTH, struct dpm_space_metadata **OUTPUT) {
PyObject *myresult;
/* Error, return None */
if (result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else{
int i;
myresult = PyList_New(*$1);
for (i = 0; i < *$1; ++i){
/* Let python garbage-collect only the 1st one. That will already delete it all! */
int PYTHON_OWNED = i > 0 ? 0 : 1;
struct dpm_space_metadata * aux = (struct dpm_space_metadata *) (*$2)+i;
/* Create a python object based on the C struct set by the C function */
PyObject * aux_obj = SWIG_NewPointerObj(aux, $descriptor(struct dpm_space_metadata *), PYTHON_OWNED);
/* Add the python object to the tuple to return */
PyList_SetItem(myresult, i, aux_obj);
}
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (char *OUTPUT) {
PyObject *myresult;
/* Error, return None */
if (result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else {
$1[1] = 0;
myresult = PyString_FromString ($1);
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (char *TOKEN) {
PyObject *myresult;
/* Error, return None */
if (result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else {
myresult = PyString_FromString ($1);
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (u_signed64 *OUTPUT) {
PyObject *myresult;
/* Error, return None */
if (result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else {
myresult = PyLong_FromLongLong (*$1);
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (time_t *OUTPUT) {
PyObject *myresult;
/* Error, return None */
if (result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else {
myresult = PyLong_FromLong (*$1);
}
$result = my_t_output_helper($result, myresult);
}
%typemap(argout) (gid_t *OUTPUT) {
PyObject *myresult;
/* Error, return None */
if (result < 0) {
Py_INCREF(Py_None);
myresult = Py_None;
}
/* No error */
else {
myresult = PyLong_FromLong (*$1);
}
$result = my_t_output_helper($result, myresult);
}
#endif /* SWIGPYTHON */
|