UDI: Added Judy1 with support for integer set intersection
This commit is contained in:
parent
e6c2fa30ee
commit
bae26c618b
160
C/udi.c
160
C/udi.c
@ -1,4 +1,6 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <assert.h>
|
||||||
|
#include <Judy.h>
|
||||||
#include "Yap.h"
|
#include "Yap.h"
|
||||||
#include "YapInterface.h"
|
#include "YapInterface.h"
|
||||||
#include "clause.h"
|
#include "clause.h"
|
||||||
@ -82,7 +84,7 @@ p_new_udi( USES_REGS1 )
|
|||||||
Yap_Error(OUT_OF_HEAP_ERROR, spec, "new user index/1");
|
Yap_Error(OUT_OF_HEAP_ERROR, spec, "new user index/1");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
utarray_new(blk->clauselist, &ptr_icd);
|
utarray_new(blk->clauselist, &cl_icd);
|
||||||
utarray_new(blk->args, &arg_icd);
|
utarray_new(blk->args, &arg_icd);
|
||||||
blk->p = p;
|
blk->p = p;
|
||||||
HASH_ADD_UdiInfo(UdiControlBlocks, p, blk);
|
HASH_ADD_UdiInfo(UdiControlBlocks, p, blk);
|
||||||
@ -145,6 +147,8 @@ Yap_new_udi_clause(PredEntry *p, yamop *cl, Term t)
|
|||||||
int i;
|
int i;
|
||||||
UdiPArg parg;
|
UdiPArg parg;
|
||||||
UdiInfo info;
|
UdiInfo info;
|
||||||
|
int index;
|
||||||
|
// yamop **x;
|
||||||
|
|
||||||
/* try to find our structure*/
|
/* try to find our structure*/
|
||||||
HASH_FIND_UdiInfo(UdiControlBlocks,p,info);
|
HASH_FIND_UdiInfo(UdiControlBlocks,p,info);
|
||||||
@ -152,64 +156,168 @@ Yap_new_udi_clause(PredEntry *p, yamop *cl, Term t)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
/*insert into clauselist will be used latter*/
|
/*insert into clauselist will be used latter*/
|
||||||
utarray_push_back(info->clauselist,(void *) cl);
|
utarray_push_back(info->clauselist, &cl);
|
||||||
|
|
||||||
for (i = 0; i < utarray_len(info->args) ; i++) {
|
for (i = 0; i < utarray_len(info->args) ; i++) {
|
||||||
parg = (UdiPArg) utarray_eltptr(info->args,i);
|
parg = (UdiPArg) utarray_eltptr(info->args,i);
|
||||||
//fprintf(stderr,"call insert\n");
|
index = utarray_len(info->clauselist);
|
||||||
parg->idxstr = parg->control->insert(parg->idxstr, t, parg->arg, (void *)cl);
|
// x = (yamop **) utarray_eltptr(info->clauselist, index);
|
||||||
|
// fprintf(stderr,"Insert (%p %p %d) %d - %p %p %p\n",
|
||||||
|
// info->clauselist,info->clauselist->d,info->clauselist->icd.sz,
|
||||||
|
// index,
|
||||||
|
// cl, *x, *((yamop **) utarray_eltptr(info->clauselist, index)));
|
||||||
|
parg->idxstr = parg->control->insert(parg->idxstr, t,
|
||||||
|
parg->arg,
|
||||||
|
(void *) index);
|
||||||
//info->cb = info->functions->insert(t, info->cb, (void *)cl);
|
//info->cb = info->functions->insert(t, info->cb, (void *)cl);
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int callback(void *key, void *data, void *arg)
|
||||||
|
{
|
||||||
|
int r;
|
||||||
|
Pvoid_t *array = (Pvoid_t *) arg;
|
||||||
|
// fprintf(stderr,"Found %p %d",data, (int) data);
|
||||||
|
J1S(r, *array, (int) data);
|
||||||
|
if (r == JERR)
|
||||||
|
return FALSE;
|
||||||
|
J1C(r, *array, 0 , -1);
|
||||||
|
// fprintf(stderr," (%d)\n",r);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
/* index, called from absmi.c */
|
/* index, called from absmi.c */
|
||||||
yamop *
|
yamop *
|
||||||
Yap_udi_search(PredEntry *p)
|
Yap_udi_search(PredEntry *p)
|
||||||
{
|
{
|
||||||
int i, r = -1;
|
int i, r;
|
||||||
struct ClauseList clauselist;
|
struct ClauseList clauselist;
|
||||||
struct CallbackM cm;
|
// struct CallbackM cm;
|
||||||
callback_m_t c;
|
// callback_m_t c;
|
||||||
UdiPArg parg;
|
UdiPArg parg;
|
||||||
UdiInfo info;
|
UdiInfo info;
|
||||||
|
Pvoid_t tmp, result;
|
||||||
|
Word_t count;
|
||||||
|
Word_t idx_r = 0L;
|
||||||
|
yamop **x;
|
||||||
|
|
||||||
/* find our structure*/
|
/* find our structure*/
|
||||||
HASH_FIND_UdiInfo(UdiControlBlocks,p,info);
|
HASH_FIND_UdiInfo(UdiControlBlocks,p,info);
|
||||||
if (!info)
|
if (!info)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
/*TODO: handle intersection*/
|
// /*TODO: handle intersection*/
|
||||||
c = &cm;
|
// c = &cm;
|
||||||
c->cl = Yap_ClauseListInit(&clauselist);
|
// c->cl = Yap_ClauseListInit(&clauselist);
|
||||||
c->pred = p;
|
// c->pred = p;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* I will start with the simplest case
|
||||||
|
* for each index create a set and intersect it with the
|
||||||
|
* next
|
||||||
|
*/
|
||||||
|
result = (Pvoid_t) NULL;
|
||||||
|
tmp = (Pvoid_t) NULL;
|
||||||
|
r = -1;
|
||||||
for (i = 0; i < utarray_len(info->args) ; i++) {
|
for (i = 0; i < utarray_len(info->args) ; i++) {
|
||||||
|
// fprintf(stderr,"Start Search\n");
|
||||||
parg = (UdiPArg) utarray_eltptr(info->args,i);
|
parg = (UdiPArg) utarray_eltptr(info->args,i);
|
||||||
//fprintf(stderr,"call search %d %p\n", i, (void *)c);
|
r = parg->control->search(parg->idxstr, parg->arg, callback, &tmp);
|
||||||
r = parg->control->search(parg->idxstr, parg->arg, callback, c);
|
|
||||||
/*info->functions->search(info->cb);*/
|
|
||||||
}
|
|
||||||
Yap_ClauseListClose(c->cl);
|
|
||||||
|
|
||||||
if (r >= 0) {
|
if (r == -1) /*this arg does not prune search*/
|
||||||
if (Yap_ClauseListCount(c->cl) == 0)
|
continue;
|
||||||
|
|
||||||
|
J1C(count, result, 0, -1);
|
||||||
|
|
||||||
|
if (r == 0)
|
||||||
{
|
{
|
||||||
Yap_ClauseListDestroy(c->cl);
|
if (count > 0) // clear previous result if it exists
|
||||||
|
J1FA(count, result);
|
||||||
|
fprintf(stderr,"Search Failed");
|
||||||
return Yap_FAILCODE();
|
return Yap_FAILCODE();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Yap_ClauseListCount(c->cl) == 1)
|
if (r > 0 && count == 0) // first result_set
|
||||||
{
|
{
|
||||||
return Yap_ClauseListToClause(c->cl);
|
result = tmp;
|
||||||
}
|
tmp = (Pvoid_t) NULL;
|
||||||
|
|
||||||
return Yap_ClauseListCode(c->cl);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
Yap_ClauseListDestroy(c->cl);
|
{/*intersection*/
|
||||||
|
Word_t idx_tmp = 0L;
|
||||||
|
|
||||||
return NULL;
|
idx_r = 0L;
|
||||||
|
J1F(count, result, idx_r);//succeeds one time at least
|
||||||
|
J1F(count, tmp, idx_tmp); //succeeds one time at least
|
||||||
|
while (count)
|
||||||
|
{
|
||||||
|
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
|
||||||
|
}
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
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
|
||||||
|
{
|
||||||
|
J1U(count, result, idx_r); //does not belong
|
||||||
|
J1N(count, result, idx_r); //next
|
||||||
|
}
|
||||||
|
J1FA(count, tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Yap_ClauseListInit(&clauselist);
|
||||||
|
idx_r = 0L;
|
||||||
|
J1F(count, result, idx_r);
|
||||||
|
while (count)
|
||||||
|
{
|
||||||
|
x = (yamop **) utarray_eltptr(info->clauselist, idx_r - 1);
|
||||||
|
// fprintf(stderr,"Clausule %d of %d: %p\n",
|
||||||
|
// idx_r, utarray_len(info->clauselist),
|
||||||
|
// *x);
|
||||||
|
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);
|
||||||
|
|
||||||
|
if (Yap_ClauseListCount(&clauselist) == 0)
|
||||||
|
{
|
||||||
|
Yap_ClauseListDestroy(&clauselist);
|
||||||
|
// fprintf(stderr,"Search Not needed\n");
|
||||||
|
return NULL; /*FAIL CODE handled before*/
|
||||||
|
}
|
||||||
|
if (Yap_ClauseListCount(&clauselist) == 1)
|
||||||
|
{
|
||||||
|
// fprintf(stderr,"Returning 1 value\n");
|
||||||
|
return Yap_ClauseListToClause(&clauselist);
|
||||||
|
}
|
||||||
|
// fprintf(stderr,"Returning Multiple values (%d)\n", Yap_ClauseListCount(&clauselist));
|
||||||
|
return Yap_ClauseListCode(&clauselist);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* index, called from absmi.c */
|
/* index, called from absmi.c */
|
||||||
|
@ -15,7 +15,7 @@ UT_icd arg_icd = {sizeof(struct udi_p_args), NULL, NULL, NULL };
|
|||||||
* This is a hack, becouse I do no know the real type of clauses
|
* This is a hack, becouse I do no know the real type of clauses
|
||||||
* Not completely used for now
|
* Not completely used for now
|
||||||
*/
|
*/
|
||||||
UT_icd ptr_icd = {sizeof(void *), NULL, NULL, NULL };
|
UT_icd cl_icd = {sizeof(yamop *), NULL, NULL, NULL };
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* All the info we need to enter user indexed code
|
* All the info we need to enter user indexed code
|
||||||
@ -38,18 +38,18 @@ typedef struct udi_info *UdiInfo;
|
|||||||
|
|
||||||
int Yap_udi_args_init(Term spec, int arity, UdiInfo blk);
|
int Yap_udi_args_init(Term spec, int arity, UdiInfo blk);
|
||||||
|
|
||||||
/* temporary */
|
///* temporary */
|
||||||
struct CallbackM
|
//struct CallbackM
|
||||||
{
|
//{
|
||||||
clause_list_t cl;
|
// clause_list_t cl;
|
||||||
void * pred;
|
// void * pred;
|
||||||
};
|
//};
|
||||||
typedef struct CallbackM * callback_m_t;
|
//typedef struct CallbackM * callback_m_t;
|
||||||
|
//
|
||||||
static inline int callback(void *key, void *data, void *arg)
|
//static inline int callback(void *key, void *data, void *arg)
|
||||||
{
|
//{
|
||||||
callback_m_t x;
|
// callback_m_t x;
|
||||||
x = (callback_m_t) arg;
|
// x = (callback_m_t) arg;
|
||||||
return Yap_ClauseListExtend(x->cl,data,x->pred);
|
// return Yap_ClauseListExtend(x->cl,data,x->pred);
|
||||||
}
|
//}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user