1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2011-2015, VU University Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef RDF_QUERY_H_INCLUDED
#define RDF_QUERY_H_INCLUDED
#include <stdint.h>
#include "rdf_db.h"
#include "mutex.h"
typedef struct rdf_db *rdf_dbp;
typedef struct triple *triplep;
/*******************************
* TRANSITIVE RELATIONS *
*******************************/
typedef struct visited
{ struct visited *next; /* next in list */
struct visited *hash_link; /* next in hashed link */
atom_t resource; /* visited resource */
uintptr_t distance; /* Distance */
} visited;
typedef struct agenda
{ struct query *query; /* associated query */
visited *head; /* visited list */
visited *tail; /* tail of visited list */
visited *to_expand; /* next to expand */
visited *to_return; /* next to return */
visited **hash; /* hash-table for cycle detection */
int hash_size;
int size; /* size of the agenda */
uintptr_t max_d; /* max distance */
triple pattern; /* partial triple used as pattern */
atom_t target; /* resource we are seaching for */
struct chunk *chunk; /* node-allocation chunks */
} agenda;
#ifndef offsetof
#define offsetof(structure, field) ((size_t) &(((structure *)NULL)->field))
#endif
#define CHUNK_SIZE(n) offsetof(chunk, nodes[n])
typedef struct chunk
{ struct chunk *next;
int used; /* # used elements */
int size; /* size of the chunk */
struct visited nodes[1]; /* nodes in the chunk */
} chunk;
/*******************************
* QUERIES *
*******************************/
typedef enum q_type
{ Q_NORMAL = 0, /* Normal query */
Q_TRANSACTION /* A transaction */
} q_type;
typedef struct query
{ gen_t rd_gen; /* generation for reading */
gen_t wr_gen; /* generation for writing */
gen_t tr_gen; /* generation for transaction reading */
gen_t reindex_gen; /* Reindex counter at start */
rdf_dbp db; /* Database on which we run */
struct query *parent; /* Parent query */
struct query_stack *stack; /* Query-stack I am part of */
q_type type; /* Q_* */
int depth; /* recursion depth */
struct query *transaction; /* Transaction of the query */
struct
{ struct triple_buffer *added;
struct triple_buffer *deleted;
struct triple_buffer *updated;
term_t prolog_id; /* Prolog transaction identifier */
list lifespans; /* Lifespans that must be invalidated */
} transaction_data;
union query_state
{ search_state search; /* State for normal searches */
agenda tr_search; /* State for transitive searches */
struct
{ int prop;
predicate *pred;
} predprop;
} state;
} query;
#define MAX_QBLOCKS 21 /* allows for 1M concurrent queries */
typedef struct query_stack
{ query *blocks[MAX_QBLOCKS];
query preallocated[4];
simpleMutex lock;
query *transaction; /* Current transaction */
gen_t tr_gen_base; /* Base generation for transactions */
gen_t tr_gen_max; /* Max generation for transactions */
rdf_dbp db; /* DB we are associated to */
int top; /* Top of query stack */
} query_stack;
/*******************************
* THREADS *
*******************************/
typedef struct thread_info
{ query_stack queries; /* Open queries */
} thread_info;
/*******************************
* API *
*******************************/
COMMON(void) init_query_admin(rdf_dbp db);
COMMON(query *) open_query(rdf_dbp db);
COMMON(void) close_query(query *q);
COMMON(gen_t) oldest_query_geneneration(rdf_db *db, gen_t *reindex_gen);
COMMON(query *) open_transaction(rdf_dbp db,
struct triple_buffer *added,
struct triple_buffer *deleted,
struct triple_buffer *updated,
snapshot *ss);
COMMON(int) empty_transaction(query *q);
COMMON(int) commit_transaction(query *q);
COMMON(void) close_transaction(query *q);
COMMON(int) discard_transaction(query *q);
COMMON(int) add_triples(query *q, triplep *triples, size_t count);
COMMON(int) del_triples(query *q, triplep *triples, size_t count);
COMMON(int) update_triples(query *q,
triplep *old, triplep *new, size_t count);
COMMON(int) alive_lifespan(query *q, lifespan *span);
COMMON(int) born_lifespan(query *q, lifespan *lifespan);
COMMON(char *) gen_name(gen_t gen, char *buf);
#ifdef COMPACT
static triple *
fetch_triple(rdf_db *db, triple_id id)
{ return id ? db->triple_array.blocks[MSB(id)][id].triple : (triple*)NULL;
}
#else /*COMPACT*/
#define fetch_triple(db, t) (t)
#endif /*COMPACT*/
/* dereference `optimized' triples. See optimize_triple_hash()
FIXME: Things are generally not so easy. See alive_triple() for
avoiding duplicates.
*/
static inline triple *
deref_triple(rdf_db *db, triple *t)
{ SECURE(int times = 32);
while(t->reindexed)
{ t = fetch_triple(db, t->reindexed);
SECURE(if ( --times == 0 ) assert(0));
}
return t;
}
/* Find out whether a triple is alive and, if the triple is reindexed,
return the current version. Note that if the triple was reindexed
before this query was started, we will find the reindexed one as
well, so we can discard this one.
*/
static inline triple *
alive_triple(query *q, triple *t)
{ for ( ; t->reindexed; t = fetch_triple(q->db, t->reindexed) )
{ if ( t->lifespan.died < q->reindex_gen )
return NULL;
}
return alive_lifespan(q, &t->lifespan) ? t : (triple*)NULL;
}
static inline int
overlap_lifespan(lifespan *l1, lifespan *l2)
{ if ( l1->died < l2->born || /* l1 entirely before l2 */
l2->died < l1->born ) /* l2 entirely before l1 */
return FALSE;
return TRUE;
}
static inline gen_t
queryWriteGen(query *q)
{ if ( q->transaction )
return q->transaction->wr_gen;
else
return q->db->queries.generation;
}
static inline void
setWriteGen(query *q, gen_t gen)
{ if ( q->transaction )
q->transaction->wr_gen = gen;
else
q->db->queries.generation = gen;
}
static inline gen_t
query_max_gen(query *q)
{ if ( q->transaction )
return q->stack->tr_gen_max;
else
return GEN_MAX;
}
static inline gen_t
transaction_max_gen(query *q)
{ return q->stack->tr_gen_max;
}
static inline int
is_wr_transaction_gen(query *q, gen_t gen)
{ if ( gen >= q->stack->tr_gen_base &&
gen <= q->stack->tr_gen_max )
return TRUE;
return FALSE;
}
#endif /*RDF_QUERY_H_INCLUDED*/
|