2003-07-14 10:23:11 +00:00
|
|
|
#ifndef __STORE_H
|
|
|
|
#define __STORE_H
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "hash.hh"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
2003-07-15 16:28:54 +00:00
|
|
|
typedef Hash FSId;
|
|
|
|
|
|
|
|
|
2003-07-10 15:11:48 +00:00
|
|
|
/* Copy a path recursively. */
|
2003-07-06 14:20:47 +00:00
|
|
|
void copyPath(string src, string dst);
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-07-10 15:11:48 +00:00
|
|
|
/* Register a substitute. */
|
2003-07-15 16:28:54 +00:00
|
|
|
void registerSubstitute(const FSId & srcId, const FSId & subId);
|
2003-07-10 15:11:48 +00:00
|
|
|
|
2003-07-15 16:28:54 +00:00
|
|
|
/* Register a path keyed on its id. */
|
|
|
|
void registerPath(const string & path, const FSId & id);
|
2003-07-07 09:25:26 +00:00
|
|
|
|
2003-07-21 14:46:01 +00:00
|
|
|
/* Query the id of a path. */
|
|
|
|
bool queryPathId(const string & path, FSId & id);
|
|
|
|
|
2003-07-10 13:41:28 +00: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 16:12:40 +00:00
|
|
|
necessary by copying from another location). If prefix is not
|
2003-07-15 16:28:54 +00:00
|
|
|
empty, only return a path that is an descendent of prefix. */
|
|
|
|
string expandId(const FSId & id, const string & target = "",
|
2003-07-09 16:12:40 +00:00
|
|
|
const string & prefix = "/");
|
2003-07-07 09:25:26 +00:00
|
|
|
|
2003-06-27 13:55:12 +00:00
|
|
|
/* Copy a file to the nixStore directory and register it in dbRefs.
|
|
|
|
Return the hash code of the value. */
|
2003-07-15 16:28:54 +00:00
|
|
|
void addToStore(string srcPath, string & dstPath, FSId & id,
|
2003-07-11 08:41:03 +00:00
|
|
|
bool deterministicName = false);
|
2003-06-23 14:40:49 +00:00
|
|
|
|
2003-06-27 13:55:12 +00:00
|
|
|
/* Delete a value from the nixStore directory. */
|
2003-06-27 14:56:12 +00:00
|
|
|
void deleteFromStore(const string & path);
|
2003-06-23 14:40:49 +00:00
|
|
|
|
2003-07-17 12:27:55 +00:00
|
|
|
void verifyStore();
|
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-07-14 10:23:11 +00:00
|
|
|
#endif /* !__STORE_H */
|