| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | filecas: Added handling of error when a rename is attempted but the target ↵ | Stefan Boberg | 2021-10-08 | 1 | -1/+8 | |
| | | | | | already exists | |||||
| * | Merged from upstream | Stefan Boberg | 2021-10-05 | 1 | -2/+10 | |
| | | ||||||
| * | Ensure FILE_RENAME_INFO structure allocation is freed also if ↵ | Stefan Boberg | 2021-09-25 | 1 | -2/+3 | |
| | | | | | FileCasStrategy::InsertChunk() throws | |||||
| * | Encapsulated containers in CasChunkSet to allow for more efficient ↵ | Stefan Boberg | 2021-09-21 | 1 | -38/+21 | |
| | | | | | udpates/queries | |||||
| * | Wired up scrubbing to more higher level services | Stefan Boberg | 2021-09-21 | 1 | -30/+53 | |
| | | | | | Also moved sharding logic for filecas into a function to redduce cut/pasta | |||||
| * | Fixed another issue with filecas name sharding | Stefan Boberg | 2021-09-20 | 1 | -1/+1 | |
| | | ||||||
| * | Moved more code into zen namespace, for consistency | Stefan Boberg | 2021-09-20 | 1 | -1/+1 | |
| | | | | | Also removed snapshot_manifest (remnants of vfs prototype) | |||||
| * | Fixed unused variable warnings exposed by xmake build (unclear why I do not ↵ | Stefan Boberg | 2021-09-19 | 1 | -1/+7 | |
| | | | | | 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 | -17/+78 | |
| | | | | | 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 | -0/+5 | |
| | | ||||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -6/+6 | |
| | | | | | | | * 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 | -1/+1 | |
| | | | | | easier to tweak implementation | |||||
| * | Silence unused parameter warning | Stefan Boberg | 2021-09-04 | 1 | -0/+1 | |
| | | ||||||
| * | Format fix. | Per Larsson | 2021-08-31 | 1 | -1/+1 | |
| | | ||||||
| * | Removed FileCasImpl (unused) | Stefan Boberg | 2021-08-26 | 1 | -80/+4 | |
| | | ||||||
| * | Added missing lock to side channel InsertChunk() implementation | Stefan Boberg | 2021-08-26 | 1 | -6/+39 | |
| | | | | | Previously, this could cause file contention as two threads would try to create the same chunk file | |||||
| * | 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/+39 | |
| | | | | | optimization) | |||||
| * | Improved comment while reviewing code | Stefan Boberg | 2021-08-21 | 1 | -1/+1 | |
| | | ||||||
| * | Changed file CAS implementation to use ThrowSystemException instead of ↵ | Stefan Boberg | 2021-08-20 | 1 | -2/+2 | |
| | | | | | WindowsException to get more detail on failures | |||||
| * | clang-format | Stefan Boberg | 2021-08-12 | 1 | -2/+2 | |
| | | ||||||
| * | Implemented Flush() operation for CID/CAS store interfaces | Stefan Boberg | 2021-08-11 | 1 | -0/+11 | |
| | | ||||||
| * | Added some more diagnostics to potential file operation errors | Stefan Boberg | 2021-05-27 | 1 | -2/+7 | |
| | | ||||||
| * | Fixed logic to avoid a race condition which could cause a sharing violation ↵ | Stefan Boberg | 2021-05-27 | 1 | -0/+4 | |
| | | | | | when two threads try to write the same chunk | |||||
| * | Removed pointer-based InsertChunk from CAS store interface. | Stefan Boberg | 2021-05-25 | 1 | -4/+0 | |
| | | | | | All code must now use the IoBuffer path | |||||
| * | Added logic to guard against accidental file move in file CAS fast path | Stefan Boberg | 2021-05-13 | 1 | -1/+4 | |
| | | | | | Now verifies the chunk is referencing an entire file before moving it into place | |||||
| * | Implemented move-in-place for large CAS payloads | Stefan Boberg | 2021-05-13 | 1 | -0/+108 | |
| | | ||||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+237 | |