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