aboutsummaryrefslogtreecommitdiff
path: root/zenserver/testing/launch.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make cas storage an hidden implementation detail of CidStore (#130)v0.1.4-pre6v0.1.4-pre5Dan Engelbrecht2022-06-171-8/+18
| | | | | | | | | | | | | | | | | | - Bumped ZEN_SCHEMA_VERSION - CasStore no longer a public API, it is hidden behind CidStore - Moved cas.h from public header folder - CidStore no longer maps from Cid -> Cas, we store entries in Cas under RawHash - CasStore now decompresses data to validate content (matching against RawHash) - CasChunkSet renames to HashKeySet and put in separate header/cpp file - Disabled "Chunk" command for now as it relied on CAS being exposed as a service - Changed CAS http service to Cid http server - Moved "Run" command completely inside ZEN_WITH_EXEC_SERVICES define - Removed "cas.basic" test - Uncommented ".exec.basic" test and added return-skip at start of test - Moved ScrubContext to separate header file - Renamed CasGC to GcManager - Cleaned up configuration passing in cas store classes - Removed CAS stuff from GcContext and clarified naming in class - Remove migration code
* Add pre-commit config (#69)Joe Kirchoff2022-04-051-4/+4
| | | | | | | * 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 formatDan Engelbrecht2022-03-231-4/+4
|
* Enable Horde compute code on Linux & Mac (#61)Joe Kirchoff2022-03-221-6/+6
|
* Converted use of _format UDL to fmt::formatMartin Ridgers2022-01-101-3/+1
|
* Merged main.Per Larsson2021-12-141-22/+43
|\
| * Removed if-def ZEN_PLATFORM_WINDOWS as its covered by WITH_COMPUTE nowMartin Ridgers2021-11-031-23/+7
| |
| * Wrapped /apply/ and /exec/ services in a ZEN_WITH_COMPUTE_SERVICES defineMartin Ridgers2021-11-031-0/+4
| |
| * If-def'd Basic and SandboxedJob classes temporarilyMartin Ridgers2021-10-291-0/+17
| |
| * Fixed warnings about unhandled switch casesMartin Ridgers2021-10-291-0/+12
| |
| * CAS.cpp/h -> cas.cpp/h to keep Zen's file casing consistentMartin Ridgers2021-10-291-1/+1
| |
| * Fixed up Windows-specific include statementsMartin Ridgers2021-10-291-8/+12
|/
* Changed `std::exception` into `std::runtime_error` since `std::exception` ↵Stefan Boberg2021-09-151-1/+1
| | | | 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-12/+12
| | | | | | * 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 so more loggers go via the zen::loggers interfaceStefan Boberg2021-09-151-1/+2
|
* HttpResponse enum -> HttpResponseCodeStefan Boberg2021-09-121-3/+3
| | | | Also removed initial CbPackage API HttpServer changes as I have decided to take a different approach
* Launch sandbox directory is now dynamic and configured from the main serverStefan Boberg2021-06-201-10/+26
| | | | Also added some debug logging
* Added process exit code to launcher responseStefan Boberg2021-06-181-1/+26
|
* Adding zenservice codeStefan Boberg2021-05-111-0/+490