1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #include "il2cpp-config.h"
-
- #if IL2CPP_TARGET_WINRT
-
- #include <io.h>
-
- #include "os/File.h"
- #include "os/Win32/WindowsHeaders.h"
- #include "utils/Expected.h"
- #include "utils/Il2CppError.h"
-
- namespace il2cpp
- {
- namespace os
- {
- static inline std::wstring GetDirectoryForStandardOutput()
- {
- wchar_t buffer[MAX_PATH + 2];
- uint32_t tempPathLength = GetTempPathW(MAX_PATH + 2, buffer);
- return std::wstring(buffer, tempPathLength);
- }
-
- static FileHandle* GetOrCreateRedirectedHandle(FILE* stdFile, const wchar_t* fileNameOnDisk)
- {
- #if IL2CPP_DEBUG || IL2CPP_DEVELOPMENT
- auto stdFd = _fileno(stdFile);
- auto stdHandle = reinterpret_cast<FileHandle*>(_get_osfhandle(stdFd));
-
- if (stdHandle != INVALID_HANDLE_VALUE && !_isatty(stdFd))
- return stdHandle;
-
- std::wstring pathOnDisk = GetDirectoryForStandardOutput() + fileNameOnDisk;
- auto redirectedFile = _wfreopen(pathOnDisk.c_str(), L"w+", stdFile);
- return reinterpret_cast<FileHandle*>(_get_osfhandle(_fileno(redirectedFile)));
- #else
- return NULL;
- #endif
- }
-
- utils::Expected<bool> File::Isatty(FileHandle* fileHandle)
- {
- return utils::Il2CppError(utils::NotSupported, "File::Isatty is not supported on WinRT");
- }
-
- FileHandle* File::GetStdInput()
- {
- return GetOrCreateRedirectedHandle(stdin, L"stdin.txt");
- }
-
- FileHandle* File::GetStdError()
- {
- return GetOrCreateRedirectedHandle(stderr, L"stderr.txt");
- }
-
- FileHandle* File::GetStdOutput()
- {
- return GetOrCreateRedirectedHandle(stdout, L"stdout.txt");
- }
- } //os
- } //il2cpp
-
- #endif // IL2CPP_TARGET_WINRT
|