/* Part of SWI-Prolog Author: Jan Wielemaker E-mail: J.Wielemaker@vu.nl WWW: http://www.swi-prolog.org Copyright (c) 2012-2015, University of Amsterdam 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. */ #include "rdf_db.h" /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Create a new snapshot, adding it as the _start_ of the DB's snapshot list. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ snapshot * new_snapshot(rdf_db *db) { query *q = open_query(db); snapshot *ss; if ( !q ) return NULL; ss = rdf_malloc(db, sizeof(*ss)); ss->rd_gen = q->rd_gen; ss->tr_gen = q->tr_gen; ss->db = db; ss->symbol = 0; simpleMutexLock(&db->locks.misc); if ( db->snapshots.head ) { ss->next = db->snapshots.head; ss->prev = NULL; db->snapshots.head->prev = ss; db->snapshots.head = ss; if ( ss->rd_gen < db->snapshots.keep ) db->snapshots.keep = ss->rd_gen; } else { ss->next = ss->prev = NULL; db->snapshots.head = db->snapshots.tail = ss; db->snapshots.keep = ss->rd_gen; } simpleMutexUnlock(&db->locks.misc); close_query(q); return ss; } static void unlink_snapshot(snapshot *ss) { rdf_db *db = ss->db; if ( ss->next ) ss->next->prev = ss->prev; if ( ss->prev ) ss->prev->next = ss->next; if ( ss == db->snapshots.head ) db->snapshots.head = ss->next; if ( ss == db->snapshots.tail ) db->snapshots.tail = ss->prev; } static void update_keep_snapshot(snapshot *ss) { rdf_db *db = ss->db; if ( ss->rd_gen == db->snapshots.keep ) { gen_t oldest = GEN_MAX; snapshot *s; for(s=db->snapshots.head; s; s=s->next) { if ( s->rd_gen < oldest ) oldest = s->rd_gen; } db->snapshots.keep = oldest; DEBUG(1, { char buf[64]; Sdprintf("Deleted oldest snapshot; set keep gen to %s\n", gen_name(oldest, buf)); }); } } int free_snapshot(snapshot *ss) { rdf_db *db = ss->db; int rc; simpleMutexLock(&db->locks.misc); if ( (rc=(ss->symbol != 0)) ) { unlink_snapshot(ss); update_keep_snapshot(ss); ss->symbol = 0; } simpleMutexUnlock(&db->locks.misc); return rc; } void erase_snapshots(rdf_db *db) { snapshot *ss; simpleMutexLock(&db->locks.misc); while( (ss=db->snapshots.head) ) { unlink_snapshot(ss); ss->symbol = 0; } db->snapshots.keep = GEN_MAX; simpleMutexUnlock(&db->locks.misc); } static void acquire_snapshot(atom_t symbol) { snapshot *ss = PL_blob_data(symbol, NULL, NULL); ss->symbol = symbol; } static int release_snapshot(atom_t symbol) { snapshot *ss = PL_blob_data(symbol, NULL, NULL); free_snapshot(ss); rdf_free(ss->db, ss, sizeof(*ss)); return TRUE; } static int compare_snapshot(atom_t a, atom_t b) { snapshot *ssa = PL_blob_data(a, NULL, NULL); snapshot *ssb = PL_blob_data(b, NULL, NULL); return ( ssa->rd_gen > ssb->rd_gen ? 1 : ssa->rd_gen < ssb->rd_gen ? -1 : ssa->tr_gen > ssb->tr_gen ? 1 : ssa->tr_gen < ssb->tr_gen ? -1 : ssa > ssb ? 1 : ssb < ssa ? -1 : 0 ); } static int write_snapshot(IOSTREAM *s, atom_t symbol, int flags) { snapshot *ss = PL_blob_data(symbol, NULL, NULL); char buf[64]; if ( ss->tr_gen > GEN_TBASE ) { char buf2[64]; Sfprintf(s, "(%s+%s)", gen_name(ss->rd_gen, buf), gen_name(ss->tr_gen, buf2)); } else { Sfprintf(s, "(%s)", gen_name(ss->rd_gen, buf)); } return TRUE; } static PL_blob_t snap_blob = { PL_BLOB_MAGIC, PL_BLOB_NOCOPY|PL_BLOB_UNIQUE, "rdf_snapshot", release_snapshot, compare_snapshot, write_snapshot, acquire_snapshot }; int unify_snapshot(term_t t, snapshot *ss) { int rc = PL_unify_blob(t, ss, sizeof(*ss), &snap_blob); if ( !rc ) free_snapshot(ss); return rc; } int get_snapshot(term_t t, snapshot **ssp) { PL_blob_t *type; void *data; if ( PL_get_blob(t, &data, NULL, &type) && type == &snap_blob) { snapshot *ss = data; if ( ss->symbol ) { *ssp = ss; return TRUE; } return -1; } return FALSE; } /* snapshot_thread() is the id of the thread that created the snapshot if the snapshot is created inside a modified transaction. */ int snapshot_thread(snapshot *ss) { if ( ss->tr_gen > GEN_TBASE && ((ss->tr_gen-GEN_TBASE)%GEN_TNEST) != 0 ) return (int)((ss->tr_gen-GEN_TBASE)/GEN_TNEST); return 0; }