This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/swig/yap.i

354 lines
8.7 KiB
OpenEdge ABL
Raw Normal View History

2014-04-28 11:57:09 +01:00
/* example.i */
2016-09-21 20:29:31 +01:00
%module(directors = "1") yap
2014-04-28 11:57:09 +01:00
2016-09-21 20:29:31 +01:00
// Language independent exception handler
%include exception.i
2016-07-31 17:36:51 +01:00
%include stdint.i
%ignore *::operator[];
class YAPPredicate;
class YAPEngine;
#define arity_t uintptr_t
#ifdef SWIGPYTHON
2016-07-31 17:36:51 +01:00
%typemap(out) YAPTerm {
2016-09-21 20:29:31 +01:00
if ($1.handle() == 0) {
return NULL;
2016-07-31 17:36:51 +01:00
}
2016-09-21 20:29:31 +01:00
}
%extend(out) YAPTerm{YAPTerm & __getitem__(size_t i){Term t0 = $self->term();
if (IsApplTerm(t0)) {
Functor f = FunctorOfTerm(t0);
if (!IsExtensionFunctor(f))
return *new YAPTerm(ArgOfTerm(i + 1, t0));
} else if (IsPairTerm(t0)) {
if (i == 0)
return *new YAPTerm(HeadOfTerm(t0));
else if (i == 1)
return *new YAPTerm(TailOfTerm(t0));
}
return *new YAPTerm();
}
}
2016-07-31 17:36:51 +01:00
%typemap(out) YAPIntegerTerm {
Term t = $1.term();
Int j = IntegerOfTerm(t);
#if PY_MAJOR_VERSION < 3
return PyInt_FromLong(j);
#else
return PyLong_FromLong(j);
#endif
2016-09-21 20:29:31 +01:00
}
2016-07-31 17:36:51 +01:00
%typemap(out) YAPFloatTerm {
Term t = $1.term();
2016-09-21 20:29:31 +01:00
Int double j = FloatOfTerm(t);
2016-07-31 17:36:51 +01:00
return PyFloat_FromDouble(j);
2016-09-21 20:29:31 +01:00
}
2016-07-31 17:36:51 +01:00
// translate well-known names and existing
// Python symbols
// Everthing else let wrapped.
// as a term
%typemap(out) YAPAtomTerm {
2016-09-21 20:29:31 +01:00
const char *s = RepAtom(AtomOfTerm($1.term()))->StrOfAE;
2016-07-31 17:36:51 +01:00
PyObject *p;
2016-09-21 20:29:31 +01:00
if ((p = AtomToPy(s))) {
2016-07-31 17:36:51 +01:00
return p;
}
2016-09-21 20:29:31 +01:00
}
2016-07-31 17:36:51 +01:00
// translate lists as Python Lists
// Python symbols
// Everthing else let wrapped.
// as a term
%typemap(out) YAPListTerm {
2016-09-21 20:29:31 +01:00
Term l = $1.term(), *end;
2016-07-31 17:36:51 +01:00
PyObject *list;
2016-09-21 20:29:31 +01:00
Int len = Yap_SkipList(&l, &end);
$result = list = PyList_New(len);
for (Int i = 0; i < len; i++) {
2016-07-31 17:36:51 +01:00
Term a = HeadOfTerm(l);
2016-09-21 20:29:31 +01:00
YAPTerm *argp1 = new YAPTerm(a);
PyObject *obj0 =
SWIG_NewPointerObj(SWIG_as_voidptr(argp1), SWIGTYPE_p_YAPTerm, 0 | 0);
2016-07-31 17:36:51 +01:00
l = TailOfTerm(l);
2016-09-21 20:29:31 +01:00
PyList_SetItem(list, i, obj0);
2016-07-31 17:36:51 +01:00
}
return list;
}
2016-09-21 20:29:31 +01:00
// Language independent exception handler
2016-07-31 17:36:51 +01:00
2016-09-23 03:53:42 +01:00
%exception next {
2016-07-31 17:36:51 +01:00
try {
$action
2016-09-23 03:53:42 +01:00
} catch (YAPError &e) {
yap_error_number en = e.getID();
PyObject *pyerr = PyExc_RuntimeError;
LOCAL_Error_TYPE = YAP_NO_ERROR;
2016-09-21 20:29:31 +01:00
switch (e.getErrorClass()) {
case YAPC_NO_ERROR:
break;
2016-09-23 07:21:42 +01:00
/// bad domain, "first argument often is the predicate.
2016-09-21 20:29:31 +01:00
case DOMAIN_ERROR: {
switch (en) {
case DOMAIN_ERROR_OUT_OF_RANGE:
case DOMAIN_ERROR_NOT_LESS_THAN_ZERO:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_IndexError;
2016-09-21 20:29:31 +01:00
break;
case DOMAIN_ERROR_CLOSE_OPTION:
case DOMAIN_ERROR_ENCODING:
case DOMAIN_ERROR_PROLOG_FLAG:
case DOMAIN_ERROR_ABSOLUTE_FILE_NAME_OPTION:
case DOMAIN_ERROR_READ_OPTION:
case DOMAIN_ERROR_SET_STREAM_OPTION:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_KeyError;
2016-09-21 20:29:31 +01:00
break;
case DOMAIN_ERROR_FILE_ERRORS:
case DOMAIN_ERROR_FILE_TYPE:
case DOMAIN_ERROR_IO_MODE:
case DOMAIN_ERROR_SOURCE_SINK:
case DOMAIN_ERROR_STREAM_POSITION:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_IOError;
2016-09-21 20:29:31 +01:00
break;
default:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_ValueError;
2016-07-31 17:36:51 +01:00
}
2016-09-21 20:29:31 +01:00
} break;
/// bad arithmetic
case EVALUATION_ERROR: {
switch (en) {
case EVALUATION_ERROR_FLOAT_OVERFLOW:
case EVALUATION_ERROR_INT_OVERFLOW:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_OverflowError;
2016-09-21 20:29:31 +01:00
break;
case EVALUATION_ERROR_FLOAT_UNDERFLOW:
case EVALUATION_ERROR_UNDERFLOW:
case EVALUATION_ERROR_ZERO_DIVISOR:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_ArithmeticError;
2016-09-21 20:29:31 +01:00
break;
default:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_RuntimeError;
2016-09-21 20:29:31 +01:00
}
} break;
/// missing object (I/O mostly)
case EXISTENCE_ERROR:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_NotImplementedError;
2016-09-21 20:29:31 +01:00
break;
/// should be bound
case INSTANTIATION_ERROR_CLASS:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_RuntimeError;
2016-09-21 20:29:31 +01:00
break;
/// bad access, I/O
case PERMISSION_ERROR: {
switch (en) {
case PERMISSION_ERROR_INPUT_BINARY_STREAM:
case PERMISSION_ERROR_INPUT_PAST_END_OF_STREAM:
case PERMISSION_ERROR_INPUT_STREAM:
case PERMISSION_ERROR_INPUT_TEXT_STREAM:
case PERMISSION_ERROR_OPEN_SOURCE_SINK:
case PERMISSION_ERROR_OUTPUT_BINARY_STREAM:
case PERMISSION_ERROR_REPOSITION_STREAM:
case PERMISSION_ERROR_OUTPUT_STREAM:
case PERMISSION_ERROR_OUTPUT_TEXT_STREAM:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_OverflowError;
2016-09-21 20:29:31 +01:00
break;
default:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_RuntimeError;
2016-09-21 20:29:31 +01:00
}
} break;
/// something that could not be represented into a type
case REPRESENTATION_ERROR:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_RuntimeError;
2016-09-21 20:29:31 +01:00
break;
/// not enough ....
case RESOURCE_ERROR:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_RuntimeError;
2016-09-21 20:29:31 +01:00
break;
/// bad text
case SYNTAX_ERROR_CLASS:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_SyntaxError;
2016-09-21 20:29:31 +01:00
break;
/// OS or internal
case SYSTEM_ERROR_CLASS:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_RuntimeError;
2016-09-21 20:29:31 +01:00
break;
/// bad typing
case TYPE_ERROR:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_TypeError;
2016-09-21 20:29:31 +01:00
break;
/// should be unbound
case UNINSTANTIATION_ERROR_CLASS:
2016-09-23 03:53:42 +01:00
pyerr = PyExc_RuntimeError;
2016-09-21 20:29:31 +01:00
break;
/// escape hatch
default:
break;
}
2016-09-23 03:53:42 +01:00
PyErr_SetString(pyerr, e.text());
2016-09-23 07:21:42 +01:00
}
2016-07-31 17:36:51 +01:00
}
2016-09-21 20:29:31 +01:00
#else
// Language independent exception handler
%include exception.i
%exception {
2016-07-31 17:36:51 +01:00
try {
$action
2016-09-21 20:29:31 +01:00
} catch (YAPError e) {
2016-09-23 03:53:42 +01:00
yap_error_number en = e.getID();
LOCAL_ERROR_Type = YAP_NO_ERROR;
2016-09-21 20:29:31 +01:00
switch (e.getErrorClass()) {
case YAPC_NO_ERROR:
break;
/// bad domain, "first argument often is the predicate.
case DOMAIN_ERROR: {
switch (en) {
case DOMAIN_ERROR_OUT_OF_RANGE:
case DOMAIN_ERROR_NOT_LESS_THAN_ZERO:
SWIG_exception(SWIG_IndexError, e.text());
break;
case DOMAIN_ERROR_CLOSE_OPTION:
case DOMAIN_ERROR_ENCODING:
case DOMAIN_ERROR_PROLOG_FLAG:
case DOMAIN_ERROR_ABSOLUTE_FILE_NAME_OPTION:
case DOMAIN_ERROR_READ_OPTION:
case DOMAIN_ERROR_SET_STREAM_OPTION:
SWIG_exception(SWIG_AttributeError, e.text());
break;
case DOMAIN_ERROR_FILE_ERRORS:
case DOMAIN_ERROR_FILE_TYPE:
case DOMAIN_ERROR_IO_MODE:
case DOMAIN_ERROR_SOURCE_SINK:
case DOMAIN_ERROR_STREAM_POSITION:
SWIG_exception(SWIG_IOError, e.text());
break;
default:
SWIG_exception(SWIG_ValueError, e.text());
}
} break;
/// bad arithmetic
case EVALUATION_ERROR: {
switch (en) {
case EVALUATION_ERROR_FLOAT_OVERFLOW:
case EVALUATION_ERROR_FLOAT_UNDERFLOW:
case EVALUATION_ERROR_INT_OVERFLOW:
case EVALUATION_ERROR_UNDERFLOW:
SWIG_exception(SWIG_OverflowError, e.text());
break;
case EVALUATION_ERROR_ZERO_DIVISOR:
SWIG_exception(SWIG_DivisionByZero, e.text());
break;
default:
SWIG_exception(SWIG_RuntimeError, e.text());
2016-07-31 17:36:51 +01:00
}
2016-09-21 20:29:31 +01:00
} break;
/// missing object (I/O mostly)
case EXISTENCE_ERROR:
SWIG_exception(SWIG_RuntimeError, e.text());
break;
/// should be bound
case INSTANTIATION_ERROR_CLASS:
SWIG_exception(SWIG_RuntimeError, e.text());
break;
/// bad access, I/O
case PERMISSION_ERROR: {
switch (en) {
case PERMISSION_ERROR_INPUT_BINARY_STREAM:
case PERMISSION_ERROR_INPUT_PAST_END_OF_STREAM:
case PERMISSION_ERROR_INPUT_STREAM:
case PERMISSION_ERROR_INPUT_TEXT_STREAM:
case PERMISSION_ERROR_OPEN_SOURCE_SINK:
case PERMISSION_ERROR_OUTPUT_BINARY_STREAM:
case PERMISSION_ERROR_REPOSITION_STREAM:
case PERMISSION_ERROR_OUTPUT_STREAM:
case PERMISSION_ERROR_OUTPUT_TEXT_STREAM:
SWIG_exception(SWIG_OverflowError, e.text());
break;
default:
SWIG_exception(SWIG_RuntimeError, e.text());
}
} break;
/// something that could not be represented into a type
case REPRESENTATION_ERROR:
SWIG_exception(SWIG_RuntimeError, e.text());
break;
/// not enough ....
case RESOURCE_ERROR:
SWIG_exception(SWIG_RuntimeError, e.text());
break;
/// bad text
case SYNTAX_ERROR_CLASS:
SWIG_exception(SWIG_SyntaxError, e.text());
break;
/// OS or internal
case SYSTEM_ERROR_CLASS:
SWIG_exception(SWIG_RuntimeError, e.text());
break;
/// bad typing
case TYPE_ERROR:
SWIG_exception(SWIG_TypeError, e.text());
break;
/// should be unbound
case UNINSTANTIATION_ERROR_CLASS:
SWIG_exception(SWIG_RuntimeError, e.text());
break;
/// escape hatch
default:
break;
}
2016-07-31 17:36:51 +01:00
}
}
2016-09-21 20:29:31 +01:00
#endif
2016-07-31 17:36:51 +01:00
%{
2016-09-21 20:29:31 +01:00
/* Put header files here or function declarations like below */
2015-04-13 13:28:17 +01:00
2014-06-11 19:31:24 +01:00
#define YAP_CPP_INTERFACE 1
2015-04-13 13:28:17 +01:00
2014-04-29 11:49:09 +01:00
#include "yapi.hh"
2014-04-28 11:57:09 +01:00
2016-09-21 20:29:31 +01:00
extern "C" {
2015-02-07 01:11:52 +00:00
2014-06-11 19:31:24 +01:00
#if THREADS
#define Yap_regp regcache
#endif
2016-09-21 20:29:31 +01:00
// we cannot consult YapInterface.h, that conflicts with what we
// declare, though
// it shouldn't
}
2015-04-13 13:28:17 +01:00
2016-09-21 20:29:31 +01:00
%}
2015-04-13 13:28:17 +01:00
2016-09-21 20:29:31 +01:00
/* turn on director wrapping Callback */
2014-06-11 19:31:24 +01:00
%feature("director") YAPCallback;
2015-04-13 13:28:17 +01:00
2015-07-06 12:04:42 +01:00
// %include "yapi.hh"
2014-04-28 11:57:09 +01:00
2015-02-09 01:53:28 +00:00
%include "yapa.hh"
2016-09-21 20:29:31 +01:00
%include "yapie.hh"
2015-02-09 01:53:28 +00:00
2016-09-21 20:29:31 +01:00
%include "yapt.hh"
2016-07-31 17:36:51 +01:00
2016-09-21 20:29:31 +01:00
%include "yapdb.hh"
2016-07-31 17:36:51 +01:00
2016-09-21 20:29:31 +01:00
%include "yapq.hh"
2016-07-31 17:36:51 +01:00
%init %{
#ifdef SWIGPYTHON
init_python();
2014-06-22 17:35:05 +01:00
#endif
2016-09-21 20:29:31 +01:00
%}