aboutsummaryrefslogtreecommitdiff
path: root/src/libutil
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-10-01 17:05:55 +0200
committerEelco Dolstra <edolstra@gmail.com>2019-10-27 18:18:58 +0100
commitf1c0b2c0e16154e738f342f2defa42c4d9348c4c (patch)
treec524e4bb248ee7c7d7395846895db15f81305d7e /src/libutil
parent3913afdd69a5bd065d6096dd569397a836ac6857 (diff)
Add O(1)-memory copyPath() function
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/archive.cc9
-rw-r--r--src/libutil/archive.hh2
2 files changed, 11 insertions, 0 deletions
diff --git a/src/libutil/archive.cc b/src/libutil/archive.cc
index 3aa120270..db544a212 100644
--- a/src/libutil/archive.cc
+++ b/src/libutil/archive.cc
@@ -375,4 +375,13 @@ void copyNAR(Source & source, Sink & sink)
}
+void copyPath(const Path & from, const Path & to)
+{
+ auto source = sinkToSource([&](Sink & sink) {
+ dumpPath(from, sink);
+ });
+ restorePath(to, *source);
+}
+
+
}
diff --git a/src/libutil/archive.hh b/src/libutil/archive.hh
index 25be426c1..768fe2536 100644
--- a/src/libutil/archive.hh
+++ b/src/libutil/archive.hh
@@ -77,6 +77,8 @@ void restorePath(const Path & path, Source & source);
/* Read a NAR from 'source' and write it to 'sink'. */
void copyNAR(Source & source, Sink & sink);
+void copyPath(const Path & from, const Path & to);
+
extern const std::string narVersionMagic1;