2012-12-17 20:23:03 +00:00
|
|
|
#include <stdio.h>
|
2012-12-28 17:46:11 +00:00
|
|
|
#include <assert.h>
|
2009-02-12 16:39:20 +00:00
|
|
|
#include "Yap.h"
|
2012-12-17 20:23:03 +00:00
|
|
|
#include "YapInterface.h"
|
2009-02-12 16:39:20 +00:00
|
|
|
#include "clause.h"
|
2012-12-27 12:11:14 +00:00
|
|
|
#include "udi_private.h"
|
2012-12-17 20:23:03 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
/* to keep an array with the registered udi indexers */
|
2012-12-17 20:23:03 +00:00
|
|
|
UT_icd udicb_icd = {sizeof(UdiControlBlock), NULL, NULL, NULL};
|
|
|
|
UT_array *indexing_structures;
|
2009-02-12 16:39:20 +00:00
|
|
|
|
2012-12-17 20:23:03 +00:00
|
|
|
/*
|
2013-01-02 11:20:54 +00:00
|
|
|
* Register a new user indexer
|
2012-12-17 20:23:03 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
Yap_UdiRegister(UdiControlBlock cb){
|
|
|
|
/*TODO: check structure integrity and duplicates */
|
|
|
|
utarray_push_back(indexing_structures, &cb);
|
|
|
|
}
|
2009-02-20 15:52:17 +00:00
|
|
|
|
2012-12-17 20:23:03 +00:00
|
|
|
/*
|
|
|
|
* New user indexed predicate:
|
|
|
|
* the first argument is the term.
|
|
|
|
*/
|
2012-12-27 12:11:14 +00:00
|
|
|
static YAP_Int
|
2011-03-07 16:02:55 +00:00
|
|
|
p_new_udi( USES_REGS1 )
|
2009-02-12 16:39:20 +00:00
|
|
|
{
|
2012-12-17 20:23:03 +00:00
|
|
|
Term spec = Deref(ARG1);
|
|
|
|
|
2009-02-12 16:39:20 +00:00
|
|
|
PredEntry *p;
|
2012-12-17 20:23:03 +00:00
|
|
|
UdiInfo blk;
|
|
|
|
int info;
|
|
|
|
|
2009-02-12 21:45:41 +00:00
|
|
|
/* get the predicate from the spec, copied from cdmgr.c */
|
2009-02-12 16:39:20 +00:00
|
|
|
if (IsVarTerm(spec)) {
|
2013-04-17 02:04:53 +01:00
|
|
|
Yap_Error(INSTANTIATION_ERROR,spec,"new user index/1");
|
|
|
|
return FALSE;
|
2009-02-12 16:39:20 +00:00
|
|
|
} else if (!IsApplTerm(spec)) {
|
2013-04-17 02:04:53 +01:00
|
|
|
Yap_Error(TYPE_ERROR_COMPOUND,spec,"new user index/1");
|
|
|
|
return FALSE;
|
2009-02-12 16:39:20 +00:00
|
|
|
} else {
|
2013-04-17 02:04:53 +01:00
|
|
|
Functor fun = FunctorOfTerm(spec);
|
|
|
|
Term tmod = CurrentModule;
|
2012-12-17 20:23:03 +00:00
|
|
|
|
2013-04-17 02:04:53 +01:00
|
|
|
while (fun == FunctorModule) {
|
|
|
|
tmod = ArgOfTerm(1,spec);
|
|
|
|
if (IsVarTerm(tmod) ) {
|
|
|
|
Yap_Error(INSTANTIATION_ERROR, spec, "new user index/1");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (!IsAtomTerm(tmod) ) {
|
|
|
|
Yap_Error(TYPE_ERROR_ATOM, spec, "new user index/1");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
spec = ArgOfTerm(2, spec);
|
|
|
|
fun = FunctorOfTerm(spec);
|
|
|
|
}
|
|
|
|
p = RepPredProp(PredPropByFunc(fun, tmod));
|
2009-02-12 16:39:20 +00:00
|
|
|
}
|
2009-02-20 11:42:48 +00:00
|
|
|
if (!p)
|
2013-04-17 02:04:53 +01:00
|
|
|
return FALSE;
|
2009-02-12 21:45:41 +00:00
|
|
|
/* boring, boring, boring! */
|
2012-12-17 20:23:03 +00:00
|
|
|
if ((p->PredFlags
|
2013-04-17 02:04:53 +01:00
|
|
|
& (DynamicPredFlag|LogUpdatePredFlag|UserCPredFlag|CArgsPredFlag|NumberDBPredFlag|AtomDBPredFlag|TestPredFlag|AsmPredFlag|CPredFlag|BinaryPredFlag))
|
|
|
|
|| (p->ModuleOfPred == PROLOG_MODULE)) {
|
|
|
|
Yap_Error(PERMISSION_ERROR_MODIFY_STATIC_PROCEDURE, spec, "udi/2");
|
|
|
|
return FALSE;
|
2009-02-12 16:39:20 +00:00
|
|
|
}
|
|
|
|
if (p->PredFlags & (DynamicPredFlag|LogUpdatePredFlag|TabledPredFlag)) {
|
2013-04-17 02:04:53 +01:00
|
|
|
Yap_Error(PERMISSION_ERROR_ACCESS_PRIVATE_PROCEDURE, spec, "udi/2");
|
|
|
|
return FALSE;
|
2009-02-12 16:39:20 +00:00
|
|
|
}
|
2012-12-17 20:23:03 +00:00
|
|
|
/* TODO: remove AtomRTree from atom list */
|
|
|
|
|
2009-02-12 21:45:41 +00:00
|
|
|
/* this is the real work */
|
2012-12-17 20:23:03 +00:00
|
|
|
blk = (UdiInfo) Yap_AllocCodeSpace(sizeof(struct udi_info));
|
2012-12-18 18:26:59 +00:00
|
|
|
memset((void *) blk,0, sizeof(struct udi_info));
|
2012-12-17 20:23:03 +00:00
|
|
|
if (!blk) {
|
|
|
|
Yap_Error(OUT_OF_HEAP_ERROR, spec, "new user index/1");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-01-02 11:20:54 +00:00
|
|
|
|
|
|
|
/*Init UdiInfo */
|
2012-12-27 12:11:14 +00:00
|
|
|
utarray_new(blk->args, &arg_icd);
|
2013-01-02 11:20:54 +00:00
|
|
|
utarray_new(blk->clauselist, &cl_icd);
|
2012-12-17 20:23:03 +00:00
|
|
|
blk->p = p;
|
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
/*Now Init args list*/
|
|
|
|
info = p_udi_args_init(spec, p->ArityOfPE, blk);
|
|
|
|
if (!info)
|
|
|
|
{
|
|
|
|
utarray_free(blk->args);
|
|
|
|
utarray_free(blk->clauselist);
|
|
|
|
Yap_FreeCodeSpace((char *) blk);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Push into the hash*/
|
|
|
|
HASH_ADD_UdiInfo(UdiControlBlocks, p, blk);
|
2012-12-17 20:23:03 +00:00
|
|
|
|
2009-02-12 16:39:20 +00:00
|
|
|
p->PredFlags |= UDIPredFlag;
|
2013-01-02 11:20:54 +00:00
|
|
|
|
2009-02-12 16:39:20 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-12-17 20:23:03 +00:00
|
|
|
/*
|
|
|
|
* Here we initialize the arguments indexing
|
|
|
|
*/
|
2013-01-02 11:20:54 +00:00
|
|
|
YAP_Int
|
|
|
|
p_udi_args_init(Term spec, int arity, UdiInfo blk)
|
2012-12-17 20:23:03 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
Term arg;
|
|
|
|
Atom idxtype;
|
2013-01-02 11:20:54 +00:00
|
|
|
UdiControlBlock *cb;
|
2012-12-27 12:11:14 +00:00
|
|
|
struct udi_p_args p_arg;
|
2012-12-17 20:23:03 +00:00
|
|
|
|
2012-12-27 12:11:14 +00:00
|
|
|
for (i = 1; i <= arity; i++) {
|
2012-12-17 20:23:03 +00:00
|
|
|
arg = ArgOfTerm(i,spec);
|
|
|
|
if (IsAtomTerm(arg)) {
|
|
|
|
idxtype = AtomOfTerm(arg);
|
2013-01-02 11:20:54 +00:00
|
|
|
if (idxtype == AtomMinus) //skip this argument
|
2012-12-17 20:23:03 +00:00
|
|
|
continue;
|
2012-12-27 12:11:14 +00:00
|
|
|
p_arg.control = NULL;
|
2013-01-02 11:20:54 +00:00
|
|
|
cb = NULL;
|
|
|
|
while ((cb = (UdiControlBlock *) utarray_next(indexing_structures, cb))) {
|
|
|
|
if (idxtype == (*cb)->decl){
|
2012-12-27 12:11:14 +00:00
|
|
|
p_arg.arg = i;
|
2013-01-02 11:20:54 +00:00
|
|
|
p_arg.control = *cb;
|
|
|
|
p_arg.idxstr = (*cb)->init(spec, i, arity);
|
2012-12-27 12:11:14 +00:00
|
|
|
utarray_push_back(blk->args, &p_arg);
|
2012-12-17 20:23:03 +00:00
|
|
|
}
|
|
|
|
}
|
2013-01-02 11:20:54 +00:00
|
|
|
if (p_arg.control == NULL){ /* not "-" and not found */
|
2012-12-17 20:23:03 +00:00
|
|
|
fprintf(stderr, "Invalid Spec (%s)\n", AtomName(idxtype));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
/*
|
|
|
|
* From now on this is called in several places of yap
|
|
|
|
* when the predicate has the UDIPredFlag
|
|
|
|
* and is what actually triggers the insert/search/abolish of indexing structures
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Init Yap udi interface
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Yap_udi_init(void)
|
|
|
|
{
|
|
|
|
UdiControlBlocks = NULL;
|
|
|
|
|
|
|
|
/*init indexing structures array*/
|
|
|
|
utarray_new(indexing_structures, &udicb_icd);
|
|
|
|
|
|
|
|
Yap_InitCPred("$udi_init", 1, p_new_udi, 0);
|
|
|
|
/* TODO: decide if udi.yap should be loaded automaticaly in init.yap */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* called from cdmgr.c
|
|
|
|
*
|
|
|
|
* for each assert of a udipredicate
|
|
|
|
* to pass info to user structure
|
|
|
|
*/
|
2009-02-12 16:39:20 +00:00
|
|
|
int
|
|
|
|
Yap_new_udi_clause(PredEntry *p, yamop *cl, Term t)
|
|
|
|
{
|
2012-12-18 18:26:59 +00:00
|
|
|
int i;
|
2012-12-27 12:11:14 +00:00
|
|
|
UdiPArg parg;
|
|
|
|
UdiInfo info;
|
2013-01-02 11:20:54 +00:00
|
|
|
YAP_Int index;
|
2012-12-18 18:26:59 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
/* try to find our structure */
|
2012-12-27 12:11:14 +00:00
|
|
|
HASH_FIND_UdiInfo(UdiControlBlocks,p,info);
|
2012-12-17 20:23:03 +00:00
|
|
|
if (!info)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
/* insert into clauselist */
|
2012-12-28 17:46:11 +00:00
|
|
|
utarray_push_back(info->clauselist, &cl);
|
2012-12-18 18:26:59 +00:00
|
|
|
|
2012-12-27 12:11:14 +00:00
|
|
|
for (i = 0; i < utarray_len(info->args) ; i++) {
|
|
|
|
parg = (UdiPArg) utarray_eltptr(info->args,i);
|
2013-01-02 11:20:54 +00:00
|
|
|
index = (YAP_Int) utarray_len(info->clauselist);
|
2012-12-28 17:46:11 +00:00
|
|
|
parg->idxstr = parg->control->insert(parg->idxstr, t,
|
|
|
|
parg->arg,
|
|
|
|
(void *) index);
|
2012-12-18 18:26:59 +00:00
|
|
|
}
|
2012-12-17 20:23:03 +00:00
|
|
|
return TRUE;
|
2009-02-12 16:39:20 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
/* index, called from absmi.c
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* NULL (yap fallback) No usable indexing available
|
|
|
|
*
|
|
|
|
* Yap_FAILCODE() (fail) No result found
|
|
|
|
* Yap_CauseListToClause(cl) 1 solution found
|
|
|
|
* Yap_ClauseListCode(cl) 2+ solutions found
|
|
|
|
*/
|
2009-02-12 16:39:20 +00:00
|
|
|
yamop *
|
|
|
|
Yap_udi_search(PredEntry *p)
|
|
|
|
{
|
2013-01-02 11:20:54 +00:00
|
|
|
int r;
|
2012-12-18 18:26:59 +00:00
|
|
|
struct ClauseList clauselist;
|
2012-12-27 12:11:14 +00:00
|
|
|
UdiPArg parg;
|
|
|
|
UdiInfo info;
|
2012-12-18 18:26:59 +00:00
|
|
|
|
|
|
|
/* find our structure*/
|
2012-12-27 12:11:14 +00:00
|
|
|
HASH_FIND_UdiInfo(UdiControlBlocks,p,info);
|
2013-01-02 11:20:54 +00:00
|
|
|
if (!info || utarray_len(info->args) == 0)
|
2012-12-17 20:23:03 +00:00
|
|
|
return NULL;
|
2012-12-18 18:26:59 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
if (utarray_len(info->args) == 1){ //simple case no intersection needed
|
|
|
|
struct si_callback_h c;
|
2012-12-28 17:46:11 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
c.cl = Yap_ClauseListInit(&clauselist);
|
|
|
|
c.clauselist = info->clauselist;
|
|
|
|
c.pred = info->p;
|
|
|
|
if (!c.cl)
|
|
|
|
return NULL;
|
2012-12-28 17:46:11 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
parg = (UdiPArg) utarray_eltptr(info->args,0);
|
|
|
|
r = parg->control->search(parg->idxstr, parg->arg, si_callback, (void *) &c);
|
|
|
|
Yap_ClauseListClose(c.cl);
|
2012-12-18 18:26:59 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
if (r == -1) {
|
|
|
|
Yap_ClauseListDestroy(c.cl);
|
|
|
|
return NULL;
|
2012-12-18 18:26:59 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
if (Yap_ClauseListCount(c.cl) == 0) {
|
|
|
|
Yap_ClauseListDestroy(c.cl);
|
|
|
|
return Yap_FAILCODE();
|
2012-12-28 17:46:11 +00:00
|
|
|
}
|
2013-01-02 11:20:54 +00:00
|
|
|
} else {//intersection needed using Judy1
|
2013-01-02 12:10:11 +00:00
|
|
|
#ifdef USE_JUDY
|
2013-01-02 11:20:54 +00:00
|
|
|
/*TODO: do more tests to this algorithm*/
|
|
|
|
int i;
|
|
|
|
Pvoid_t tmp = (Pvoid_t) NULL;
|
|
|
|
Pvoid_t result = (Pvoid_t) NULL;
|
|
|
|
Word_t count = 0L;
|
|
|
|
Word_t idx_r = 0L;
|
|
|
|
Word_t idx_tmp = 0L;
|
|
|
|
int rc = 0;
|
|
|
|
yamop **x;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* I will start with the simplest approach
|
|
|
|
* for each index create a set and intersect it with the
|
|
|
|
* next
|
|
|
|
*
|
|
|
|
* In the future it could pay to sort according to index type
|
|
|
|
* to improve intersection part
|
|
|
|
*/
|
|
|
|
for (i = 0; i < utarray_len(info->args) ; i++) {
|
|
|
|
parg = (UdiPArg) utarray_eltptr(info->args,i);
|
2013-01-02 12:10:11 +00:00
|
|
|
r = parg->control->search(parg->idxstr, parg->arg, j1_callback, &tmp);
|
2013-01-02 11:20:54 +00:00
|
|
|
if (r == -1) /*this arg does not prune search*/
|
|
|
|
continue;
|
|
|
|
rc ++;
|
|
|
|
J1C(count, result, 0, -1);
|
|
|
|
if (r == 0) /* this arg gave 0 results -> FAIL*/
|
|
|
|
{
|
|
|
|
if (count > 0) // clear previous result if they exists
|
|
|
|
J1FA(count, result);
|
|
|
|
return Yap_FAILCODE();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count == 0) // first result_set
|
|
|
|
{
|
|
|
|
result = tmp;
|
|
|
|
tmp = (Pvoid_t) NULL;
|
|
|
|
}
|
|
|
|
else /*intersection*/
|
2012-12-28 17:46:11 +00:00
|
|
|
{
|
2013-01-02 11:20:54 +00:00
|
|
|
idx_tmp = 0L;
|
|
|
|
idx_r = 0L;
|
|
|
|
J1F(count, result, idx_r); //succeeds one time at least
|
|
|
|
assert(count > 0);
|
|
|
|
J1F(count, tmp, idx_tmp); //succeeds one time at least
|
|
|
|
assert(count > 0);
|
|
|
|
while (count)
|
2012-12-28 17:46:11 +00:00
|
|
|
{
|
2013-01-02 11:20:54 +00:00
|
|
|
while (idx_r < idx_tmp)
|
|
|
|
{
|
|
|
|
J1U(count, result, idx_r); //does not belong
|
|
|
|
J1N(count, result, idx_r); //next
|
|
|
|
if (! count) break; //end result set
|
|
|
|
}
|
|
|
|
if(idx_r == idx_tmp)
|
|
|
|
{
|
|
|
|
J1N(count, result, idx_r); //next
|
|
|
|
if (! count) break; //end result set
|
|
|
|
J1N(count, tmp, idx_tmp); //next tmp
|
|
|
|
//if (! count) break; //end tmp set will break while
|
|
|
|
}
|
|
|
|
else // (idx_r > idx_tmp)
|
|
|
|
{
|
|
|
|
idx_tmp = idx_r; // fast forward
|
|
|
|
J1F(count, tmp, idx_tmp); // first starting in idx_r
|
|
|
|
//if (! count) break; //end tmp set will break while
|
|
|
|
}
|
2012-12-28 17:46:11 +00:00
|
|
|
}
|
2013-01-02 11:20:54 +00:00
|
|
|
J1F(count, result, idx_r); // first starting in idx_r
|
|
|
|
//clear up the rest
|
|
|
|
while (idx_r > idx_tmp && count) //result has more setted values
|
2012-12-28 17:46:11 +00:00
|
|
|
{
|
2013-01-02 11:20:54 +00:00
|
|
|
J1U(count, result, idx_r); //does not belong
|
2012-12-28 17:46:11 +00:00
|
|
|
J1N(count, result, idx_r); //next
|
|
|
|
}
|
2013-01-02 11:20:54 +00:00
|
|
|
J1FA(count, tmp); //free tmp
|
2012-12-28 17:46:11 +00:00
|
|
|
}
|
2012-12-18 18:26:59 +00:00
|
|
|
}
|
2013-01-02 11:20:54 +00:00
|
|
|
if (rc == 0) /*no search performed*/
|
|
|
|
return NULL;
|
2012-12-18 18:26:59 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
J1C(count, result, 0, -1);
|
|
|
|
if (count == 0) { /*result set empty -> FAIL */
|
|
|
|
J1FA(count, result);
|
|
|
|
return Yap_FAILCODE();
|
|
|
|
}
|
2012-12-28 17:46:11 +00:00
|
|
|
|
2013-01-02 11:20:54 +00:00
|
|
|
/*convert Juddy1 to clauselist*/
|
|
|
|
Yap_ClauseListInit(&clauselist);
|
|
|
|
idx_r = 0L;
|
|
|
|
J1F(count, result, idx_r);
|
|
|
|
while (count)
|
|
|
|
{
|
|
|
|
x = (yamop **) utarray_eltptr(info->clauselist, idx_r - 1);
|
|
|
|
Yap_ClauseListExtend(
|
|
|
|
&clauselist,
|
|
|
|
*x,
|
|
|
|
info->p);
|
|
|
|
J1N(count, result, idx_r);
|
|
|
|
}
|
|
|
|
J1FA(count,result);
|
|
|
|
fprintf(stderr,"J1 used space %d bytes for %d clausules\n",
|
|
|
|
count, Yap_ClauseListCount(&clauselist));
|
|
|
|
Yap_ClauseListClose(&clauselist);
|
2013-01-02 12:10:11 +00:00
|
|
|
#else
|
|
|
|
fprintf(stderr,"Without libJudy only one argument indexed is allowed."
|
|
|
|
"Falling back to Yap Indexing\n");
|
|
|
|
return NULL; //NO Judy Available
|
|
|
|
#endif
|
2012-12-28 17:46:11 +00:00
|
|
|
}
|
2013-01-02 11:20:54 +00:00
|
|
|
|
2012-12-28 17:46:11 +00:00
|
|
|
if (Yap_ClauseListCount(&clauselist) == 1)
|
|
|
|
return Yap_ClauseListToClause(&clauselist);
|
|
|
|
return Yap_ClauseListCode(&clauselist);
|
2009-02-12 16:39:20 +00:00
|
|
|
}
|
|
|
|
|
2012-06-21 16:47:19 +01:00
|
|
|
/* index, called from absmi.c */
|
|
|
|
void
|
|
|
|
Yap_udi_abolish(PredEntry *p)
|
|
|
|
{
|
2012-12-17 20:23:03 +00:00
|
|
|
/* tell the predicate destroy */
|
2012-06-21 16:47:19 +01:00
|
|
|
}
|