2016-07-31 16:09:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
#include "python.h"
|
|
|
|
|
2016-10-16 23:18:51 +01:00
|
|
|
PyObject *yap_to_python(YAP_Term t, bool eval) {
|
2016-12-10 07:01:10 +00:00
|
|
|
term_t yt = YAP_InitSlot(t);
|
2016-10-16 23:18:51 +01:00
|
|
|
PyObject *o = term_to_python(yt, eval);
|
|
|
|
PL_reset_term_refs(yt);
|
|
|
|
return o;
|
|
|
|
}
|
2016-07-31 16:09:21 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* term_to_python translates and evaluates from Prolog to Python
|
|
|
|
*
|
|
|
|
* @param t handle to Prolog term
|
2016-10-16 23:18:51 +01:00
|
|
|
* @param t whether should try to evaluate evaluables.
|
2016-07-31 16:09:21 +01:00
|
|
|
*
|
|
|
|
* @return a Python object descriptor or NULL if failed
|
|
|
|
*/
|
|
|
|
PyObject *term_to_python(term_t t, bool eval) {
|
2016-12-10 07:01:10 +00:00
|
|
|
// Yap_DebugPlWritep(YAP_GetFromSlot(t)); fprintf(stderr, " here I
|
2016-07-31 16:09:21 +01:00
|
|
|
YAP_Term yt = YAP_GetFromSlot(t);
|
|
|
|
switch (PL_term_type(t)) {
|
|
|
|
case PL_VARIABLE: {
|
2016-12-10 07:01:10 +00:00
|
|
|
YAP_Term i = YAP_MkIntTerm(t);
|
|
|
|
return term_to_nametuple(
|
|
|
|
"H", 1, YAP_InitSlot(YAP_MkApplTerm(
|
|
|
|
YAP_MkFunctor(YAP_LookupAtom("H"), 1), 1, &i)));
|
2016-07-31 16:09:21 +01:00
|
|
|
};
|
|
|
|
case PL_ATOM: {
|
|
|
|
YAP_Atom at = YAP_AtomOfTerm(yt);
|
|
|
|
const char *s;
|
|
|
|
PyObject *o;
|
|
|
|
PyObject *c = NULL;
|
|
|
|
|
|
|
|
s = YAP_AtomName(at);
|
|
|
|
if (strcmp(s, "true") == 0)
|
|
|
|
return Py_True;
|
|
|
|
if (strcmp(s, "false") == 0)
|
|
|
|
return Py_False;
|
|
|
|
if (strcmp(s, "none") == 0)
|
|
|
|
return Py_None;
|
|
|
|
if (strcmp(s, "[]") == 0)
|
|
|
|
o = PyList_New(0);
|
|
|
|
else if (strcmp(s, "{}") == 0)
|
|
|
|
o = PyDict_New();
|
|
|
|
/* return __main__,s */
|
2016-12-10 07:01:10 +00:00
|
|
|
else if ((o = PyRun_String(s, Py_single_input, PyEval_GetGlobals(),
|
|
|
|
PyEval_GetLocals()))) {
|
2016-09-30 23:11:13 +01:00
|
|
|
Py_IncRef(o);
|
|
|
|
return o;
|
|
|
|
} else if (PyObject_HasAttrString(py_Main, s)) {
|
2016-07-31 16:09:21 +01:00
|
|
|
o = PyObject_GetAttrString(py_Main, s);
|
|
|
|
} else {
|
|
|
|
o = PyUnicode_FromString(s);
|
|
|
|
if (eval)
|
|
|
|
return NULL;
|
|
|
|
if (PyObject_HasAttrString(py_Main, "A"))
|
|
|
|
c = PyObject_GetAttrString(py_Main, "A");
|
|
|
|
if (!c && PyObject_HasAttrString(py_Yapex, "A"))
|
|
|
|
c = PyObject_GetAttrString(py_Yapex, "A");
|
|
|
|
if (!c || !PyCallable_Check(c)) {
|
2016-10-16 23:18:51 +01:00
|
|
|
return o;
|
2016-07-31 16:09:21 +01:00
|
|
|
} else {
|
|
|
|
PyObject *t = PyTuple_New(1);
|
|
|
|
PyTuple_SET_ITEM(t, 0, PyUnicode_FromString(s));
|
|
|
|
o = PyObject_CallObject(c, t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (o) {
|
|
|
|
Py_IncRef(o);
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
} break;
|
|
|
|
case PL_STRING: {
|
2016-08-23 07:00:14 +01:00
|
|
|
char *s = NULL;
|
2016-12-10 07:01:10 +00:00
|
|
|
if (!PL_get_chars(t, &s, REP_UTF8 | CVT_ATOM | CVT_STRING | BUF_MALLOC)) {
|
2016-07-31 16:09:21 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#if PY_MAJOR_VERSION < 3
|
|
|
|
if (proper_ascii_string(s)) {
|
|
|
|
return PyString_FromStringAndSize(s, strlen(s));
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
PyObject *pobj = PyUnicode_DecodeUTF8(s, strlen(s), NULL);
|
|
|
|
// fprintf(stderr, "%s\n", s);
|
2016-10-16 23:18:51 +01:00
|
|
|
free(s);
|
|
|
|
if (pobj) {
|
2016-12-10 07:01:10 +00:00
|
|
|
Py_IncRef(pobj);
|
2016-10-16 23:18:51 +01:00
|
|
|
}
|
2016-07-31 16:09:21 +01:00
|
|
|
return pobj;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case PL_INTEGER: {
|
|
|
|
int64_t j;
|
|
|
|
if (!PL_get_int64_ex(t, &j))
|
|
|
|
return NULL;
|
|
|
|
#if PY_MAJOR_VERSION < 3
|
|
|
|
return PyInt_FromLong(j);
|
|
|
|
#else
|
|
|
|
return PyLong_FromLong(j);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
case PL_FLOAT: {
|
|
|
|
double fl;
|
|
|
|
if (!PL_get_float(t, &fl))
|
|
|
|
return NULL;
|
|
|
|
return PyFloat_FromDouble(fl);
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
term_t tail = PL_new_term_ref(), arg;
|
|
|
|
size_t len, i;
|
|
|
|
if (PL_skip_list(t, tail, &len) && PL_get_nil(tail)) {
|
|
|
|
PyObject *out;
|
|
|
|
|
|
|
|
arg = tail;
|
|
|
|
out = PyList_New(len);
|
|
|
|
if (!out)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (!PL_get_list(t, arg, t)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (PyList_SetItem(out, i, term_to_python(arg, eval)) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
} else {
|
|
|
|
functor_t fun;
|
|
|
|
|
|
|
|
if (!PL_get_functor(t, &fun))
|
|
|
|
return NULL;
|
|
|
|
if (eval)
|
|
|
|
return compound_to_pyeval(t, fun);
|
|
|
|
return compound_to_pytree(t, fun);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *deref_term_to_python(term_t t) {
|
|
|
|
// Yap_DebugPlWrite(YAP_GetFromSlot(t)); fprintf(stderr, " here I
|
|
|
|
// am\n");
|
|
|
|
YAP_Term yt = YAP_GetFromSlot(t);
|
|
|
|
if (YAP_IsVarTerm(yt)) {
|
|
|
|
char s[32];
|
|
|
|
char *o = YAP_WriteBuffer(yt, s, 31, 0);
|
2016-12-10 07:01:10 +00:00
|
|
|
return PyUnicode_FromString(o);
|
2016-07-31 16:09:21 +01:00
|
|
|
}
|
2016-12-10 07:01:10 +00:00
|
|
|
return term_to_python(t, false);
|
2016-07-31 16:09:21 +01:00
|
|
|
}
|