aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/remote-store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r--src/libstore/remote-store.cc25
1 files changed, 6 insertions, 19 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index 1616f98f0..1a6afe46b 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -326,6 +326,12 @@ Path RemoteStore::queryPathFromHashPart(const string & hashPart)
}
+void RemoteStore::addToStore(const ValidPathInfo & info, const std::string & nar, bool repair)
+{
+ throw Error("RemoteStore::addToStore() not implemented");
+}
+
+
Path RemoteStore::addToStore(const string & name, const Path & _srcPath,
bool recursive, HashType hashAlgo, PathFilter & filter, bool repair)
{
@@ -373,25 +379,6 @@ Path RemoteStore::addTextToStore(const string & name, const string & s,
}
-void RemoteStore::exportPath(const Path & path, Sink & sink)
-{
- auto conn(connections->get());
- conn->to << wopExportPath << path << 0;
- conn->processStderr(&sink); /* sink receives the actual data */
- readInt(conn->from);
-}
-
-
-Paths RemoteStore::importPaths(Source & source,
- std::shared_ptr<FSAccessor> accessor)
-{
- auto conn(connections->get());
- conn->to << wopImportPaths;
- conn->processStderr(0, &source);
- return readStorePaths<Paths>(conn->from);
-}
-
-
void RemoteStore::buildPaths(const PathSet & drvPaths, BuildMode buildMode)
{
auto conn(connections->get());