| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update horde compute to use Jupiter for storage (#60) | Joe Kirchoff | 2022-03-17 | 4 | -121/+216 |
| | | |||||
| * | Value propagation fix - Read/Write ValueAPI as CompressedBinary type when ↵ | mattpetersepic | 2022-02-18 | 2 | -5/+39 |
| | | | | | | | writing to zen and horde upstreams. Return failure from HandleGetCacheRecord if the requested type does not match the cachetype. (#55) * Fix bug with getting values PUT to Jupiter as CompressedBinary. When getting CompressedBinary records from Jupiter, they are expected to now be a record with a reference to the compact binary. This has to be accounted for when performing upstream GETs. * HandleGetCacheRecord: avoid crashing on invalid type, and avoid sending back data that doesn't match the AcceptType. | ||||
| * | Fix typo 'application/x-ue-cb-cbpkg' -> 'application/x-ue-cbpkg' | Matt Peters | 2022-02-11 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #52 from EpicGames/ValuePropagationFix | zousar | 2022-02-09 | 3 | -101/+227 |
| |\ | | | | | Change Value propagation to Zen or Jupiter | ||||
| | * | prepare_commit to fix formatting | zousar | 2022-02-09 | 1 | -44/+46 |
| | | | |||||
| | * | Change Value propagation to Zen or Jupiter | zousar | 2022-02-08 | 3 | -105/+229 |
| | | | | | | | | | This change ensures we retain the right content type of kCompressedBinary when propagating values from Zen->UpstreamZen. This is done via an RPC that posts a CbPackage. Furthermore when propagating from Zen->Jupiter, it composes its own referencing CbObject for them instead of sending a octet content type and Jupiter defining the referencing CbObject. When fetching Values from Jupiter, this new composed CbObject is still interpreted correctly by Zen. | ||||
| * | | Remove the backwards compatibility for the Zen CachePolicy changes no… (#49) | mattpetersepic | 2022-02-08 | 1 | -3/+0 |
| |/ | | | 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. | ||||
| * | Minor cleanup of free functions. | Per Larsson | 2022-02-03 | 4 | -42/+47 |
| | | |||||
| * | Merged main. | Per Larsson | 2022-02-02 | 6 | -169/+215 |
| |\ | |||||
| | * | Some minor cleanup | Stefan Boberg | 2022-02-02 | 2 | -37/+21 |
| | | | |||||
| | * | Mash -> MeshTracker | Stefan Boberg | 2022-02-02 | 2 | -12/+18 |
| | | | |||||
| | * | clang-format | Stefan Boberg | 2022-02-02 | 1 | -2/+2 |
| | | | |||||
| | * | Cache policy support (#47) | mattpetersepic | 2022-02-01 | 2 | -122/+172 |
| | | | | | | | | | | | | | | | | | 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. | ||||
| * | | Removed unnecessary headers. | Per Larsson | 2022-02-02 | 1 | -5/+1 |
| | | | |||||
| * | | Added upstream auth config and removed the possibility to add endpoints via ↵ | Per Larsson | 2022-02-02 | 4 | -164/+39 |
| | | | | | | | | | REST. | ||||
| * | | Parse expire time from OpenID refresh token and added OpenId token provider. | Per Larsson | 2022-02-02 | 3 | -4/+24 |
| | | | |||||
| * | | Moved cloud cache token provider out from options. | Per Larsson | 2022-02-01 | 6 | -21/+36 |
| | | | |||||
| * | | Refactored cloud cache access token provider. | Per Larsson | 2022-02-01 | 6 | -28/+50 |
| | | | |||||
| * | | Parital completed cloud cache token provider interface. | Per Larsson | 2022-02-01 | 4 | -270/+180 |
| | | | |||||
| * | | Merged main. | Per Larsson | 2022-01-28 | 4 | -94/+98 |
| |\| | |||||
| | * | Rename Paylod to Value to match the client side. Rename PayloadId to ↵ | mattpetersepic | 2022-01-27 | 4 | -73/+74 |
| | | | | | | | | | ValueContentId where its a hash instead of an oid. | ||||
| | * | Implement SkipData,QueryLocal,StoreLocal for HandleRpcGetCacheRecords (#41) | mattpetersepic | 2022-01-26 | 1 | -12/+15 |
| | | | | | | | * Implement SkipData,QueryLocal,StoreLocal for HandleRpcGetCacheRecords. | ||||
| | * | Fixed issue with missing endpoint name when configuring upstream cache from Lua. | Per Larsson | 2022-01-26 | 1 | -1/+3 |
| | | | |||||
| | * | Cachepolicy (#36) | mattpetersepic | 2022-01-25 | 1 | -11/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 | ||||
| * | | Get access token from auth mgr. | Per Larsson | 2022-01-28 | 4 | -9/+17 |
| |/ | |||||
| * | Refactored upstream cache to better handle different states in prep for ↵ | Per Larsson | 2022-01-24 | 7 | -343/+672 |
| | | | | | dynamic auth tokens. | ||||
| * | Format fix. | Per Larsson | 2022-01-22 | 1 | -12/+16 |
| | | |||||
| * | Not all toolchains support C++20's atomic<double>::fetch_add() | Martin Ridgers | 2022-01-11 | 2 | -18/+17 |
| | | |||||
| * | Two missing override keywords | Martin Ridgers | 2022-01-10 | 1 | -2/+2 |
| | | |||||
| * | Converted use of _format UDL to fmt::format | Martin Ridgers | 2022-01-10 | 3 | -24/+12 |
| | | |||||
| * | Added trace scopes. | Per Larsson | 2021-12-15 | 2 | -0/+58 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 6 | -149/+100 |
| |\ | |||||
| | * | Partial revert b363c5b | Joe Kirchoff | 2021-12-13 | 1 | -67/+13 |
| | | | |||||
| | * | A 'long int' is larger on non-Windows causing narrowing warnings | Martin Ridgers | 2021-12-08 | 1 | -15/+23 |
| | | | |||||
| | * | Merged main | Martin Ridgers | 2021-12-08 | 2 | -41/+89 |
| | |\ | |||||
| | * \ | Merged main | Martin Ridgers | 2021-12-08 | 1 | -11/+17 |
| | |\ \ | |||||
| | * | | | Wait on an event instead of using sleep() | Martin Ridgers | 2021-11-26 | 1 | -4/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The sleep() means it can take up to "update_interval * 2" (currently 10 seconds) to shutdown the thread. Not only is it desirable that binaries exit cleanly as quickly as possible, units tests were taking a considerable amount of time to run due to the sleep. | ||||
| | * | | | Merged main | Martin Ridgers | 2021-11-25 | 1 | -0/+4 |
| | |\ \ \ | |||||
| | * \ \ \ | Merged main | Martin Ridgers | 2021-11-22 | 3 | -48/+102 |
| | |\ \ \ \ | |||||
| | * \ \ \ \ | Merged main | Martin Ridgers | 2021-11-17 | 1 | -13/+55 |
| | |\ \ \ \ \ | |||||
| | * | | | | | | Post-merge compile fixes | Martin Ridgers | 2021-11-17 | 1 | -1/+1 |
| | | | | | | | | |||||
| | * | | | | | | Merged main | Martin Ridgers | 2021-11-17 | 6 | -63/+67 |
| | |\ \ \ \ \ \ | |||||
| | * | | | | | | | Compile fix | Martin Ridgers | 2021-11-17 | 1 | -1/+1 |
| | | | | | | | | | |||||
| | * | | | | | | | Merged main | Martin Ridgers | 2021-11-17 | 5 | -25/+63 |
| | |\ \ \ \ \ \ \ | |||||
| | * \ \ \ \ \ \ \ | Merged main | Martin Ridgers | 2021-11-16 | 1 | -6/+40 |
| | |\ \ \ \ \ \ \ \ | |||||
| | * | | | | | | | | | GCC does not like CacheKey member being named the same as its type | Martin Ridgers | 2021-11-15 | 2 | -34/+34 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | Merged main | Martin Ridgers | 2021-11-15 | 6 | -33/+417 |
| | |\ \ \ \ \ \ \ \ \ | |||||
| | * | | | | | | | | | | Wrapped "upstream apply" in ZEN_WITH_COMPUTE_SERVICES | Martin Ridgers | 2021-11-12 | 2 | -0/+11 |
| | | | | | | | | | | | | |||||
| | * | | | | | | | | | | Merged main | Martin Ridgers | 2021-11-12 | 4 | -64/+1833 |
| | |\ \ \ \ \ \ \ \ \ \ | |||||
| | * \ \ \ \ \ \ \ \ \ \ | Merged main | Martin Ridgers | 2021-11-03 | 2 | -96/+111 |
| | |\ \ \ \ \ \ \ \ \ \ \ | |||||