2003-06-16 16:33:38 +03:00
|
|
|
#ifndef __VALUES_H
|
|
|
|
#define __VALUES_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "hash.hh"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
2003-06-27 16:55:12 +03:00
|
|
|
void copyFile(string src, string dst);
|
2003-06-16 16:33:38 +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. */
|
|
|
|
void addToStore(string srcPath, string & dstPath, Hash & hash);
|
2003-06-23 17:40:49 +03:00
|
|
|
|
2003-06-27 16:55:12 +03:00
|
|
|
/* Delete a value from the nixStore directory. */
|
|
|
|
void deleteFromStore(Hash hash);
|
2003-06-23 17:40:49 +03:00
|
|
|
|
2003-06-27 16:55:12 +03:00
|
|
|
/* !!! */
|
|
|
|
string queryFromStore(Hash hash);
|
2003-06-16 16:33:38 +03:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__VALUES_H */
|