2003-07-14 12:23:11 +02:00
|
|
|
#ifndef __STORE_H
|
|
|
|
#define __STORE_H
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "hash.hh"
|
2003-08-01 17:41:47 +02:00
|
|
|
#include "db.hh"
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
2003-07-15 18:28:54 +02:00
|
|
|
typedef Hash FSId;
|
|
|
|
|
2003-07-22 17:15:15 +02:00
|
|
|
typedef set<FSId> FSIdSet;
|
|
|
|
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2003-07-10 17:11:48 +02:00
|
|
|
/* Copy a path recursively. */
|
2003-07-06 16:20:47 +02:00
|
|
|
void copyPath(string src, string dst);
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-07-10 17:11:48 +02:00
|
|
|
/* Register a substitute. */
|
2003-07-15 18:28:54 +02:00
|
|
|
void registerSubstitute(const FSId & srcId, const FSId & subId);
|
2003-07-10 17:11:48 +02:00
|
|
|
|
2003-07-15 18:28:54 +02:00
|
|
|
/* Register a path keyed on its id. */
|
2003-08-01 17:41:47 +02:00
|
|
|
void registerPath(const Transaction & txn,
|
|
|
|
const string & path, const FSId & id);
|
2003-07-07 11:25:26 +02:00
|
|
|
|
2003-07-21 16:46:01 +02:00
|
|
|
/* Query the id of a path. */
|
|
|
|
bool queryPathId(const string & path, FSId & id);
|
|
|
|
|
2003-07-10 15:41:28 +02:00
|
|
|
/* Return a path whose contents have the given hash. If target is
|
|
|
|
not empty, ensure that such a path is realised in target (if
|
2003-07-09 18:12:40 +02:00
|
|
|
necessary by copying from another location). If prefix is not
|
2003-07-22 17:15:15 +02:00
|
|
|
empty, only return a path that is an descendent of prefix.
|
|
|
|
|
|
|
|
The list of pending ids are those that already being expanded.
|
|
|
|
This prevents infinite recursion for ids realised through a
|
|
|
|
substitute (since when we build the substitute, we would first try
|
|
|
|
to expand the id... kaboom!). */
|
2003-07-15 18:28:54 +02:00
|
|
|
string expandId(const FSId & id, const string & target = "",
|
2003-08-01 11:01:51 +02:00
|
|
|
const string & prefix = "/", FSIdSet pending = FSIdSet(),
|
|
|
|
bool ignoreSubstitutes = false);
|
2003-07-07 11:25:26 +02:00
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
/* Copy a file to the nixStore directory and register it in dbRefs.
|
|
|
|
Return the hash code of the value. */
|
2003-07-15 18:28:54 +02:00
|
|
|
void addToStore(string srcPath, string & dstPath, FSId & id,
|
2003-07-11 10:41:03 +02:00
|
|
|
bool deterministicName = false);
|
2003-06-23 16:40:49 +02:00
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
/* Delete a value from the nixStore directory. */
|
2003-06-27 16:56:12 +02:00
|
|
|
void deleteFromStore(const string & path);
|
2003-06-23 16:40:49 +02:00
|
|
|
|
2003-07-17 14:27:55 +02:00
|
|
|
void verifyStore();
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-07-14 12:23:11 +02:00
|
|
|
#endif /* !__STORE_H */
|