You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/include/c11log/details/os.h

105 lines
1.6 KiB
C

12 years ago
#pragma once
12 years ago
#include<string>
#include<cstdio>
#include<ctime>
#ifdef _WIN32
#include <Windows.h>
#endif
12 years ago
namespace c11log
{
namespace details
{
namespace os
{
inline std::tm localtime(const std::time_t &time_tt)
{
#ifdef _WIN32
std::tm tm;
12 years ago
localtime_s(&tm, &time_tt);
#else
std::tm tm;
12 years ago
localtime_r(&time_tt, &tm);
#endif
return tm;
}
inline std::tm localtime()
{
std::time_t now_t = time(0);
return localtime(now_t);
}
inline bool operator==(const std::tm& tm1, const std::tm& tm2)
{
return (tm1.tm_sec == tm2.tm_sec &&
tm1.tm_min == tm2.tm_min &&
tm1.tm_hour == tm2.tm_hour &&
tm1.tm_mday == tm2.tm_mday &&
tm1.tm_mon == tm2.tm_mon &&
tm1.tm_year == tm2.tm_year &&
tm1.tm_isdst == tm2.tm_isdst);
}
inline bool operator!=(const std::tm& tm1, const std::tm& tm2)
{
return !(tm1==tm2);
}
#ifdef _WIN32
inline const char* eol()
{
12 years ago
return "\r\n";
}
12 years ago
#else
constexpr inline const char* eol()
{
12 years ago
return "\n";
}
#endif
12 years ago
#ifdef _WIN32
inline unsigned short eol_size()
{
12 years ago
return 2;
}
12 years ago
#else
constexpr inline unsigned short eol_size()
{
12 years ago
return 1;
}
#endif
//fopen_s on non windows for writing
inline bool fopen_s(FILE** fp, const std::string& filename, const char* mode)
{
#ifdef _WIN32
return fopen_s(fp, filename, mode);
#else
*fp = fopen((filename.c_str()), mode);
return fp == nullptr;
#endif
}
inline float tz_offset()
{
#ifdef _WIN32
TIME_ZONE_INFORMATION tzinfo;
GetTimeZoneInformation(&tzinfo);
return tzinfo.Bias / -60.0f;
#else
return 0.0f;
#endif
}
12 years ago
} //os
} //details
} //c11log