| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | CAS.cpp/h -> cas.cpp/h to keep Zen's file casing consistent | Martin Ridgers | 2021-10-29 | 1 | -325/+0 |
| | | |||||
| * | Replaced use of DWORD with uint32_t | Martin Ridgers | 2021-10-13 | 1 | -1/+1 |
| | | |||||
| * | Corrected incorrect casing of include statements | Martin Ridgers | 2021-10-12 | 1 | -1/+1 |
| | | |||||
| * | Merged from upstream | Stefan Boberg | 2021-10-05 | 1 | -2/+9 |
| | | |||||
| * | cas: added some GC stubs | Stefan Boberg | 2021-10-01 | 1 | -0/+37 |
| | | |||||
| * | Fixed dumb bug in CasChunkSet::IterateChunks which would cause infinite loop | Stefan Boberg | 2021-09-23 | 1 | -1/+1 |
| | | |||||
| * | Encapsulated containers in CasChunkSet to allow for more efficient ↵ | Stefan Boberg | 2021-09-21 | 1 | -3/+36 |
| | | | | | udpates/queries | ||||
| * | Removed scrubbing from CasImpl::Initialize since this is triggered by higher ↵ | Stefan Boberg | 2021-09-21 | 1 | -3/+7 |
| | | | | | level code now | ||||
| * | Moved more code into zen namespace, for consistency | Stefan Boberg | 2021-09-20 | 1 | -2/+2 |
| | | | | | Also removed snapshot_manifest (remnants of vfs prototype) | ||||
| * | It's not possible to compile out tests | Stefan Boberg | 2021-09-20 | 1 | -1/+5 |
| | | | | | Tests are now compiled in if `ZEN_WITH_TESTS=1`, and compiled out if not. Compiling tests out reduces the footprint of the resulting executables quite significantly. | ||||
| * | Fixed unused variable warnings exposed by xmake build (unclear why I do not ↵ | Stefan Boberg | 2021-09-19 | 1 | -0/+1 |
| | | | | | receive them in VS, but likely due to vcpkg versioning) | ||||
| * | Implemended basic scrubbing / detection of disk corruption. Still needs more ↵ | Stefan Boberg | 2021-09-19 | 1 | -7/+17 |
| | | | | | code to propagate errors and make adjustments to account for them in higher level data structures | ||||
| * | Changed some code over from ATL to BasicFile and added Scrub() stubs. | Stefan Boberg | 2021-09-19 | 1 | -23/+62 |
| | | |||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -2/+2 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||
| * | Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵ | Stefan Boberg | 2021-09-15 | 1 | -2/+1 |
| | | | | | easier to tweak implementation | ||||
| * | Clang-format fixes | Stefan Boberg | 2021-08-24 | 1 | -1/+1 |
| | | |||||
| * | Implemented more formalised CAS chunk filtering (with plenty of room for ↵ | Stefan Boberg | 2021-08-23 | 1 | -0/+9 |
| | | | | | optimization) | ||||
| * | Implemented Flush() operation for CID/CAS store interfaces | Stefan Boberg | 2021-08-11 | 1 | -1/+9 |
| | | |||||
| * | Removed pointer-based InsertChunk from CAS store interface. | Stefan Boberg | 2021-05-25 | 1 | -23/+5 |
| | | | | | All code must now use the IoBuffer path | ||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+192 |