]> git.ipfire.org Git - thirdparty/ccache.git/commit
Move code for cleanup, compressing and similar to storage/primary
authorJoel Rosdahl <joel@rosdahl.net>
Tue, 20 Jul 2021 11:46:37 +0000 (13:46 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Thu, 22 Jul 2021 18:55:25 +0000 (20:55 +0200)
commit5ceae21a9a43de511135d1a2a4a8d3244f866dd8
tree6c92e1175583cd6550eb309255cc4405a8ae5392
parent53c1898847a5c3492c72d3c8163ce9d7a81292a4
Move code for cleanup, compressing and similar to storage/primary
22 files changed:
src/CMakeLists.txt
src/Util.cpp
src/Util.hpp
src/ccache.cpp
src/cleanup.hpp [deleted file]
src/compress.hpp [deleted file]
src/storage/Storage.hpp
src/storage/primary/CMakeLists.txt
src/storage/primary/CacheFile.cpp [moved from src/CacheFile.cpp with 96% similarity]
src/storage/primary/CacheFile.hpp [moved from src/CacheFile.hpp with 95% similarity]
src/storage/primary/PrimaryStorage.cpp
src/storage/primary/PrimaryStorage.hpp
src/storage/primary/PrimaryStorage_cleanup.cpp [moved from src/cleanup.cpp with 74% similarity]
src/storage/primary/PrimaryStorage_compress.cpp [moved from src/compress.cpp with 75% similarity]
src/storage/primary/util.cpp [new file with mode: 0644]
src/storage/primary/util.hpp [new file with mode: 0644]
src/storage/secondary/FileStorage.hpp
src/storage/secondary/HttpStorage.hpp
src/storage/secondary/RedisStorage.hpp
unittest/CMakeLists.txt
unittest/test_Util.cpp
unittest/test_storage_primary_util.cpp [new file with mode: 0644]