Partial commit of statcache support.
[cumulus.git] / localdb.h
index 3a88870..bdf3b7c 100644 (file)
--- a/localdb.h
+++ b/localdb.h
@@ -26,10 +26,15 @@ public:
     void StoreObject(const ObjectReference& ref,
                      const std::string &checksum, int64_t size);
     ObjectReference FindObject(const std::string &checksum, int64_t size);
+    bool IsOldObject(const std::string &checksum, int64_t size);
     void UseObject(const ObjectReference& ref);
 private:
-    std::string snapshot;
     sqlite3 *db;
+    int64_t snapshotid;
+
+    sqlite3_stmt *Prepare(const char *sql);
+    int64_t SegmentToId(const std::string &segment);
+    std::string IdToSegment(int64_t segmentid);
 };
 
 #endif // _LBS_LOCALDB_H