aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/run.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use zen::PathToUtf8() instead of WideToUtf8()Martin Ridgers2021-12-021-1/+1
|
* Updated RunCommand's file traversal to use platform-agnostic stringsMartin Ridgers2021-12-021-4/+4
|
* Fixed unused parameter warningMartin Ridgers2021-12-011-0/+1
|
* Merged mainMartin Ridgers2021-10-161-9/+2
|\
| * zencore: Enabled MSC warning 4668 to get warnings when preprocessor macros ↵Stefan Boberg2021-10-151-9/+2
| | | | | | | | | | | | | | | | are used without an explicit definition Also fixed up various code to compile with this, by using ZEN_THIRD_PARTY_INCLUDES_START/ZEN_THIRD_PARTY_INCLUDES_END macros Removed prewindows.h/postwindows.h since they are no longer to be used due to the above
* | Use std::fs::path for IoBuffer::MakeFromFile().Martin Ridgers2021-10-141-1/+1
|/ | | | | This is more consistent with MakeFromTempFile() and almost all arguments are path objects anyway.
* filesystem: Added FileContents::Flatten() and ensured it's possible to ↵Stefan Boberg2021-10-011-0/+1
| | | | #include filesystem.h standalone
* Removed MemoryOutStream, MemoryInStreamStefan Boberg2021-09-281-3/+2
| | | | | | | | BinaryWriter/BinaryReader now implements memory buffer functionality which previously needed two chained instances of a Buffer/Reader. This was originally expected to be an abstraction for file and other stream access but this is not going to be useful so may as well collapse the functionality. This also eliminates the need for stack-aware ref-counting which is the real reason for wanting to get rid of this code. This was a very old experimental feature which turned out to be a bad idea. This also removes the /cas/batch endpoint
* Merged main into linux-macMartin Ridgers2021-09-211-1/+5
|\
| * clang-formatStefan Boberg2021-09-171-1/+1
| |
| * Added namespace scopes to more includes for better consistencyStefan Boberg2021-09-171-0/+4
| |
| * Moved zenserverprocess into zenutil/zenserverprocess.hStefan Boberg2021-09-171-1/+1
| |
* | Use std::fd::path's character type for FileSysTraveral::Visitor APIMartin Ridgers2021-09-161-1/+1
|/
* Changed logging implementationStefan Boberg2021-09-151-5/+5
| | | | | | * 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
* Removed #pragma once from cpp files (copy pasta fail)Stefan Boberg2021-09-031-2/+0
|
* Added some new management commandsStefan Boberg2021-08-071-2/+2
|
* Adding zenservice codeStefan Boberg2021-05-111-0/+185