diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-03-18 15:02:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-03-18 15:02:39 +0200 |
commit | 6b9bdad3b68b12ff8e2075d54c1f7f005bb2f768 (patch) | |
tree | 8ccd47c832ea6fd8dea6d12e3b9f36c8c0e72033 /libbuild2/file-cache.hxx | |
parent | 562af3a7f3742bf57b007e904e0bb661a5da1dab (diff) |
Add noop mode to file cache, add --file-cache option to select
Diffstat (limited to 'libbuild2/file-cache.hxx')
-rw-r--r-- | libbuild2/file-cache.hxx | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/libbuild2/file-cache.hxx b/libbuild2/file-cache.hxx index 1502fb8..d6904ed 100644 --- a/libbuild2/file-cache.hxx +++ b/libbuild2/file-cache.hxx @@ -74,22 +74,25 @@ namespace build2 // one that simply saves the file on disk) is file_cache::entry that is just // auto_rmfile. - // The synchronous compressed file cache implementation. + // The synchronous LZ4 on-disk compression file cache implementation. // // If the cache entry is no longer pinned, this implementation compresses - // the content and removes the uncompressed file all as part of the call that - // caused the entry to become unpinned. + // the content and removes the uncompressed file all as part of the call + // that caused the entry to become unpinned. // // In order to deal with interruptions during compression, when recreating // the cache entry state from the filesystem state, this implementation // treats the presence of the uncompressed file as an indication that the // compressed file, if any, is invalid. // - class scheduler; - class file_cache { public: + // If compression is disabled, then this implementation becomes equivalent + // to the noop implementation. + // + explicit + file_cache (bool compress = true); class entry; @@ -108,7 +111,6 @@ namespace build2 close (); write (): entry_ (nullptr) {} - ~write (); // Move-to-NULL-only type. // @@ -117,6 +119,8 @@ namespace build2 write& operator= (write&&); write& operator= (const write&) = delete; + ~write (); + private: friend class entry; @@ -133,7 +137,6 @@ namespace build2 { public: read (): entry_ (nullptr) {} - ~read (); // Move-to-NULL-only type. // @@ -142,6 +145,8 @@ namespace build2 read& operator= (read&&); read& operator= (const read&) = delete; + ~read (); + private: friend class entry; @@ -203,11 +208,13 @@ namespace build2 entry& operator= (entry&&); entry& operator= (const entry&) = delete; - // Implementation details. - // - entry (path_type, bool); ~entry (); + private: + friend class file_cache; + + entry (path_type, bool, bool); + void preempt (); @@ -224,7 +231,7 @@ namespace build2 state state_ = null; path_type path_; // Uncompressed path. - path_type comp_path_; // Compressed path. + path_type comp_path_; // Compressed path (empty if disabled). size_t pin_ = 0; // Pin count. }; @@ -254,10 +261,8 @@ namespace build2 string compressed_extension (const char* ext = nullptr); - // Implementation details. - // - explicit - file_cache (scheduler&); + private: + bool compress_; }; } |