aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/remote-store.cc
diff options
context:
space:
mode:
authorJade Lovelace <lix@jade.fyi>2024-05-24 20:45:06 -0600
committerJade Lovelace <lix@jade.fyi>2024-06-16 19:15:08 -0700
commitc1f2733dd63eb04a8a192da72835b15f9363869f (patch)
treea65433f78ddf80a3b5c38413340e0a8c16c8b433 /src/libstore/remote-store.cc
parentc22a7f50cb4a476f0c276d8e0d2194da5144ce92 (diff)
libstore client: remove remaining dead code
Change-Id: I1764b3878439ff7b20ff64bd4efcf03070bb0e5e
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r--src/libstore/remote-store.cc84
1 files changed, 21 insertions, 63 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index d445cbcb6..575078289 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -456,51 +456,21 @@ void RemoteStore::addToStore(const ValidPathInfo & info, Source & source,
{
auto conn(getConnection());
- if (GET_PROTOCOL_MINOR(conn->daemonVersion) < 18) {
- conn->to << WorkerProto::Op::ImportPaths;
-
- auto source2 = sinkToSource([&](Sink & sink) {
- sink << 1 // == path follows
- ;
+ conn->to << WorkerProto::Op::AddToStoreNar
+ << printStorePath(info.path)
+ << (info.deriver ? printStorePath(*info.deriver) : "")
+ << info.narHash.to_string(Base16, false);
+ WorkerProto::write(*this, *conn, info.references);
+ conn->to << info.registrationTime << info.narSize
+ << info.ultimate << info.sigs << renderContentAddress(info.ca)
+ << repair << !checkSigs;
+
+ if (GET_PROTOCOL_MINOR(conn->daemonVersion) >= 23) {
+ conn.withFramedSink([&](Sink & sink) {
copyNAR(source, sink);
- sink
- << exportMagic
- << printStorePath(info.path);
- WorkerProto::WriteConn nested { sink, conn->daemonVersion };
- WorkerProto::write(*this, nested, info.references);
- sink
- << (info.deriver ? printStorePath(*info.deriver) : "")
- << 0 // == no legacy signature
- << 0 // == no path follows
- ;
});
-
- conn.processStderr(0, source2.get());
-
- auto importedPaths = WorkerProto::Serialise<StorePathSet>::read(*this, *conn);
- assert(importedPaths.size() <= 1);
- }
-
- else {
- conn->to << WorkerProto::Op::AddToStoreNar
- << printStorePath(info.path)
- << (info.deriver ? printStorePath(*info.deriver) : "")
- << info.narHash.to_string(Base16, false);
- WorkerProto::write(*this, *conn, info.references);
- conn->to << info.registrationTime << info.narSize
- << info.ultimate << info.sigs << renderContentAddress(info.ca)
- << repair << !checkSigs;
-
- if (GET_PROTOCOL_MINOR(conn->daemonVersion) >= 23) {
- conn.withFramedSink([&](Sink & sink) {
- copyNAR(source, sink);
- });
- } else if (GET_PROTOCOL_MINOR(conn->daemonVersion) >= 21) {
- conn.processStderr(0, &source);
- } else {
- copyNAR(source, conn->to);
- conn.processStderr(0, nullptr);
- }
+ } else {
+ conn.processStderr(0, &source);
}
}
@@ -624,7 +594,6 @@ void RemoteStore::buildPaths(const std::vector<DerivedPath> & drvPaths, BuildMod
auto conn(getConnection());
conn->to << WorkerProto::Op::BuildPaths;
- assert(GET_PROTOCOL_MINOR(conn->daemonVersion) >= 13);
WorkerProto::write(*this, *conn, drvPaths);
conn->to << buildMode;
conn.processStderr();
@@ -817,25 +786,14 @@ void RemoteStore::queryMissing(const std::vector<DerivedPath> & targets,
StorePathSet & willBuild, StorePathSet & willSubstitute, StorePathSet & unknown,
uint64_t & downloadSize, uint64_t & narSize)
{
- {
- auto conn(getConnection());
- if (GET_PROTOCOL_MINOR(conn->daemonVersion) < 19)
- // Don't hold the connection handle in the fallback case
- // to prevent a deadlock.
- goto fallback;
- conn->to << WorkerProto::Op::QueryMissing;
- WorkerProto::write(*this, *conn, targets);
- conn.processStderr();
- willBuild = WorkerProto::Serialise<StorePathSet>::read(*this, *conn);
- willSubstitute = WorkerProto::Serialise<StorePathSet>::read(*this, *conn);
- unknown = WorkerProto::Serialise<StorePathSet>::read(*this, *conn);
- conn->from >> downloadSize >> narSize;
- return;
- }
-
- fallback:
- return Store::queryMissing(targets, willBuild, willSubstitute,
- unknown, downloadSize, narSize);
+ auto conn(getConnection());
+ conn->to << WorkerProto::Op::QueryMissing;
+ WorkerProto::write(*this, *conn, targets);
+ conn.processStderr();
+ willBuild = WorkerProto::Serialise<StorePathSet>::read(*this, *conn);
+ willSubstitute = WorkerProto::Serialise<StorePathSet>::read(*this, *conn);
+ unknown = WorkerProto::Serialise<StorePathSet>::read(*this, *conn);
+ conn->from >> downloadSize >> narSize;
}