| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | | | readlink() parameters should not alias each other | Martin Ridgers | 2021-09-29 | 1 | -10/+12 | |
| | | | | | | | ||||||
| | * | | | | | Fixed signed/unsigned mismatched warnings from GCC | Martin Ridgers | 2021-09-29 | 1 | -1/+1 | |
| | | | | | | | ||||||
| * | | | | | | Check available disk space before GC. | Per Larsson | 2021-12-05 | 1 | -0/+21 | |
| | | | | | | | ||||||
| * | | | | | | fs: minor logging cleanup | Stefan Boberg | 2021-11-02 | 1 | -3/+1 | |
| | |_|_|_|/ |/| | | | | ||||||
| * | | | | | filesystem: Improved test for GetRunningExecutablePath (still not ideal) | Stefan Boberg | 2021-10-29 | 1 | -1/+1 | |
| | |_|_|/ |/| | | | ||||||
| * | | | | Added another test exe name to GetExePath test | Stefan Boberg | 2021-10-08 | 1 | -2/+2 | |
| | |_|/ |/| | | ||||||
| * | | | Merged from upstream | Stefan Boberg | 2021-10-05 | 1 | -1/+8 | |
| | | | | ||||||
| * | | | filesystem: Added FileContents::Flatten() and ensured it's possible to ↵ | Stefan Boberg | 2021-10-01 | 1 | -0/+17 | |
| | |/ |/| | | | | | #include filesystem.h standalone | |||||
| * | | Clang format fix. | Per Larsson | 2021-10-01 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-09-29 | 1 | -1/+2 | |
| |\| | ||||||
| | * | Prevent mesh tests to crash by moving behind define. | Per Larsson | 2021-09-29 | 1 | -1/+2 | |
| | | | ||||||
| * | | filesystem: Fixed issue with FindClose potentially closing an invalid handle | Stefan Boberg | 2021-09-29 | 1 | -2/+2 | |
| |/ | ||||||
| * | Merged latest from main | Stefan Boberg | 2021-09-27 | 1 | -44/+39 | |
| |\ | ||||||
| | * | Removed some unnecessary filesystem wrapper functions which accepted wchar* ↵ | Stefan Boberg | 2021-09-25 | 1 | -19/+11 | |
| | | | | | | | | | | | | | arguments Also moved some platform specific functionality into Windows conditional sections | |||||
| * | | Merged main into linux-mac | Martin Ridgers | 2021-09-21 | 1 | -5/+5 | |
| |\| | ||||||
| | * | Moved more code into zen namespace, for consistency | Stefan Boberg | 2021-09-20 | 1 | -5/+5 | |
| | | | | | | | | | Also removed snapshot_manifest (remnants of vfs prototype) | |||||
| * | | Fixed "unreferenced formal parameter" warning | Martin Ridgers | 2021-09-16 | 1 | -2/+2 | |
| | | | ||||||
| * | | Deleted unused FilePath variable | Martin Ridgers | 2021-09-16 | 1 | -2/+0 | |
| | | | ||||||
| * | | Make sure RootDir argument to formatted-print is a UTF8 string | Martin Ridgers | 2021-09-16 | 1 | -1/+1 | |
| | | | ||||||
| * | | There is no need to go to a wstring here as fs::path is already one | Martin Ridgers | 2021-09-16 | 1 | -3/+1 | |
| | | | ||||||
| * | | Simple FileSystemTraversal test case | Martin Ridgers | 2021-09-16 | 1 | -0/+23 | |
| | | | ||||||
| * | | ToUtf8() for non-wchar_t platforms | Martin Ridgers | 2021-09-16 | 1 | -0/+4 | |
| | | | ||||||
| * | | Implemented FileSysTraversal for Linux using open/read/closedir() | Martin Ridgers | 2021-09-16 | 1 | -0/+47 | |
| | | | ||||||
| * | | Missing include for getpid() | Martin Ridgers | 2021-09-16 | 1 | -0/+1 | |
| | | | ||||||
| * | | POSIX implementation of ReadFile() | Martin Ridgers | 2021-09-16 | 1 | -3/+20 | |
| | | | ||||||
| * | | POSIX implementation of WriteFile() | Martin Ridgers | 2021-09-16 | 1 | -1/+30 | |
| | | | ||||||
| * | | Stubbed out seldom-used *File() functions with a ZEN_ERROR() for Linux | Martin Ridgers | 2021-09-16 | 1 | -0/+19 | |
| | | | ||||||
| * | | Non-Windows implementation of Clean/DeleteDirectory() using std::fs | Martin Ridgers | 2021-09-16 | 1 | -0/+22 | |
| | | | ||||||
| * | | The wchar_t variants of directory functions are now only enabled on Windows | Martin Ridgers | 2021-09-16 | 1 | -6/+10 | |
| | | | ||||||
| * | | Fixed up platform-specific includes | Martin Ridgers | 2021-09-16 | 1 | -5/+9 | |
| | | | ||||||
| * | | Merge from main | Martin Ridgers | 2021-09-16 | 1 | -0/+2 | |
| |\| | ||||||
| | * | Unused variable warning fix | Stefan Boberg | 2021-09-15 | 1 | -0/+2 | |
| | | | ||||||
| * | | Added a simple filesystem test case | Martin Ridgers | 2021-09-16 | 1 | -0/+42 | |
| | | | ||||||
| * | | Implemented GetRunningExecutablePath() for Linux | Martin Ridgers | 2021-09-16 | 1 | -0/+13 | |
| | | | ||||||
| * | | Implemented PathFromHandle() for Linux | Martin Ridgers | 2021-09-16 | 1 | -0/+13 | |
| |/ | ||||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -2/+2 | |
| | | | | | | | * 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 Boberg | 2021-09-15 | 1 | -2/+1 | |
| | | | | | easier to tweak implementation | |||||
| * | Fixed a number of unreferenced variable warnings | Stefan Boberg | 2021-09-09 | 1 | -2/+0 | |
| | | ||||||
| * | Format fix. | Per Larsson | 2021-08-31 | 1 | -2/+1 | |
| | | ||||||
| * | Added WriteFile() overload which accepts a single IoBuffer | Stefan Boberg | 2021-08-28 | 1 | -4/+18 | |
| | | ||||||
| * | Added support for defining test/non-test server environments | Stefan Boberg | 2021-08-06 | 1 | -1/+1 | |
| | | ||||||
| * | Added GetRunningExecutablePath() | Stefan Boberg | 2021-08-06 | 1 | -0/+9 | |
| | | ||||||
| * | Fixed FileSystemTraversal::TraverseFileSystem error reporting issue | Stefan Boberg | 2021-06-18 | 1 | -1/+4 | |
| | | ||||||
| * | Cleaned up exception handling | Stefan Boberg | 2021-05-21 | 1 | -3/+3 | |
| | | | | | We now use std::system_error where possible to report Win32 system errors. We still have WindowsException for general HRESULT based errors but we should phase it out where possible | |||||
| * | Added PathFromHandle helper function | Stefan Boberg | 2021-05-11 | 1 | -0/+18 | |
| | | | | | Primarily to be used to add context to error messages in places where we only have a handle available | |||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+592 | |