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
|
""" C/C++ code strings needed for converting most non-sequence
Python variables:
module_support_code -- several routines used by most other code
conversion methods. It holds the only
CXX dependent code in this file. The CXX
stuff is used for exceptions
file_convert_code
instance_convert_code
callable_convert_code
module_convert_code
scalar_convert_code
non_template_scalar_support_code
Scalar conversion covers int, float, double, complex,
and double complex. While Python doesn't support all these,
Numeric does and so all of them are made available.
Python longs are currently converted to C ints. Any
better way to handle this?
"""
import base_info
#############################################################
# Basic module support code
#############################################################
module_support_code = \
"""
char* find_type(PyObject* py_obj)
{
if(py_obj == NULL) return "C NULL value";
if(PyCallable_Check(py_obj)) return "callable";
if(PyString_Check(py_obj)) return "string";
if(PyInt_Check(py_obj)) return "int";
if(PyFloat_Check(py_obj)) return "float";
if(PyDict_Check(py_obj)) return "dict";
if(PyList_Check(py_obj)) return "list";
if(PyTuple_Check(py_obj)) return "tuple";
if(PyFile_Check(py_obj)) return "file";
if(PyModule_Check(py_obj)) return "module";
//should probably do more intergation (and thinking) on these.
if(PyCallable_Check(py_obj) && PyInstance_Check(py_obj)) return "callable";
if(PyInstance_Check(py_obj)) return "instance";
if(PyCallable_Check(py_obj)) return "callable";
return "unkown type";
}
void handle_bad_type(PyObject* py_obj, char* good_type, char* var_name)
{
char msg[500];
sprintf(msg,"received '%s' type instead of '%s' for variable '%s'",
find_type(py_obj),good_type,var_name);
throw Py::TypeError(msg);
}
void handle_conversion_error(PyObject* py_obj, char* good_type, char* var_name)
{
char msg[500];
sprintf(msg,"Conversion Error:, received '%s' type instead of '%s' for variable '%s'",
find_type(py_obj),good_type,var_name);
throw Py::TypeError(msg);
}
"""
#############################################################
# File conversion support code
#############################################################
file_convert_code = \
"""
FILE* convert_to_file(PyObject* py_obj, char* name)
{
if (!py_obj || !PyFile_Check(py_obj))
handle_conversion_error_type(py_obj,"file", name);
// Cleanup code should call DECREF
Py_INCREF(py_obj);
return PyFile_AsFile(py_obj);
}
FILE* py_to_file(PyObject* py_obj, char* name)
{
if (!py_obj || !PyFile_Check(py_obj))
handle_bad_type(py_obj,"file", name);
// Cleanup code should call DECREF
Py_INCREF(py_obj);
return PyFile_AsFile(py_obj);
}
PyObject* file_to_py(FILE* file, char* name, char* mode)
{
PyObject* py_obj = NULL;
//extern int fclose(FILE *);
return (PyObject*) PyFile_FromFile(file, name, mode, fclose);
}
"""
#############################################################
# Instance conversion code
#############################################################
instance_convert_code = \
"""
PyObject* convert_to_instance(PyObject* py_obj, char* name)
{
if (!py_obj || !PyFile_Check(py_obj))
handle_conversion_error(py_obj,"instance", name);
// Should I INCREF???
// Py_INCREF(py_obj);
// just return the raw python pointer.
return py_obj;
}
PyObject* py_to_instance(PyObject* py_obj, char* name)
{
if (!py_obj || !PyFile_Check(py_obj))
handle_bad_type(py_obj,"instance", name);
// Should I INCREF???
// Py_INCREF(py_obj);
// just return the raw python pointer.
return py_obj;
}
PyObject* instance_to_py(PyObject* instance)
{
// Don't think I need to do anything...
return (PyObject*) instance;
}
"""
#############################################################
# Callable conversion code
#############################################################
callable_convert_code = \
"""
PyObject* convert_to_callable(PyObject* py_obj, char* name)
{
if (!py_obj || !PyCallable_Check(py_obj))
handle_conversion_error(py_obj,"callable", name);
// Should I INCREF???
// Py_INCREF(py_obj);
// just return the raw python pointer.
return py_obj;
}
PyObject* py_to_callable(PyObject* py_obj, char* name)
{
if (!py_obj || !PyCallable_Check(py_obj))
handle_bad_type(py_obj,"callable", name);
// Should I INCREF???
// Py_INCREF(py_obj);
// just return the raw python pointer.
return py_obj;
}
PyObject* callable_to_py(PyObject* callable)
{
// Don't think I need to do anything...
return (PyObject*) callable;
}
"""
#############################################################
# Module conversion code
#############################################################
module_convert_code = \
"""
PyObject* convert_to_module(PyObject* py_obj, char* name)
{
if (!py_obj || !PyModule_Check(py_obj))
handle_conversion_error(py_obj,"module", name);
// Should I INCREF???
// Py_INCREF(py_obj);
// just return the raw python pointer.
return py_obj;
}
PyObject* py_to_module(PyObject* py_obj, char* name)
{
if (!py_obj || !PyModule_Check(py_obj))
handle_bad_type(py_obj,"module", name);
// Should I INCREF???
// Py_INCREF(py_obj);
// just return the raw python pointer.
return py_obj;
}
PyObject* module_to_py(PyObject* module)
{
// Don't think I need to do anything...
return (PyObject*) module;
}
"""
#############################################################
# Scalar conversion code
#############################################################
import base_info
# this code will not build with msvc...
scalar_support_code = \
"""
// conversion routines
template<class T>
static T convert_to_scalar(PyObject* py_obj,char* name)
{
//never used.
return (T) 0;
}
template<>
static int convert_to_scalar<int>(PyObject* py_obj,char* name)
{
if (!py_obj || !PyInt_Check(py_obj))
handle_conversion_error(py_obj,"int", name);
return (int) PyInt_AsLong(py_obj);
}
template<>
static long convert_to_scalar<long>(PyObject* py_obj,char* name)
{
if (!py_obj || !PyLong_Check(py_obj))
handle_conversion_error(py_obj,"long", name);
return (long) PyLong_AsLong(py_obj);
}
template<>
static double convert_to_scalar<double>(PyObject* py_obj,char* name)
{
if (!py_obj || !PyFloat_Check(py_obj))
handle_conversion_error(py_obj,"float", name);
return PyFloat_AsDouble(py_obj);
}
template<>
static float convert_to_scalar<float>(PyObject* py_obj,char* name)
{
return (float) convert_to_scalar<double>(py_obj,name);
}
// complex not checked.
template<>
static std::complex<float> convert_to_scalar<std::complex<float> >(PyObject* py_obj,
char* name)
{
if (!py_obj || !PyComplex_Check(py_obj))
handle_conversion_error(py_obj,"complex", name);
return std::complex<float>((float) PyComplex_RealAsDouble(py_obj),
(float) PyComplex_ImagAsDouble(py_obj));
}
template<>
static std::complex<double> convert_to_scalar<std::complex<double> >(
PyObject* py_obj,char* name)
{
if (!py_obj || !PyComplex_Check(py_obj))
handle_conversion_error(py_obj,"complex", name);
return std::complex<double>(PyComplex_RealAsDouble(py_obj),
PyComplex_ImagAsDouble(py_obj));
}
/////////////////////////////////
// standard translation routines
template<class T>
static T py_to_scalar(PyObject* py_obj,char* name)
{
//never used.
return (T) 0;
}
template<>
static int py_to_scalar<int>(PyObject* py_obj,char* name)
{
if (!py_obj || !PyInt_Check(py_obj))
handle_bad_type(py_obj,"int", name);
return (int) PyInt_AsLong(py_obj);
}
template<>
static long py_to_scalar<long>(PyObject* py_obj,char* name)
{
if (!py_obj || !PyLong_Check(py_obj))
handle_bad_type(py_obj,"long", name);
return (long) PyLong_AsLong(py_obj);
}
template<>
static double py_to_scalar<double>(PyObject* py_obj,char* name)
{
if (!py_obj || !PyFloat_Check(py_obj))
handle_bad_type(py_obj,"float", name);
return PyFloat_AsDouble(py_obj);
}
template<>
static float py_to_scalar<float>(PyObject* py_obj,char* name)
{
return (float) py_to_scalar<double>(py_obj,name);
}
// complex not checked.
template<>
static std::complex<float> py_to_scalar<std::complex<float> >(PyObject* py_obj,
char* name)
{
if (!py_obj || !PyComplex_Check(py_obj))
handle_bad_type(py_obj,"complex", name);
return std::complex<float>((float) PyComplex_RealAsDouble(py_obj),
(float) PyComplex_ImagAsDouble(py_obj));
}
template<>
static std::complex<double> py_to_scalar<std::complex<double> >(
PyObject* py_obj,char* name)
{
if (!py_obj || !PyComplex_Check(py_obj))
handle_bad_type(py_obj,"complex", name);
return std::complex<double>(PyComplex_RealAsDouble(py_obj),
PyComplex_ImagAsDouble(py_obj));
}
"""
non_template_scalar_support_code = \
"""
// Conversion Errors
static int convert_to_int(PyObject* py_obj,char* name)
{
if (!py_obj || !PyInt_Check(py_obj))
handle_conversion_error(py_obj,"int", name);
return (int) PyInt_AsLong(py_obj);
}
static long convert_to_long(PyObject* py_obj,char* name)
{
if (!py_obj || !PyLong_Check(py_obj))
handle_conversion_error(py_obj,"long", name);
return (long) PyLong_AsLong(py_obj);
}
static double convert_to_float(PyObject* py_obj,char* name)
{
if (!py_obj || !PyFloat_Check(py_obj))
handle_conversion_error(py_obj,"float", name);
return PyFloat_AsDouble(py_obj);
}
// complex not checked.
static std::complex<double> convert_to_complex(PyObject* py_obj,char* name)
{
if (!py_obj || !PyComplex_Check(py_obj))
handle_conversion_error(py_obj,"complex", name);
return std::complex<double>(PyComplex_RealAsDouble(py_obj),
PyComplex_ImagAsDouble(py_obj));
}
/////////////////////////////////////
// The following functions are used for scalar conversions in msvc
// because it doesn't handle templates as well.
static int py_to_int(PyObject* py_obj,char* name)
{
if (!py_obj || !PyInt_Check(py_obj))
handle_bad_type(py_obj,"int", name);
return (int) PyInt_AsLong(py_obj);
}
static long py_to_long(PyObject* py_obj,char* name)
{
if (!py_obj || !PyLong_Check(py_obj))
handle_bad_type(py_obj,"long", name);
return (long) PyLong_AsLong(py_obj);
}
static double py_to_float(PyObject* py_obj,char* name)
{
if (!py_obj || !PyFloat_Check(py_obj))
handle_bad_type(py_obj,"float", name);
return PyFloat_AsDouble(py_obj);
}
// complex not checked.
static std::complex<double> py_to_complex(PyObject* py_obj,char* name)
{
if (!py_obj || !PyComplex_Check(py_obj))
handle_bad_type(py_obj,"complex", name);
return std::complex<double>(PyComplex_RealAsDouble(py_obj),
PyComplex_ImagAsDouble(py_obj));
}
"""
|