diff options
author | Alois Wohlschlager <alois1@gmx-topmail.de> | 2024-07-21 11:28:23 +0200 |
---|---|---|
committer | Alois Wohlschlager <alois1@gmx-topmail.de> | 2024-07-21 11:28:23 +0200 |
commit | 391088900e269b95710c4fa9e97e26cbe68435df (patch) | |
tree | b23da388fc54d42b1ae545d56173572c0154f273 /src/libstore/binary-cache-store.cc | |
parent | 1917e6c765b0b0012ed85a7a927db0bf83fb27ca (diff) |
libstore/binary-cache-store: use correct buffer size for NAR decompression
Due to a leftover from a previous version where the buffer was allocated on the
stack, the change introduced in commit 4ec87742a196d8ed8f41b41ef039706ce791448d
accidentally passes the size of a pointer as the size of the buffer to the
decompressor. Since the former is much smaller (usually 8 bytes instead of 64
kilobytes), this is safe, but leads to considerable overhead; most notably, due
to excessive progress reports, which happen for each chunk. Pass the proper
buffer size instead.
Change-Id: If4bf472d33e21587acb5235a2d99e3cb10914633
Diffstat (limited to 'src/libstore/binary-cache-store.cc')
-rw-r--r-- | src/libstore/binary-cache-store.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstore/binary-cache-store.cc b/src/libstore/binary-cache-store.cc index e507391fe..6ab5a0a1c 100644 --- a/src/libstore/binary-cache-store.cc +++ b/src/libstore/binary-cache-store.cc @@ -336,12 +336,13 @@ WireFormatGenerator BinaryCacheStore::narFromPath(const StorePath & storePath) try { auto file = getFile(info->url); return [](auto info, auto file, auto & stats) -> WireFormatGenerator { - std::unique_ptr<char[]> buf(new char[65536]); + constexpr size_t buflen = 65536; + auto buf = std::make_unique<char []>(buflen); size_t total = 0; auto decompressor = makeDecompressionSource(info->compression, *file); try { while (true) { - const auto len = decompressor->read(buf.get(), sizeof(buf)); + const auto len = decompressor->read(buf.get(), buflen); co_yield std::span{buf.get(), len}; total += len; } |