From 02632790713eaabd5250ba04283233c8bc078067 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 30 Nov 2006 20:45:20 +0000 Subject: * More operations. --- src/nix-worker/main.cc | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'src/nix-worker/main.cc') diff --git a/src/nix-worker/main.cc b/src/nix-worker/main.cc index d6966c2bf5ee..d834e625ef46 100644 --- a/src/nix-worker/main.cc +++ b/src/nix-worker/main.cc @@ -3,6 +3,7 @@ #include "util.hh" #include "serialise.hh" #include "worker-protocol.hh" +#include "archive.hh" using namespace nix; @@ -40,8 +41,33 @@ void processConnection(Source & from, Sink & to) break; } + case wopAddToStore: { + /* !!! uberquick hack */ + string baseName = readString(from); + Path tmp = createTempDir(); + Path tmp2 = tmp + "/" + baseName; + restorePath(tmp2, from); + writeString(store->addToStore(tmp2), to); + deletePath(tmp); + break; + } + + case wopAddTextToStore: { + string suffix = readString(from); + string s = readString(from); + unsigned int refCount = readInt(from); + PathSet refs; + while (refCount--) { + Path ref = readString(from); + assertStorePath(ref); + refs.insert(ref); + } + writeString(store->addTextToStore(suffix, s, refs), to); + break; + } + default: - throw Error("invalid operation"); + throw Error(format("invalid operation %1%") % op); } } while (!quit); -- cgit 1.4.1