| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add `import-project` and `export-project` (#183) | Dan Engelbrecht | 2022-11-18 | 2 | -8/+11 |
| | | | | * Add `import-project` and `export-project` command line parsing | ||||
| * | move BasicFile to zenutil to remove zenstore dependency from zen command (#190) | Dan Engelbrecht | 2022-11-17 | 2 | -0/+688 |
| | | |||||
| * | Add "Accept" field in RPC request to gracefully handle requests from older ↵ | Dan Engelbrecht | 2022-10-13 | 2 | -0/+32 |
| | | | | | instances (#180) | ||||
| * | Implement proper GetCacheValues upstream (#155) | Dan Engelbrecht | 2022-09-06 | 1 | -0/+6 |
| | | | | | * Implement proper GetCacheValues upstream * changelog | ||||
| * | De/fix crash on non responding upstream (#145) | Dan Engelbrecht | 2022-08-19 | 1 | -0/+1 |
| | | | | * Fix ZenStructuredCacheClient lifetime issues | ||||
| * | Remove PutCacheRecordRequest::RecordBody and GetCacheRecordResult:RecordBody ↵ | Dan Engelbrecht | 2022-07-01 | 2 | -50/+50 |
| | | | | | (#140) | ||||
| * | Use cacherequest::* for zenserver tests (#135) | Dan Engelbrecht | 2022-06-30 | 1 | -0/+6 |
| | | | | | | * use cacherequests in zcache.rpc * use cacherequests for zcache.rpc.allpolicies | ||||
| * | Add ability to control where in the result array results go in ↵ | Dan Engelbrecht | 2022-06-30 | 2 | -14/+55 |
| | | | | | GetCacheRecordsResult::Parse and CacheValuesResult::Parse (#138) | ||||
| * | add optional filter when writing GetCacheRecordsRequest and ↵ | Dan Engelbrecht | 2022-06-29 | 2 | -19/+67 |
| | | | | | GetCacheValuesRequest (#137) | ||||
| * | cache requests API (#134) | Dan Engelbrecht | 2022-06-27 | 2 | -0/+1759 |
| | | |||||
| * | Keep Namespace out of CacheKey and store it on request level | Dan Engelbrecht | 2022-05-19 | 1 | -9/+1 |
| | | | | | | RPC requests now has a Namespace field under Params instead of one Namespace per cache key Fall back to legacy upstream HTTP URI format if default namespace is requested | ||||
| * | Add caseSensitiveCompareStrings and manual <=> and == operator for CacheKey | Dan Engelbrecht | 2022-05-12 | 1 | -4/+10 |
| | | | | | MacOS clang compiler does not implement a default <=> operator for string | ||||
| * | manual <=> calls for strings in CacheKey | Dan Engelbrecht | 2022-05-12 | 1 | -1/+8 |
| | | |||||
| * | use spaceship operator for CacheKey comparisons | Dan Engelbrecht | 2022-05-11 | 1 | -22/+2 |
| | | |||||
| * | parameterize namespace for upstream (first hack) | Dan Engelbrecht | 2022-05-11 | 1 | -6/+12 |
| | | |||||
| * | Add pre-commit config (#69) | Joe Kirchoff | 2022-04-05 | 1 | -2/+2 |
| | | | | | | | | * Add .pre-commit-config.yaml * format all using pre-commit clang-format hook * Add pre-commit to inject unreal header comment * Remove prepare_commit.bat & update CODING.md * Remove check-added-large-files, add headers before clang-format | ||||
| * | clang format | Dan Engelbrecht | 2022-03-23 | 1 | -2/+2 |
| | | |||||
| * | Enable Horde compute code on Linux & Mac (#61) | Joe Kirchoff | 2022-03-22 | 1 | -2/+2 |
| | | |||||
| * | Linux compile fix | Martin Ridgers | 2022-02-21 | 1 | -2/+2 |
| | | |||||
| * | Explicitly set access permissions so we're not affected by process' umask | Martin Ridgers | 2022-02-21 | 1 | -2/+3 |
| | | |||||
| * | Marked a few file descriptors to be closed on execute (POSIX) | Martin Ridgers | 2022-02-21 | 1 | -2/+2 |
| | | |||||
| * | POSIX states the shared memory paths should start with a slash | Martin Ridgers | 2022-02-11 | 1 | -2/+2 |
| | | |||||
| * | Simplify HandleRpcGetCacheChunks (#53) | mattpetersepic | 2022-02-09 | 1 | -1/+0 |
| | | | | Refactor HandleRpcGetCacheChunks to reduce complexity. Port CacheStore tests from Unreal. | ||||
| * | Remove the backwards compatibility for the Zen CachePolicy changes no… (#49) | mattpetersepic | 2022-02-08 | 2 | -18/+1 |
| | | | | Remove the backwards compatibility for the Zen CachePolicy changes now that there has been enough time for all internal users of the old protocol to update. | ||||
| * | Merging minor fixes to main | Stefan Boberg | 2022-02-07 | 2 | -9/+24 |
| |\ | |||||
| | * | Changed some initializers to constinit to ensure compile time initialization | Stefan Boberg | 2022-02-04 | 1 | -8/+24 |
| | | | | | | | | | Also changed ConvertToUpstream to not use so many ternary operators to improve debuggability | ||||
| | * | removed unnecessary <unordered_map> include | Stefan Boberg | 2022-02-04 | 1 | -1/+0 |
| | | | |||||
| * | | Fixed signed/unsigned comparison compile error | Martin Ridgers | 2022-02-03 | 1 | -1/+1 |
| |/ | |||||
| * | CacheRecordPolicy: Fix inverted PolicyMask expression that caused parsing ↵ | Matt Peters | 2022-02-01 | 1 | -2/+2 |
| | | | | | ValuePolicies to fail. | ||||
| * | Cache policy support (#47) | mattpetersepic | 2022-02-01 | 3 | -198/+277 |
| | | | | | | | | | Add HandleRpc methods for the remaining ICacheStore requests from unreal: PutCacheValues/GetCacheValues. We now have batched versions for PutCacheRecords,GetCacheRecords,PutCacheValues,GetCacheValues,GetCacheChunks. Add support for CachePolicy flags to all of these batched methods. * Add Batched PutCacheValues/GetCacheValues. Rename old GetCacheValues to GetCacheChunks. * HandleRpcGetCacheRecords: Receive a CacheRecordPolicy with each key, and skipdata on attachments we already have. * Changes to CachePolicy copied from Release-5.0 depot. Change serialization to use the key BasePolicy instead of DefaultValuePolicy. * GetChunks: Read CacheRecords from remote if necessary to find ContentId. Implement QueryLocal, StoreLocal, and SkipData. | ||||
| * | Rename Paylod to Value to match the client side. Rename PayloadId to ↵ | mattpetersepic | 2022-01-27 | 1 | -3/+3 |
| | | | | | ValueContentId where its a hash instead of an oid. | ||||
| * | Handle HTTP port collisions when initializing server (#40) | zousar | 2022-01-27 | 2 | -17/+20 |
| | | |||||
| * | Implement SkipData,QueryLocal,StoreLocal for HandleRpcGetCacheRecords (#41) | mattpetersepic | 2022-01-26 | 2 | -0/+24 |
| | | | | * Implement SkipData,QueryLocal,StoreLocal for HandleRpcGetCacheRecords. | ||||
| * | Unused Delimiter string_view wouldn't compile POISX platforms | Martin Ridgers | 2022-01-25 | 1 | -1/+0 |
| | | |||||
| * | Cachepolicy (#36) | mattpetersepic | 2022-01-25 | 2 | -143/+278 |
| | | | | | | | | | | | | | | | | | | * 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 | ||||
| * | Fixed CacheRecordPolicy::Save | Devin Doucette | 2022-01-20 | 1 | -0/+2 |
| | | |||||
| * | Added copyright headers to xmake.lua scripts | Martin Ridgers | 2022-01-20 | 1 | -0/+2 |
| | | |||||
| * | Converted use of _format UDL to fmt::format | Martin Ridgers | 2022-01-10 | 1 | -3/+1 |
| | | |||||
| * | Turn all ThrowLastError() sites in source_location variants | Martin Ridgers | 2022-01-07 | 1 | -2/+1 |
| | | |||||
| * | Added preprocessing config file and removed Visual Studio files. | Per Larsson | 2021-12-15 | 2 | -151/+0 |
| | | |||||
| * | Include header files when generating solution. | Per Larsson | 2021-12-14 | 1 | -1/+2 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 2 | -114/+112 |
| |\ | |||||
| | * | Fixed unused return value warnings from POSIX/Linux headers | Martin Ridgers | 2021-12-08 | 1 | -1/+2 |
| | | | |||||
| | * | Merged main | Martin Ridgers | 2021-12-08 | 1 | -0/+24 |
| | |\ | |||||
| | * | | Sponsor PIDs were getting truncated to 16 bits which isn't portable | Martin Ridgers | 2021-11-26 | 1 | -1/+1 |
| | | | | |||||
| | * | | Added log if a wait was abandoned because the process disappeared | Martin Ridgers | 2021-11-24 | 1 | -0/+1 |
| | | | | |||||
| | * | | Moved librt dependency specification to zencore/xmake.lua | Martin Ridgers | 2021-11-24 | 1 | -5/+1 |
| | | | | |||||
| | * | | Changed SpawnServer() over to use zen::CreateProc() | Martin Ridgers | 2021-11-16 | 1 | -82/+23 |
| | | | | |||||
| | * | | Merged main | Martin Ridgers | 2021-11-15 | 1 | -0/+3 |
| | |\ \ | |||||
| | * \ \ | Merged main | Martin Ridgers | 2021-11-15 | 7 | -0/+399 |
| | |\ \ \ | |||||