]> git.ipfire.org Git - thirdparty/ccache.git/commit
Refactor main primary storage backend code into storage/primary
authorJoel Rosdahl <joel@rosdahl.net>
Tue, 15 Jun 2021 19:13:10 +0000 (21:13 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sun, 27 Jun 2021 07:01:19 +0000 (09:01 +0200)
commitc7c0837a23fe9dc79613bf3dd4ddd8d91c58d541
treef7289d7d9b741d72be60d50703f8e1918c064833
parentaccd21e452da13f12877571f90dae7e34feca23b
Refactor main primary storage backend code into storage/primary

This is the code that deals with retrieving and storing cache entries.
20 files changed:
src/CMakeLists.txt
src/Context.cpp
src/Context.hpp
src/Manifest.cpp
src/Manifest.hpp
src/Result.cpp
src/Util.hpp
src/ccache.cpp
src/core/CMakeLists.txt [new file with mode: 0644]
src/core/types.hpp [new file with mode: 0644]
src/storage/CMakeLists.txt [new file with mode: 0644]
src/storage/Storage.cpp [new file with mode: 0644]
src/storage/Storage.hpp [new file with mode: 0644]
src/storage/primary/CMakeLists.txt [new file with mode: 0644]
src/storage/primary/PrimaryStorage.cpp [new file with mode: 0644]
src/storage/primary/PrimaryStorage.hpp [new file with mode: 0644]
src/storage/types.hpp [new file with mode: 0644]
src/util/CMakeLists.txt
src/util/file_utils.cpp [new file with mode: 0644]
src/util/file_utils.hpp [new file with mode: 0644]