123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- ENTRY( MEM, 0) \
- ENTRY( MDB, 1) \
- ENTRY( MDB_TMP, 2) \
- typedef enum LSUP_store_type {
- BACKEND_TBL
- } LSUP_store_type;
- typedef struct Graph LSUP_Graph;
- typedef struct GraphIterator LSUP_GraphIterator;
- LSUP_Graph *
- LSUP_graph_new_env (
- const LSUP_Env *env, LSUP_Term *uri, const LSUP_store_type store_type);
- LSUP_graph_new_env (LSUP_default_env, uri, type)
- LSUP_Graph **
- LSUP_graph_new_lookup_env (
- const LSUP_Env *env, const LSUP_Term *s,
- const LSUP_Term *p, const LSUP_Term *o);
- LSUP_graph_new_lookup_env (LSUP_default_env, (s), (p), (o))
- LSUP_Graph *
- LSUP_graph_copy (const LSUP_Graph *src);
- LSUP_rc
- LSUP_graph_store (
- const LSUP_Graph *src, LSUP_Graph **dest_p, const LSUP_Env *env);
- LSUP_Graph *
- LSUP_graph_bool_op(
- const LSUP_bool_op op, const LSUP_Graph *gr1, const LSUP_Graph *gr2);
- void
- LSUP_graph_free (LSUP_Graph *gr);
- bool
- LSUP_graph_equals (const LSUP_Graph *gr1, const LSUP_Graph *gr2);
- LSUP_Term *
- LSUP_graph_uri (const LSUP_Graph *gr);
- LSUP_rc
- LSUP_graph_set_uri (LSUP_Graph *gr, LSUP_Term *uri);
- LSUP_NSMap *
- LSUP_graph_namespace (const LSUP_Graph *gr);
- void
- LSUP_graph_set_namespace (LSUP_Graph *gr, LSUP_NSMap *nsm);
- size_t
- LSUP_graph_size (const LSUP_Graph *gr);
- bool
- LSUP_graph_contains (const LSUP_Graph *gr, const LSUP_Triple *spo);
- LSUP_GraphIterator *
- LSUP_graph_add_init (LSUP_Graph *gr);
- LSUP_rc
- LSUP_graph_add_iter (LSUP_GraphIterator *it, const LSUP_Triple *spo);
- void
- LSUP_graph_add_done (LSUP_GraphIterator *it);
- LSUP_rc
- LSUP_graph_add (LSUP_Graph *gr, const LSUP_Triple trp[], size_t *inserted);
- LSUP_rc
- LSUP_graph_remove (
- LSUP_Graph *gr, const LSUP_Term *s, const LSUP_Term *p,
- const LSUP_Term *o, size_t *ct);
- LSUP_GraphIterator *
- LSUP_graph_lookup (const LSUP_Graph *gr, const LSUP_Term *s,
- const LSUP_Term *p, const LSUP_Term *o, size_t *ct);
- LSUP_rc
- LSUP_graph_iter_next (LSUP_GraphIterator *it, LSUP_Triple *spo);
- void
- LSUP_graph_iter_free (LSUP_GraphIterator *it);
- size_t
- LSUP_graph_iter_cur (LSUP_GraphIterator *it);
|