X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=localdb.h;h=0fce30dbd2a83302a16353fe59a7abd934d70389;hb=90073d1fa61f5ac3f033dc6aab351b9add40dcaf;hp=eb0955deb3151810803f5ffdbe6bb232b3e8ad9d;hpb=6a181a1eb21ac5f9f4f742281b6de841dac9a3c8;p=cumulus.git diff --git a/localdb.h b/localdb.h index eb0955d..0fce30d 100644 --- a/localdb.h +++ b/localdb.h @@ -21,16 +21,20 @@ class LocalDb { public: - void Open(const char *path, const char *snapshot_name); + void Open(const char *path, const char *snapshot_name, + const char *snapshot_scheme); void Close(); void StoreObject(const ObjectReference& ref, - const std::string &checksum, int64_t size); + const std::string &checksum, int64_t size, double age); ObjectReference FindObject(const std::string &checksum, int64_t size); + bool IsOldObject(const std::string &checksum, int64_t size, double *age); + bool IsAvailable(const ObjectReference &ref); void UseObject(const ObjectReference& ref); private: sqlite3 *db; int64_t snapshotid; + sqlite3_stmt *Prepare(const char *sql); int64_t SegmentToId(const std::string &segment); std::string IdToSegment(int64_t segmentid); };