1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1995-01-04 15:12:13 -04:00
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
1991-02-19 08:39:46 -04:00
|
|
|
provided that the above copyright notice appear in all copies and that
|
1996-10-25 11:44:06 -03:00
|
|
|
both that copyright notice and this permission notice appear in
|
1991-02-19 08:39:46 -04:00
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
1996-10-25 11:44:06 -03:00
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
PERFORMANCE OF THIS SOFTWARE.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Functions used by cgen output */
|
|
|
|
|
1997-04-29 12:43:55 -03:00
|
|
|
#include "Python.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
#include "cgensupport.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Functions to extract arguments.
|
|
|
|
These needs to know the total number of arguments supplied,
|
|
|
|
since the argument list is a tuple only of there is more than
|
|
|
|
one argument. */
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetObject(args, nargs, i, p_arg)
|
|
|
|
register PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject **p_arg;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
|
|
|
if (nargs != 1) {
|
1997-04-29 12:43:55 -03:00
|
|
|
if (args == NULL || !PyTuple_Check(args) ||
|
|
|
|
nargs != PyTuple_Size(args) ||
|
1990-10-14 09:07:46 -03:00
|
|
|
i < 0 || i >= nargs) {
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
else {
|
1997-04-29 12:43:55 -03:00
|
|
|
args = PyTuple_GetItem(args, i);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (args == NULL) {
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
*p_arg = args;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetLong(args, nargs, i, p_arg)
|
|
|
|
register PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
long *p_arg;
|
|
|
|
{
|
|
|
|
if (nargs != 1) {
|
1997-04-29 12:43:55 -03:00
|
|
|
if (args == NULL || !PyTuple_Check(args) ||
|
|
|
|
nargs != PyTuple_Size(args) ||
|
1990-10-14 09:07:46 -03:00
|
|
|
i < 0 || i >= nargs) {
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
args = PyTuple_GetItem(args, i);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
if (args == NULL || !PyInt_Check(args)) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
*p_arg = PyInt_AsLong(args);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetShort(args, nargs, i, p_arg)
|
|
|
|
register PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
short *p_arg;
|
|
|
|
{
|
|
|
|
long x;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (!PyArg_GetLong(args, nargs, i, &x))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1997-04-11 17:37:35 -03:00
|
|
|
*p_arg = (short) x;
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
extractdouble(v, p_arg)
|
1997-04-29 12:43:55 -03:00
|
|
|
register PyObject *v;
|
1990-10-14 09:07:46 -03:00
|
|
|
double *p_arg;
|
|
|
|
{
|
|
|
|
if (v == NULL) {
|
|
|
|
/* Fall through to error return at end of function */
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyFloat_Check(v)) {
|
|
|
|
*p_arg = PyFloat_AS_DOUBLE((PyFloatObject *)v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyInt_Check(v)) {
|
|
|
|
*p_arg = PyInt_AS_LONG((PyIntObject *)v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyLong_Check(v)) {
|
|
|
|
*p_arg = PyLong_AsDouble(v);
|
1991-07-27 18:34:00 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
extractfloat(v, p_arg)
|
1997-04-29 12:43:55 -03:00
|
|
|
register PyObject *v;
|
1990-10-14 09:07:46 -03:00
|
|
|
float *p_arg;
|
|
|
|
{
|
|
|
|
if (v == NULL) {
|
|
|
|
/* Fall through to error return at end of function */
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyFloat_Check(v)) {
|
|
|
|
*p_arg = (float) PyFloat_AS_DOUBLE((PyFloatObject *)v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyInt_Check(v)) {
|
|
|
|
*p_arg = (float) PyInt_AS_LONG((PyIntObject *)v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyLong_Check(v)) {
|
|
|
|
*p_arg = (float) PyLong_AsDouble(v);
|
1991-07-27 18:34:00 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetFloat(args, nargs, i, p_arg)
|
|
|
|
register PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
float *p_arg;
|
|
|
|
{
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject *v;
|
1990-10-14 09:07:46 -03:00
|
|
|
float x;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (!PyArg_GetObject(args, nargs, i, &v))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
|
|
|
if (!extractfloat(v, &x))
|
|
|
|
return 0;
|
|
|
|
*p_arg = x;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetString(args, nargs, i, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
string *p_arg;
|
|
|
|
{
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject *v;
|
|
|
|
if (!PyArg_GetObject(args, nargs, i, &v))
|
1992-04-06 09:34:45 -03:00
|
|
|
return 0;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (!PyString_Check(v)) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
*p_arg = PyString_AsString(v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetChar(args, nargs, i, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
char *p_arg;
|
|
|
|
{
|
|
|
|
string x;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (!PyArg_GetString(args, nargs, i, &x))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
|
|
|
if (x[0] == '\0' || x[1] != '\0') {
|
|
|
|
/* Not exactly one char */
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
*p_arg = x[0];
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetLongArraySize(args, nargs, i, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
long *p_arg;
|
|
|
|
{
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject *v;
|
|
|
|
if (!PyArg_GetObject(args, nargs, i, &v))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (PyTuple_Check(v)) {
|
|
|
|
*p_arg = PyTuple_Size(v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
if (PyList_Check(v)) {
|
|
|
|
*p_arg = PyList_Size(v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetShortArraySize(args, nargs, i, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
short *p_arg;
|
|
|
|
{
|
|
|
|
long x;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (!PyArg_GetLongArraySize(args, nargs, i, &x))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1997-04-11 17:37:35 -03:00
|
|
|
*p_arg = (short) x;
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX The following four are too similar. Should share more code. */
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetLongArray(args, nargs, i, n, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
int n;
|
|
|
|
long *p_arg; /* [n] */
|
|
|
|
{
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject *v, *w;
|
|
|
|
if (!PyArg_GetObject(args, nargs, i, &v))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (PyTuple_Check(v)) {
|
|
|
|
if (PyTuple_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyTuple_GetItem(v, i);
|
|
|
|
if (!PyInt_Check(w)) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
p_arg[i] = PyInt_AsLong(w);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyList_Check(v)) {
|
|
|
|
if (PyList_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyList_GetItem(v, i);
|
|
|
|
if (!PyInt_Check(w)) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
p_arg[i] = PyInt_AsLong(w);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetShortArray(args, nargs, i, n, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
int n;
|
|
|
|
short *p_arg; /* [n] */
|
|
|
|
{
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject *v, *w;
|
|
|
|
if (!PyArg_GetObject(args, nargs, i, &v))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (PyTuple_Check(v)) {
|
|
|
|
if (PyTuple_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyTuple_GetItem(v, i);
|
|
|
|
if (!PyInt_Check(w)) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
p_arg[i] = (short) PyInt_AsLong(w);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyList_Check(v)) {
|
|
|
|
if (PyList_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyList_GetItem(v, i);
|
|
|
|
if (!PyInt_Check(w)) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
p_arg[i] = (short) PyInt_AsLong(w);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetDoubleArray(args, nargs, i, n, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
int n;
|
|
|
|
double *p_arg; /* [n] */
|
|
|
|
{
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject *v, *w;
|
|
|
|
if (!PyArg_GetObject(args, nargs, i, &v))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (PyTuple_Check(v)) {
|
|
|
|
if (PyTuple_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyTuple_GetItem(v, i);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!extractdouble(w, &p_arg[i]))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyList_Check(v)) {
|
|
|
|
if (PyList_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyList_GetItem(v, i);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!extractdouble(w, &p_arg[i]))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-04-29 12:43:55 -03:00
|
|
|
PyArg_GetFloatArray(args, nargs, i, n, p_arg)
|
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
int nargs, i;
|
|
|
|
int n;
|
|
|
|
float *p_arg; /* [n] */
|
|
|
|
{
|
1997-04-29 12:43:55 -03:00
|
|
|
PyObject *v, *w;
|
|
|
|
if (!PyArg_GetObject(args, nargs, i, &v))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1997-04-29 12:43:55 -03:00
|
|
|
if (PyTuple_Check(v)) {
|
|
|
|
if (PyTuple_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyTuple_GetItem(v, i);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!extractfloat(w, &p_arg[i]))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
1997-04-29 12:43:55 -03:00
|
|
|
else if (PyList_Check(v)) {
|
|
|
|
if (PyList_Size(v) != n) {
|
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
1997-04-29 12:43:55 -03:00
|
|
|
w = PyList_GetItem(v, i);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!extractfloat(w, &p_arg[i]))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
1997-04-29 12:43:55 -03:00
|
|
|
return PyErr_BadArgument();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
}
|