forked from pcraston/pyxmlsec
-
Notifications
You must be signed in to change notification settings - Fork 4
/
utils.c
100 lines (94 loc) · 2.88 KB
/
utils.c
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
/* $Id: utils.c 363 2006-01-01 18:03:07Z valos $
*
* PyXMLSec - Python bindings for XML Security library (XMLSec)
*
* Copyright (C) 2003-2005 Easter-eggs, Valery Febvre
* http://pyxmlsec.labs.libre-entreprise.org
*
* Author: Valery Febvre <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdarg.h>
#include "utils.h"
int CheckArgs(PyObject *args, char *format) {
PyObject *obj;
int i, nb_args;
nb_args = PyTuple_GET_SIZE(args);
/* lowercase means that arg is optional */
/* O : Instance */
/* C : Callable */
/* S : String */
/* I : Integer */
/* F : File */
for (i = 0; i < nb_args; i++) {
obj = PyTuple_GET_ITEM(args, i);
/* O or o : instance */
if (format[i] == 'O' || format[i] == 'o') {
if (!PyInstance_Check(obj)) {
if (format[i] == 'o' && obj == Py_None) continue;
PyErr_Format(xmlsec_error,
"%s() argument %d must be an instance.",
format + nb_args, i+1);
return 0;
}
}
/* C or c : callable */
else if (format[i] == 'C' || format[i] == 'c') {
if (!PyCallable_Check(obj)) {
if (format[i] == 'c' && obj == Py_None) continue;
PyErr_Format(xmlsec_error,
"%s() argument %d must be callable.",
format + nb_args, i+1);
return 0;
}
}
/* S or s : string */
else if (format[i] == 'S' || format[i] == 's') {
if (!PyString_Check(obj)) {
if (format[i] == 's' && obj == Py_None) continue;
PyErr_Format(xmlsec_error,
"%s() argument %d must be a string.",
format + nb_args, i+1);
return 0;
}
}
/* I or i : integer */
else if (format[i] == 'I' || format[i] == 'i') {
if (!PyInt_Check(obj)) {
if (format[i] == 'i' && obj == Py_None) continue;
PyErr_Format(xmlsec_error,
"%s() argument %d must be an integer.",
format + nb_args, i+1);
return 0;
}
}
/* F or f : file */
else if (format[i] == 'F' || format[i] == 'f') {
if (!PyFile_Check(obj)) {
if (format[i] == 'f' && obj == Py_None) continue;
PyErr_Format(xmlsec_error,
"%s() argument %d must be a file.",
format + nb_args, i+1);
return 0;
}
}
/* type is variable */
else if (format[i] == '?') {
continue;
}
}
return 1;
}