Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 92dfc2232720
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ec91840e70a7
Choose a head ref
  • 4 commits
  • 6 files changed
  • 1 contributor

Commits on Mar 21, 2018

  1. Make 'nix copy --from ssh://...' run in constant memory

    For instance, this reduced the memory consumption of
    
      $ nix copy --from ssh://localhost --to ~/my-nix /nix/store/1n7x0yv8vq6zi90hfmian84vdhd04bgp-blender-2.79a
    
    from 632 MiB to 16 MiB.
    edolstra committed Mar 21, 2018
    Copy the full SHA
    47f7e55 View commit details
  2. Copy the full SHA
    11898d6 View commit details
  3. Copy the full SHA
    97002b6 View commit details
  4. Also make the backwards compatible case of RemoteStore::addToStore ru…

    …n in constant memory
    
    Just because we can.
    edolstra committed Mar 21, 2018
    Copy the full SHA
    ec91840 View commit details
Showing with 42 additions and 45 deletions.
  1. +3 −8 src/libstore/legacy-ssh-store.cc
  2. +17 −18 src/libstore/remote-store.cc
  3. +1 −1 src/libstore/remote-store.hh
  4. +1 −18 src/libstore/ssh-store.cc
  5. +17 −0 src/libutil/archive.cc
  6. +3 −0 src/libutil/archive.hh
11 changes: 3 additions & 8 deletions src/libstore/legacy-ssh-store.cc
Original file line number Diff line number Diff line change
@@ -120,7 +120,7 @@ struct LegacySSHStore : public Store
});
}

void addToStore(const ValidPathInfo & info, const ref<std::string> & nar,
void addToStore(const ValidPathInfo & info, Source & source,
RepairFlag repair, CheckSigsFlag checkSigs,
std::shared_ptr<FSAccessor> accessor) override
{
@@ -131,7 +131,7 @@ struct LegacySSHStore : public Store
conn->to
<< cmdImportPaths
<< 1;
conn->to(*nar);
copyNAR(source, conn->to);
conn->to
<< exportMagic
<< info.path
@@ -151,12 +151,7 @@ struct LegacySSHStore : public Store

conn->to << cmdDumpStorePath << path;
conn->to.flush();

/* FIXME: inefficient. */
ParseSink parseSink; /* null sink; just parse the NAR */
TeeSource savedNAR(conn->from);
parseDump(parseSink, savedNAR);
sink(*savedNAR.data);
copyNAR(conn->from, sink);
}

PathSet queryAllValidPaths() override { unsupported(); }
35 changes: 17 additions & 18 deletions src/libstore/remote-store.cc
Original file line number Diff line number Diff line change
@@ -377,30 +377,29 @@ Path RemoteStore::queryPathFromHashPart(const string & hashPart)
}


void RemoteStore::addToStore(const ValidPathInfo & info, const ref<std::string> & nar,
void RemoteStore::addToStore(const ValidPathInfo & info, Source & source,
RepairFlag repair, CheckSigsFlag checkSigs, std::shared_ptr<FSAccessor> accessor)
{
auto conn(connections->get());

if (GET_PROTOCOL_MINOR(conn->daemonVersion) < 18) {
conn->to << wopImportPaths;

StringSink sink;
sink << 1 // == path follows
;
assert(nar->size() % 8 == 0);
sink((unsigned char *) nar->data(), nar->size());
sink
<< exportMagic
<< info.path
<< info.references
<< info.deriver
<< 0 // == no legacy signature
<< 0 // == no path follows
;

StringSource source(*sink.s);
conn->processStderr(0, &source);
auto source2 = sinkToSource([&](Sink & sink) {
sink << 1 // == path follows
;
copyNAR(source, sink);
sink
<< exportMagic
<< info.path
<< info.references
<< info.deriver
<< 0 // == no legacy signature
<< 0 // == no path follows
;
});

conn->processStderr(0, source2.get());

auto importedPaths = readStorePaths<PathSet>(*this, conn->from);
assert(importedPaths.size() <= 1);
@@ -412,7 +411,7 @@ void RemoteStore::addToStore(const ValidPathInfo & info, const ref<std::string>
<< info.references << info.registrationTime << info.narSize
<< info.ultimate << info.sigs << info.ca
<< repair << !checkSigs;
conn->to(*nar);
copyNAR(source, conn->to);
conn->processStderr();
}
}
2 changes: 1 addition & 1 deletion src/libstore/remote-store.hh
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ public:
void querySubstitutablePathInfos(const PathSet & paths,
SubstitutablePathInfos & infos) override;

void addToStore(const ValidPathInfo & info, const ref<std::string> & nar,
void addToStore(const ValidPathInfo & info, Source & nar,
RepairFlag repair, CheckSigsFlag checkSigs,
std::shared_ptr<FSAccessor> accessor) override;

19 changes: 1 addition & 18 deletions src/libstore/ssh-store.cc
Original file line number Diff line number Diff line change
@@ -63,29 +63,12 @@ class SSHStore : public RemoteStore
};
};


class ForwardSource : public Source
{
Source & readSource;
Sink & writeSink;
public:
ForwardSource(Source & readSource, Sink & writeSink) : readSource(readSource), writeSink(writeSink) {}
size_t read(unsigned char * data, size_t len) override
{
auto n = readSource.read(data, len);
writeSink(data, n);
return n;
}
};

void SSHStore::narFromPath(const Path & path, Sink & sink)
{
auto conn(connections->get());
conn->to << wopNarFromPath << path;
conn->processStderr();
ParseSink ps;
auto fwd = ForwardSource(conn->from, sink);
parseDump(ps, fwd);
copyNAR(conn->from, sink);
}

ref<FSAccessor> SSHStore::getFSAccessor()
17 changes: 17 additions & 0 deletions src/libutil/archive.cc
Original file line number Diff line number Diff line change
@@ -350,4 +350,21 @@ void restorePath(const Path & path, Source & source)
}


void copyNAR(Source & source, Sink & sink)
{
// FIXME: if 'source' is the output of dumpPath() followed by EOF,
// we should just forward all data directly without parsing.

ParseSink parseSink; /* null sink; just parse the NAR */

LambdaSource wrapper([&](unsigned char * data, size_t len) {
auto n = source.read(data, len);
sink(data, n);
return n;
});

parseDump(parseSink, wrapper);
}


}
3 changes: 3 additions & 0 deletions src/libutil/archive.hh
Original file line number Diff line number Diff line change
@@ -74,6 +74,9 @@ void parseDump(ParseSink & sink, Source & source);

void restorePath(const Path & path, Source & source);

/* Read a NAR from 'source' and write it to 'sink'. */
void copyNAR(Source & source, Sink & sink);


// FIXME: global variables are bad m'kay.
extern bool useCaseHack;