aboutsummaryrefslogtreecommitdiff
path: root/zenutil
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Handle 'partial on error' cache policy.Per Larsson2021-11-151-0/+3
| | |_|/ | |/| |
| * | | Updated cache policy according to UE.Per Larsson2021-11-151-16/+60
| | | |
| * | | Format fix.Per Larsson2021-11-121-1/+1
| | | |
| * | | Fixed bug when cloning CbObject.Per Larsson2021-11-122-0/+7
| | | |
| * | | Movec cache utility types to zenutil and fixed unit tests.Per Larsson2021-11-127-0/+348
| | |/ | |/|
* | | Merged from mainStefan Boberg2021-10-292-4/+15
|\| |
| * | Lockfile implementation (#24)Stefan Boberg2021-10-272-5/+17
| |/ | | | | | | | | Implemented lockfile synchronization To be used instead of or in conjunction with existing events to coordinate launching and discovery of server instances
* | general: Fixed up some vcxproj files which had a warning level setStefan Boberg2021-10-241-2/+0
| | | | | | | | | | | | Thus they did not get the same settings as all other projects which made it easy to introduce warnings which would trigger in xmake builds Cleaned up some #include usage to use third-party include brackets
* | clang-formatStefan Boberg2021-10-231-1/+1
| |
* | Added IsReady flag to ZenServerEntryStefan Boberg2021-10-211-1/+2
|/
* Moved more code into zen namespace, for consistencyStefan Boberg2021-09-202-23/+23
| | | | Also removed snapshot_manifest (remnants of vfs prototype)
* Simplified AnyUserSecurityAttributes helperStefan Boberg2021-09-181-9/+5
|
* Added better handling for read-only modeStefan Boberg2021-09-172-1/+6
|
* clang-formatStefan Boberg2021-09-171-1/+1
|
* Added namespace scopes to more includes for better consistencyStefan Boberg2021-09-172-28/+36
|
* Moved zenserverprocess into zenutil/zenserverprocess.hStefan Boberg2021-09-174-3/+9
|
* Exposed session id in ZenServerStateStefan Boberg2021-09-161-5/+7
|
* Merge branch 'main' of https://github.com/EpicGames/zenStefan Boberg2021-09-162-3/+8
|\
| * Compact binary package caching support (#9)Per Larsson2021-09-162-3/+8
| |
* | Changed how sponsor processes are managedStefan Boberg2021-09-162-4/+66
|/ | | | We can now monitor more than one process and if a new process is started on the same port we will hand over the owner pid to the process which is already executing before exiting. Note that this is only done if there is actually already an owner process in the instance list.
* Changed `std::exception` into `std::runtime_error` since `std::exception` ↵Stefan Boberg2021-09-151-2/+2
| | | | does not have a constructor which accepts a string argument in the standard (this appears to be an MSVC implementation thing)
* Changed logging implementationStefan Boberg2021-09-152-11/+11
| | | | | | * 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 Boberg2021-09-152-2/+2
| | | | easier to tweak implementation
* clang-formatStefan Boberg2021-09-091-1/+1
|
* Log spawned process nameStefan Boberg2021-09-081-2/+2
|
* Adding ZenServerInstance::GetBaseUri()Stefan Boberg2021-09-082-0/+14
|
* Further xmake file cleanupStefan Boberg2021-09-071-0/+1
|
* Silence truncation warningStefan Boberg2021-09-041-1/+1
|
* xmake build files (experimental)Stefan Boberg2021-09-041-0/+5
|
* Cleaned up project configurationStefan Boberg2021-09-031-2/+9
| | | | zencore, zenutil and zenstore now declare their public include directories which ends up getting added to any dependent projects
* Extended ZenServerInstance life cycle managementStefan Boberg2021-08-092-9/+50
|
* Changed naming scheme for lifecycle events. Always create shutdown events ↵Stefan Boberg2021-08-091-1/+1
| | | | (not just in test scenarios)
* Added ZenServerInstance::AttachToRunningServerStefan Boberg2021-08-092-6/+37
|
* Added ZenServerState implementation, used to track and enumerate live Zen ↵Stefan Boberg2021-08-092-0/+290
| | | | server instances
* Added support for defining test/non-test server environmentsStefan Boberg2021-08-062-45/+131
|
* Repurposing test utility code to enable server control via zenStefan Boberg2021-08-064-0/+344