2003-06-16 13:33:38 +00:00
|
|
|
#ifndef __VALUES_H
|
|
|
|
#define __VALUES_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "hash.hh"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
2003-07-06 14:20:47 +00:00
|
|
|
void copyPath(string src, string dst);
|
2003-06-16 13:33:38 +00:00
|
|
|
|
2003-07-07 09:25:26 +00:00
|
|
|
/* Register a path keyed on its hash. */
|
|
|
|
Hash registerPath(const string & path, Hash hash = Hash());
|
|
|
|
|
|
|
|
/* Query a path (any path) through its hash. */
|
|
|
|
string queryPathByHash(Hash hash);
|
|
|
|
|
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. */
|
|
|
|
void addToStore(string srcPath, string & dstPath, Hash & hash);
|
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-06-16 13:33:38 +00:00
|
|
|
|
|
|
|
#endif /* !__VALUES_H */
|