aboutsummaryrefslogtreecommitdiff
path: root/zencore
Commit message (Collapse)AuthorAgeFilesLines
...
* Encrypt serialized auth state.Per Larsson2022-02-032-1/+10
|
* clang-formatStefan Boberg2022-02-026-18/+18
|
* Initial support for symmetric encryption/decryption using OpenSSL.Per Larsson2022-01-313-0/+287
|
* TraceInit can now be initialized with "None" tracing modeStefan Boberg2022-01-302-1/+11
|
* Fixed missing template decorator on RefPtr friend classMartin Ridgers2022-01-251-0/+1
|
* Cachepolicy (#36)mattpetersepic2022-01-252-0/+39
| | | | | | | | | | | | | | | | | * Copy CachePolicy implementation from UE5/Release-5.0. Add backwards compatability for clients and upstreams that are using the old protocol. * Add RefPtr templated move operator and constructor, so that RefPtr<const Foo*> A = std::move(RefPtr<Foo*>()) will do a move. * Fix broken CachePolicy tests and add tests for new Save/Load. * Remove TODO comments * CachePolicy Save/Load Fixes from codereview * Fix comment to match code change. * Remove backwards compatibility for CachePolicy change. Convert policy string tokens to PascalCase. Fix tests for new policy text. Change ParseCachePolicy to assert string is non-empty and always succeed. * Fix release build: use ZEN_WITH_TESTS define
* Format fix.Per Larsson2022-01-2210-54/+71
|
* Added copyright headers to xmake.lua scriptsMartin Ridgers2022-01-201-0/+2
|
* Support chunk requests with no ValueId, and interpret them as requested for ↵mattpetersepic2022-01-171-1/+1
| | | | values put with the PutValue API, which sends a package with RawHash and RawSize on the root object. (#35)
* Disabled mimalloc on Mac-Arm64 as vcpkg doesn't support itMartin Ridgers2022-01-141-1/+6
|
* Fixed up compile errors if mimalloc use is disabledMartin Ridgers2022-01-141-0/+1
|
* Blake3 for Mac Arm64Martin Ridgers2022-01-131-1/+5
|
* Be explicit about what platforms a block implements for grepabilityMartin Ridgers2022-01-131-3/+3
|
* Use SysV semaphores to implement NamedEvent on LinuxMartin Ridgers2022-01-131-100/+7
|
* More complete toolchain and C++ library version checksMartin Ridgers2022-01-131-9/+24
|
* The "operator << (CbWriter, size_t)" is only required when using libc++Martin Ridgers2022-01-131-1/+1
|
* Missing includeMartin Ridgers2022-01-131-0/+1
|
* Added missing std:: namespace to nullptr_t useMartin Ridgers2022-01-132-6/+6
|
* Moved "concepts" include to zencore.h as toolchain support is spottyMartin Ridgers2022-01-134-3/+1
|
* Added a CbWriter stream operator for size_t-type valuesMartin Ridgers2022-01-101-0/+9
|
* Converted use of _format UDL to fmt::formatMartin Ridgers2022-01-105-50/+33
|
* Turn all ThrowLastError() sites in source_location variantsMartin Ridgers2022-01-072-10/+11
|
* Use POSIX implementation for ProcessHandle on MacMartin Ridgers2022-01-071-13/+5
|
* Use null-signal kill() to determine if a PID is validMartin Ridgers2022-01-071-10/+3
|
* Correct implementation of Invocable conceptMartin Ridgers2022-01-071-1/+1
| | | | | Without this the compiler is unable to resolve ambiguity when overloads only differ by the lambda's arguments.
* Use semtimedop() in NamedEvent::Wait() for platforms that support itMartin Ridgers2022-01-071-0/+15
|
* Implemented NamedEvents on Mac using System V semaphoresMartin Ridgers2022-01-071-2/+95
|
* Found some Wayward whitespaceMartin Ridgers2022-01-071-1/+1
|
* Added a trivial test call to GetCurrentThreadId()Martin Ridgers2022-01-071-0/+2
|
* Timeouts longer than one second wouldn't work as expectedMartin Ridgers2022-01-071-2/+2
|
* Corrected misleading commentMartin Ridgers2022-01-071-3/+3
|
* Include POSIX headers on all platforms except WindowsMartin Ridgers2022-01-071-2/+5
|
* A whitespace danceMartin Ridgers2022-01-072-4/+11
|
* Implemented IsProcessRunning() on a MacintoshMartin Ridgers2022-01-051-1/+4
|
* PathFromHandle() for MacMartin Ridgers2022-01-051-8/+13
| | | | | | While the /dev/fd/ mount does list the process' open file descriptors it turns out they are not symlinks so the previous readlink() didn't work as first thought.
* Contiguous range concepts for C++ libs that don't support them yetMartin Ridgers2022-01-051-2/+8
|
* Function parameter case consistency with the rest of the code baseMartin Ridgers2022-01-052-13/+13
|
* Cleaned up some unnecessary commentsMartin Ridgers2022-01-051-2/+0
|
* aligned_alloc() states that size must be a multiple of alignmentMartin Ridgers2022-01-051-0/+3
|
* Added a build of BLAKE3 for MacMartin Ridgers2022-01-051-0/+2
|
* Oodle for MacMartin Ridgers2022-01-051-0/+3
|
* CloneFile()'s unimplemented on Mac but shouldn't be a compile errorMartin Ridgers2022-01-051-1/+2
|
* An implementation of PathFromHandle() for MacMartin Ridgers2022-01-051-5/+11
|
* GetRunningExecutablePath() implementation for MacMartin Ridgers2022-01-051-2/+9
|
* Removed unused include statementMartin Ridgers2022-01-051-1/+0
|
* Added block of POSIX includes for MacMartin Ridgers2022-01-051-1/+10
|
* Use a CAS loop if atomic<Floating>::fetch_add() isn't availableMartin Ridgers2021-12-161-1/+13
|
* Only Linux has an endian.hMartin Ridgers2021-12-161-1/+1
|
* GetThreadId() for MacMartin Ridgers2021-12-161-1/+3
|
* Thread naming for MacMartin Ridgers2021-12-161-0/+4
|