2006-11-30 20:54:43 +01:00
|
|
|
#include "serialise.hh"
|
|
|
|
#include "util.hh"
|
2006-11-30 19:35:50 +01:00
|
|
|
#include "remote-store.hh"
|
2006-11-30 21:13:59 +01:00
|
|
|
#include "worker-protocol.hh"
|
2006-11-30 21:45:20 +01:00
|
|
|
#include "archive.hh"
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2006-11-30 20:54:43 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
|
|
RemoteStore::RemoteStore()
|
|
|
|
{
|
2006-11-30 20:54:43 +01:00
|
|
|
toChild.create();
|
|
|
|
fromChild.create();
|
|
|
|
|
|
|
|
|
|
|
|
/* Start the worker. */
|
|
|
|
string worker = "nix-worker";
|
|
|
|
|
|
|
|
child = fork();
|
|
|
|
|
|
|
|
switch (child) {
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
try { /* child */
|
|
|
|
|
|
|
|
fromChild.readSide.close();
|
|
|
|
if (dup2(fromChild.writeSide, STDOUT_FILENO) == -1)
|
|
|
|
throw SysError("dupping write side");
|
|
|
|
|
|
|
|
toChild.writeSide.close();
|
|
|
|
if (dup2(toChild.readSide, STDIN_FILENO) == -1)
|
|
|
|
throw SysError("dupping read side");
|
|
|
|
|
|
|
|
execlp(worker.c_str(), worker.c_str(),
|
|
|
|
"-vvv", "--slave", NULL);
|
|
|
|
|
|
|
|
throw SysError(format("executing `%1%'") % worker);
|
|
|
|
|
|
|
|
} catch (std::exception & e) {
|
|
|
|
std::cerr << format("child error: %1%\n") % e.what();
|
|
|
|
}
|
|
|
|
quickExit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fromChild.writeSide.close();
|
|
|
|
toChild.readSide.close();
|
|
|
|
|
|
|
|
from.fd = fromChild.readSide;
|
|
|
|
to.fd = toChild.writeSide;
|
|
|
|
|
|
|
|
|
|
|
|
/* Send the magic greeting, check for the reply. */
|
2006-11-30 21:13:59 +01:00
|
|
|
writeInt(WORKER_MAGIC_1, to);
|
2006-11-30 20:54:43 +01:00
|
|
|
|
|
|
|
unsigned int magic = readInt(from);
|
2006-11-30 21:13:59 +01:00
|
|
|
if (magic != WORKER_MAGIC_2) throw Error("protocol mismatch");
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RemoteStore::~RemoteStore()
|
|
|
|
{
|
2006-11-30 21:13:59 +01:00
|
|
|
writeInt(wopQuit, to);
|
|
|
|
readInt(from);
|
|
|
|
child.wait(true);
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool RemoteStore::isValidPath(const Path & path)
|
|
|
|
{
|
2006-11-30 21:13:59 +01:00
|
|
|
writeInt(wopIsValidPath, to);
|
|
|
|
writeString(path, to);
|
|
|
|
unsigned int reply = readInt(from);
|
|
|
|
return reply != 0;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Substitutes RemoteStore::querySubstitutes(const Path & srcPath)
|
|
|
|
{
|
2006-11-30 21:13:59 +01:00
|
|
|
// writeInt(wopQuerySubstitutes);
|
|
|
|
|
|
|
|
// throw Error("not implemented 2");
|
|
|
|
return Substitutes();
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hash RemoteStore::queryPathHash(const Path & path)
|
|
|
|
{
|
|
|
|
throw Error("not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::queryReferences(const Path & storePath,
|
|
|
|
PathSet & references)
|
|
|
|
{
|
|
|
|
throw Error("not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::queryReferrers(const Path & storePath,
|
|
|
|
PathSet & referrers)
|
|
|
|
{
|
|
|
|
throw Error("not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path RemoteStore::addToStore(const Path & srcPath)
|
|
|
|
{
|
2006-11-30 21:45:20 +01:00
|
|
|
writeInt(wopAddToStore, to);
|
|
|
|
writeString(baseNameOf(srcPath), to);
|
|
|
|
dumpPath(srcPath, to);
|
|
|
|
Path path = readString(from);
|
|
|
|
return path;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path RemoteStore::addToStoreFixed(bool recursive, string hashAlgo,
|
|
|
|
const Path & srcPath)
|
|
|
|
{
|
2006-11-30 21:45:20 +01:00
|
|
|
throw Error("not implemented 4");
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path RemoteStore::addTextToStore(const string & suffix, const string & s,
|
|
|
|
const PathSet & references)
|
|
|
|
{
|
2006-11-30 21:45:20 +01:00
|
|
|
writeInt(wopAddTextToStore, to);
|
|
|
|
writeString(suffix, to);
|
|
|
|
writeString(s, to);
|
|
|
|
writeInt(references.size(), to);
|
|
|
|
for (PathSet::iterator i = references.begin(); i != references.end(); ++i)
|
|
|
|
writeString(*i, to);
|
|
|
|
|
|
|
|
Path path = readString(from);
|
|
|
|
return path;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::buildDerivations(const PathSet & drvPaths)
|
|
|
|
{
|
2006-11-30 21:45:20 +01:00
|
|
|
throw Error("not implemented 6");
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::ensurePath(const Path & storePath)
|
|
|
|
{
|
2006-11-30 21:45:20 +01:00
|
|
|
throw Error("not implemented 7");
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|