2006-11-30 20:35:50 +02:00
|
|
|
#ifndef __REMOTE_STORE_H
|
|
|
|
#define __REMOTE_STORE_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2006-11-30 21:54:43 +02:00
|
|
|
class Pipe;
|
|
|
|
class Pid;
|
|
|
|
struct FdSink;
|
|
|
|
struct FdSource;
|
|
|
|
|
|
|
|
|
2006-11-30 20:35:50 +02:00
|
|
|
class RemoteStore : public StoreAPI
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RemoteStore();
|
|
|
|
|
|
|
|
~RemoteStore();
|
|
|
|
|
|
|
|
/* Implementations of abstract store API methods. */
|
|
|
|
|
|
|
|
bool isValidPath(const Path & path);
|
|
|
|
|
2006-12-01 00:43:55 +02:00
|
|
|
Substitutes querySubstitutes(const Path & path);
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2006-12-01 00:43:55 +02:00
|
|
|
bool hasSubstitutes(const Path & path);
|
|
|
|
|
2006-11-30 20:35:50 +02:00
|
|
|
Hash queryPathHash(const Path & path);
|
|
|
|
|
2006-12-01 00:43:55 +02:00
|
|
|
void queryReferences(const Path & path, PathSet & references);
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2006-12-01 00:43:55 +02:00
|
|
|
void queryReferrers(const Path & path, PathSet & referrers);
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2006-12-01 22:51:18 +02:00
|
|
|
Path addToStore(const Path & srcPath, bool fixed = false,
|
2006-12-13 01:05:01 +02:00
|
|
|
bool recursive = false, string hashAlgo = "",
|
|
|
|
PathFilter & filter = defaultPathFilter);
|
2006-11-30 20:35:50 +02:00
|
|
|
|
|
|
|
Path addTextToStore(const string & suffix, const string & s,
|
|
|
|
const PathSet & references);
|
|
|
|
|
2007-02-21 01:17:20 +02:00
|
|
|
void exportPath(const Path & path, bool sign,
|
|
|
|
Sink & sink);
|
|
|
|
|
2007-02-21 17:45:32 +02:00
|
|
|
Path importPath(bool requireSignature, Source & source);
|
|
|
|
|
2006-11-30 20:35:50 +02:00
|
|
|
void buildDerivations(const PathSet & drvPaths);
|
|
|
|
|
2006-12-01 00:43:55 +02:00
|
|
|
void ensurePath(const Path & path);
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2006-12-02 18:41:36 +02:00
|
|
|
void addTempRoot(const Path & path);
|
|
|
|
|
2006-12-05 01:29:16 +02:00
|
|
|
void addIndirectRoot(const Path & path);
|
|
|
|
|
2006-12-02 18:41:36 +02:00
|
|
|
void syncWithGC();
|
|
|
|
|
2006-12-05 03:31:45 +02:00
|
|
|
Roots findRoots();
|
2006-12-05 04:18:46 +02:00
|
|
|
|
|
|
|
void collectGarbage(GCAction action, const PathSet & pathsToDelete,
|
|
|
|
bool ignoreLiveness, PathSet & result, unsigned long long & bytesFreed);
|
2006-12-05 03:31:45 +02:00
|
|
|
|
2006-11-30 20:35:50 +02:00
|
|
|
private:
|
2006-12-04 16:21:39 +02:00
|
|
|
AutoCloseFD fdSocket;
|
2006-11-30 21:54:43 +02:00
|
|
|
FdSink to;
|
|
|
|
FdSource from;
|
|
|
|
Pid child;
|
2006-12-03 04:08:13 +02:00
|
|
|
|
|
|
|
void processStderr();
|
2006-12-04 15:28:14 +02:00
|
|
|
|
|
|
|
void forkSlave();
|
2006-12-04 16:21:39 +02:00
|
|
|
|
|
|
|
void connectToDaemon();
|
2006-11-30 20:35:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__REMOTE_STORE_H */
|