2019-03-31 23:23:04 +01:00
|
|
|
#include <Rcpp.h>
|
|
|
|
|
|
|
|
#undef Realloc
|
|
|
|
#undef Malloc
|
|
|
|
#undef Free
|
|
|
|
#include <yapi.hh>
|
|
|
|
|
|
|
|
#include <vector>
|
2019-04-02 10:27:37 +01:00
|
|
|
#include <string>
|
2019-03-31 23:23:04 +01:00
|
|
|
|
|
|
|
#include "real.h"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace Rcpp;
|
|
|
|
|
2019-04-02 10:27:37 +01:00
|
|
|
class yap4r {
|
2019-03-31 23:23:04 +01:00
|
|
|
|
|
|
|
YAPEngine *yap;
|
|
|
|
YAPQuery *q;
|
|
|
|
std::vector<YAPTerm> args;
|
|
|
|
bool failed;
|
|
|
|
|
2019-04-03 15:04:24 +01:00
|
|
|
|
2019-03-31 23:23:04 +01:00
|
|
|
public:
|
2019-04-03 15:04:24 +01:00
|
|
|
|
|
|
|
SEXP qsexp;
|
2019-04-02 10:27:37 +01:00
|
|
|
yap4r();
|
2019-04-03 15:04:24 +01:00
|
|
|
bool query(std::string p_name, GenericVector sexps=R_NilValue, std::string p_module="user");
|
2019-04-02 10:27:37 +01:00
|
|
|
bool more();
|
|
|
|
bool done();
|
|
|
|
SEXP peek(int i);
|
2019-04-03 15:04:24 +01:00
|
|
|
bool compile(std::string s);
|
|
|
|
bool library(std::string s);
|
2019-04-02 10:27:37 +01:00
|
|
|
};
|
2019-04-03 15:04:24 +01:00
|
|
|
|
2019-04-02 10:27:37 +01:00
|
|
|
yap4r::yap4r() {
|
2019-03-31 23:23:04 +01:00
|
|
|
YAPEngineArgs *yargs = new YAPEngineArgs();
|
|
|
|
yap = new YAPEngine(yargs);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-04-02 10:27:37 +01:00
|
|
|
|
|
|
|
|
2019-04-03 15:04:24 +01:00
|
|
|
bool yap4r::query(std::string p_name, GenericVector sexps, std::string p_module) {
|
2019-03-31 23:23:04 +01:00
|
|
|
if (q) {
|
|
|
|
q->close();
|
2019-04-03 10:39:22 +01:00
|
|
|
q = nullptr;
|
2019-03-31 23:23:04 +01:00
|
|
|
}
|
2019-04-03 15:04:24 +01:00
|
|
|
yhandle_t t;
|
|
|
|
arity_t arity;
|
|
|
|
if (sexps.isNULL()) {
|
|
|
|
YAPTerm qt = YAPAtomTerm(p_name.c_str());
|
|
|
|
q = new YAPQuery(qt);
|
|
|
|
t =qt.handle();
|
|
|
|
} else {
|
|
|
|
arity = sexps.length();
|
|
|
|
std::vector<YAPTerm> args = std::vector<YAPTerm>();
|
2019-04-02 10:27:37 +01:00
|
|
|
yhandle_t sls = Yap_NewHandles(sexps.length());
|
|
|
|
for (int i=0; i<sexps.length();i++) {
|
|
|
|
if (!sexp_to_pl(sls+i, sexps[i]))
|
|
|
|
return false;
|
2019-04-03 15:04:24 +01:00
|
|
|
args.push_back( YAPTerm(Yap_GetFromSlot(sls+i)) );
|
2019-04-02 10:27:37 +01:00
|
|
|
}
|
2019-04-03 15:04:24 +01:00
|
|
|
YAPFunctor f= YAPFunctor(p_name.c_str(), arity);
|
|
|
|
YAPAtomTerm mod = YAPAtomTerm(p_module.c_str());
|
|
|
|
t = YAPApplTerm(p_name.c_str(),args.data()).handle();
|
2019-04-03 10:39:22 +01:00
|
|
|
q = new YAPQuery(f,mod,args.data());
|
|
|
|
}
|
|
|
|
if (q == nullptr)
|
|
|
|
return false;
|
|
|
|
bool rc = q->next();
|
|
|
|
if (!rc) {
|
|
|
|
failed = true;
|
|
|
|
q = nullptr;
|
|
|
|
}
|
2019-04-03 15:04:24 +01:00
|
|
|
if(rc)
|
|
|
|
qsexp = term_to_sexp(t, false);
|
|
|
|
|
|
|
|
return rc;
|
2019-04-02 10:27:37 +01:00
|
|
|
}
|
2019-03-31 23:23:04 +01:00
|
|
|
|
2019-04-03 15:04:24 +01:00
|
|
|
bool yap4r::compile(std::string s) {
|
|
|
|
YAPTerm fs[1];
|
|
|
|
fs[0] = YAPAtomTerm(s.c_str());
|
|
|
|
return yap->mgoal(YAPApplTerm("compile",fs).term(), USER_MODULE);
|
|
|
|
|
|
|
|
}
|
|
|
|
bool yap4r::library(std::string s) {
|
|
|
|
YAPTerm fs[1], l[1];
|
|
|
|
l[0] = YAPAtomTerm(s.c_str());
|
|
|
|
fs[0] = YAPApplTerm("library", l);
|
|
|
|
return yap->mgoal(YAPApplTerm("compile",fs).term(), USER_MODULE);
|
|
|
|
|
|
|
|
}
|
2019-04-02 10:27:37 +01:00
|
|
|
|
|
|
|
bool yap4r::more() {
|
2019-03-31 23:23:04 +01:00
|
|
|
bool rc = true;
|
|
|
|
if (failed)
|
|
|
|
return false;
|
|
|
|
if (q)
|
2019-04-02 10:27:37 +01:00
|
|
|
rc = q->next();
|
2019-03-31 23:23:04 +01:00
|
|
|
if (!rc) {
|
|
|
|
failed = true;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2019-04-02 10:27:37 +01:00
|
|
|
|
|
|
|
bool yap4r::done() {
|
|
|
|
|
2019-03-31 23:23:04 +01:00
|
|
|
if (failed)
|
|
|
|
return false;
|
|
|
|
if (q)
|
2019-04-02 10:27:37 +01:00
|
|
|
q->cut();
|
2019-03-31 23:23:04 +01:00
|
|
|
q = NULL;
|
2019-04-02 10:27:37 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-31 23:23:04 +01:00
|
|
|
|
2019-04-02 10:27:37 +01:00
|
|
|
SEXP yap4r::peek(int i) {
|
2019-03-31 23:23:04 +01:00
|
|
|
if (failed || q==nullptr)
|
|
|
|
return R_MissingArg;
|
2019-04-03 15:04:24 +01:00
|
|
|
if (i==0)
|
|
|
|
return qsexp;
|
2019-04-02 10:27:37 +01:00
|
|
|
return term_to_sexp(Yap_InitSlot(Yap_XREGS[i]), false);
|
|
|
|
}
|
2019-03-31 23:23:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
RCPP_MODULE(mod_yap4r) {
|
2019-04-02 10:27:37 +01:00
|
|
|
class_<yap4r>( "yap4r" )
|
|
|
|
.constructor("create an object encapsulating a Prolog engine")
|
|
|
|
.method( "query", &yap4r::query, "create an active query within the engine")
|
|
|
|
.method( "more", &yap4r::more, "ask for an extra solution")
|
|
|
|
.method( "done", &yap4r::done, "terminate the query")
|
2019-04-03 15:04:24 +01:00
|
|
|
.method( "compile", &yap4r::compile, "compile the file")
|
|
|
|
.method( "library", &yap4r::library, "compile the library")
|
2019-04-02 10:27:37 +01:00
|
|
|
.method( "peek", &yap4r::peek, "load arg[i] into R")
|
|
|
|
;
|
2019-03-31 23:23:04 +01:00
|
|
|
}
|