aboutsummaryrefslogtreecommitdiff
path: root/zenutil/zenserverprocess.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added namespace scopes to more includes for better consistencyStefan Boberg2021-09-171-28/+32
|
* Moved zenserverprocess into zenutil/zenserverprocess.hStefan Boberg2021-09-171-1/+1
|
* Merge branch 'main' of https://github.com/EpicGames/zenStefan Boberg2021-09-161-2/+7
|\
| * Compact binary package caching support (#9)Per Larsson2021-09-161-2/+7
| |
* | Changed how sponsor processes are managedStefan Boberg2021-09-161-2/+56
|/ | | | 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-151-10/+10
| | | | | | * 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-151-1/+1
| | | | 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-081-0/+11
|
* Silence truncation warningStefan Boberg2021-09-041-1/+1
|
* Extended ZenServerInstance life cycle managementStefan Boberg2021-08-091-7/+34
|
* 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-091-0/+30
|
* Added ZenServerState implementation, used to track and enumerate live Zen ↵Stefan Boberg2021-08-091-0/+248
| | | | server instances
* Added support for defining test/non-test server environmentsStefan Boberg2021-08-061-35/+117
|
* Repurposing test utility code to enable server control via zenStefan Boberg2021-08-061-0/+173