// Copyright(c) 2015-present, Gabi Melman & spdlog contributors. // Distributed under the MIT License (http://opensource.org/licenses/MIT) #ifndef _WIN32 #error "_WIN32 only source file" #endif // clang-format off #include "spdlog/details/windows_include.h" // clang-format on #include // for FlushFileBuffers #include // for _get_osfhandle, _isatty, _fileno #include // for _get_pid #include #include #include #include #include #include #include #include #include #include #include "spdlog/common.h" #include "spdlog/details/os.h" #ifdef __MINGW32__ #include #endif #include // for _mkdir/_wmkdir // clang-format on namespace spdlog { namespace details { namespace os { spdlog::log_clock::time_point now() noexcept { return log_clock::now(); } std::tm localtime(const std::time_t &time_tt) noexcept { std::tm tm; const auto rv = ::localtime_s(&tm, &time_tt); return rv == 0 ? tm : std::tm{}; } std::tm localtime() noexcept { std::time_t now_t = ::time(nullptr); return localtime(now_t); } std::tm gmtime(const std::time_t &time_tt) noexcept { std::tm tm; ::gmtime_s(&tm, &time_tt); return tm; } std::tm gmtime() noexcept { std::time_t now_t = ::time(nullptr); return gmtime(now_t); } bool fopen_s(FILE **fp, const filename_t &filename, const filename_t &mode) { *fp = ::_fsopen((filename.c_str()), mode.c_str(), _SH_DENYNO); #if defined(SPDLOG_PREVENT_CHILD_FD) if (*fp != nullptr) { auto file_handle = reinterpret_cast(_get_osfhandle(::_fileno(*fp))); if (!::SetHandleInformation(file_handle, HANDLE_FLAG_INHERIT, 0)) { ::fclose(*fp); *fp = nullptr; } } #endif return *fp == nullptr; } int remove(const filename_t &filename) noexcept { return std::remove(filename.c_str()); } int remove_if_exists(const filename_t &filename) noexcept { return path_exists(filename) ? remove(filename) : 0; } int rename(const filename_t &filename1, const filename_t &filename2) noexcept { return std::rename(filename1.c_str(), filename2.c_str()); } // Return true if path exists (file or directory) bool path_exists(const filename_t &filename) noexcept { struct _stat buffer; return (::_stat(filename.c_str(), &buffer) == 0); } #ifdef _MSC_VER // avoid warning about unreachable statement at the end of filesize() #pragma warning(push) #pragma warning(disable : 4702) #endif // Return file size according to open FILE* object size_t filesize(FILE *f) { if (f == nullptr) { throw_spdlog_ex("Failed getting file size. fd is null"); } int fd = ::_fileno(f); #if defined(_WIN64) // 64 bits __int64 ret = ::_filelengthi64(fd); if (ret >= 0) { return static_cast(ret); } #else // windows 32 bits long ret = ::_filelength(fd); if (ret >= 0) { return static_cast(ret); } #endif throw_spdlog_ex("Failed getting file size from fd", errno); return 0; // will not be reached. } #ifdef _MSC_VER #pragma warning(pop) #endif // Return utc offset in minutes or throw spdlog_ex on failure int utc_minutes_offset(const std::tm &tm) { #if _WIN32_WINNT < _WIN32_WINNT_WS08 TIME_ZONE_INFORMATION tzinfo; auto rv = ::GetTimeZoneInformation(&tzinfo); #else DYNAMIC_TIME_ZONE_INFORMATION tzinfo; auto rv = ::GetDynamicTimeZoneInformation(&tzinfo); #endif if (rv == TIME_ZONE_ID_INVALID) throw_spdlog_ex("Failed getting timezone info. ", errno); int offset = -tzinfo.Bias; if (tm.tm_isdst) { offset -= tzinfo.DaylightBias; } else { offset -= tzinfo.StandardBias; } return offset; } // Return current thread id as size_t // It exists because the std::this_thread::get_id() is much slower(especially // under VS 2013) size_t _thread_id() noexcept { return static_cast(::GetCurrentThreadId()); } // Return current thread id as size_t (from thread local storage) size_t thread_id() noexcept { // cache thread id in tls static thread_local const size_t tid = _thread_id(); return tid; } // This is avoid msvc issue in sleep_for that happens if the clock changes. // See https://github.com/gabime/spdlog/issues/609 void sleep_for_millis(unsigned int milliseconds) noexcept { ::Sleep(milliseconds); } std::string filename_to_str(const filename_t &filename) { return filename; } int pid() noexcept { return static_cast(::GetCurrentProcessId()); } bool is_color_terminal() noexcept { return true; } // Determine if the terminal attached bool in_terminal(FILE *file) noexcept { return ::_isatty(_fileno(file)) != 0; } // return true on success static bool mkdir_(const filename_t &path) { return ::_mkdir(path.c_str()) == 0; } // create the given directory - and all directories leading to it // return true on success or if the directory already exists bool create_dir(const filename_t &path) { if (path_exists(path)) { return true; } if (path.empty()) { return false; } size_t search_offset = 0; do { auto token_pos = path.find_first_of(folder_seps_filename, search_offset); // treat the entire path as a folder if no folder separator not found if (token_pos == filename_t::npos) { token_pos = path.size(); } auto subdir = path.substr(0, token_pos); // if subdir is just a drive letter, add a slash e.g. "c:"=>"c:\", // otherwise path_exists(subdir) returns false (issue #3079) const bool is_drive = subdir.length() == 2 && subdir[1] == ':'; if (is_drive) { subdir += '\\'; token_pos++; } if (!subdir.empty() && !path_exists(subdir) && !mkdir_(subdir)) { return false; // return error if failed creating dir } search_offset = token_pos + 1; } while (search_offset < path.size()); return true; } // Return directory name from given path or empty string // "abc/file" => "abc" // "abc/" => "abc" // "abc" => "" // "abc///" => "abc//" filename_t dir_name(const filename_t &path) { auto pos = path.find_last_of(folder_seps_filename); return pos != filename_t::npos ? path.substr(0, pos) : filename_t{}; } std::string getenv(const char *field) { #if defined(_MSC_VER) #if defined(__cplusplus_winrt) return std::string{}; // not supported under uwp #else size_t len = 0; char buf[128]; bool ok = ::getenv_s(&len, buf, sizeof(buf), field) == 0; return ok ? buf : std::string{}; #endif #else // revert to getenv char *buf = ::getenv(field); return buf != nullptr ? buf : std::string{}; #endif } // Do fsync by FILE handlerpointer // Return true on success bool fsync(FILE *fp) { return FlushFileBuffers(reinterpret_cast(_get_osfhandle(_fileno(fp)))) != 0; } } // namespace os } // namespace details } // namespace spdlog