aboutsummaryrefslogtreecommitdiff
path: root/src/zenremotestore/include
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-10-16 14:06:02 +0200
committerGitHub Enterprise <[email protected]>2025-10-16 14:06:02 +0200
commit4eaae0bf20dbbe8357809f6ecdbe9608bdf15389 (patch)
tree85f94150ea03e7c8b4ad2e7a1bb3d1734bc9f025 /src/zenremotestore/include
parentfix log progress quotes (#580) (diff)
downloadzen-4eaae0bf20dbbe8357809f6ecdbe9608bdf15389.tar.xz
zen-4eaae0bf20dbbe8357809f6ecdbe9608bdf15389.zip
builds download progress include validate (#582)
* take validation into account for progress feedback when downloading builds
Diffstat (limited to 'src/zenremotestore/include')
-rw-r--r--src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h b/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h
index fcf880e48..f200a342c 100644
--- a/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h
+++ b/src/zenremotestore/include/zenremotestore/builds/buildstorageoperations.h
@@ -225,6 +225,7 @@ public:
DownloadStatistics m_DownloadStats;
WriteChunkStatistics m_WriteChunkStats;
RebuildFolderStateStatistics m_RebuildFolderStateStats;
+ std::atomic<uint64_t> m_WrittenChunkByteCount;
private:
struct BlockWriteOps
@@ -450,6 +451,8 @@ private:
const std::filesystem::path m_CacheFolderPath;
const std::filesystem::path m_TempDownloadFolderPath;
const std::filesystem::path m_TempBlockFolderPath;
+
+ std::atomic<uint64_t> m_ValidatedChunkByteCount;
};
struct FindBlocksStatistics