2014-03-22 08:11:17 -04:00
|
|
|
#pragma once
|
2014-10-18 16:28:16 -04:00
|
|
|
|
2014-03-22 08:11:17 -04:00
|
|
|
#include<string>
|
|
|
|
#include<cstdio>
|
|
|
|
#include<ctime>
|
2014-10-18 19:54:45 -04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <Windows.h>
|
|
|
|
#endif
|
2014-03-22 08:11:17 -04:00
|
|
|
|
|
|
|
namespace c11log
|
|
|
|
{
|
|
|
|
namespace details
|
|
|
|
{
|
|
|
|
namespace os
|
|
|
|
{
|
|
|
|
|
|
|
|
inline std::tm localtime(const std::time_t &time_tt)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2014-10-18 16:28:16 -04:00
|
|
|
std::tm tm;
|
2014-03-22 08:11:17 -04:00
|
|
|
localtime_s(&tm, &time_tt);
|
|
|
|
#else
|
2014-10-18 16:28:16 -04:00
|
|
|
std::tm tm;
|
2014-03-22 08:11:17 -04:00
|
|
|
localtime_r(&time_tt, &tm);
|
|
|
|
#endif
|
|
|
|
return tm;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::tm localtime()
|
|
|
|
{
|
|
|
|
std::time_t now_t = time(0);
|
|
|
|
return localtime(now_t);
|
|
|
|
}
|
|
|
|
|
2014-10-19 10:44:57 -04:00
|
|
|
|
|
|
|
inline std::tm gmtime(const std::time_t &time_tt)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
std::tm tm;
|
|
|
|
gmtime_s(&tm, &time_tt);
|
|
|
|
#else
|
|
|
|
std::tm tm;
|
|
|
|
lgmtime_r(&time_tt, &tm);
|
|
|
|
#endif
|
|
|
|
return tm;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::tm gmtime()
|
|
|
|
{
|
|
|
|
std::time_t now_t = time(0);
|
|
|
|
return gmtime(now_t);
|
|
|
|
}
|
2014-03-22 08:11:17 -04:00
|
|
|
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)
|
|
|
|
{
|
2014-10-19 10:44:57 -04:00
|
|
|
return !(tm1 == tm2);
|
2014-03-22 08:11:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2014-05-09 08:27:06 -04:00
|
|
|
inline const char* eol()
|
|
|
|
{
|
2014-03-22 08:11:17 -04:00
|
|
|
return "\r\n";
|
2014-05-09 08:27:06 -04:00
|
|
|
}
|
2014-03-22 08:11:17 -04:00
|
|
|
#else
|
2014-05-09 08:27:06 -04:00
|
|
|
constexpr inline const char* eol()
|
|
|
|
{
|
2014-03-22 08:11:17 -04:00
|
|
|
return "\n";
|
|
|
|
}
|
2014-05-09 08:27:06 -04:00
|
|
|
#endif
|
2014-03-28 06:37:14 -04:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2014-05-09 08:27:06 -04:00
|
|
|
inline unsigned short eol_size()
|
|
|
|
{
|
2014-03-28 06:37:14 -04:00
|
|
|
return 2;
|
2014-05-09 08:27:06 -04:00
|
|
|
}
|
2014-03-28 06:37:14 -04:00
|
|
|
#else
|
2014-05-09 08:27:06 -04:00
|
|
|
constexpr inline unsigned short eol_size()
|
|
|
|
{
|
2014-03-28 06:37:14 -04:00
|
|
|
return 1;
|
|
|
|
}
|
2014-05-09 08:27:06 -04:00
|
|
|
#endif
|
|
|
|
|
2014-10-18 16:28:16 -04:00
|
|
|
//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
|
|
|
|
}
|
|
|
|
|
2014-10-19 10:44:57 -04:00
|
|
|
//Return utc offset in minutes or -1 on failure
|
|
|
|
inline int utc_minutes_offset(const std::tm& tm = localtime())
|
2014-10-18 19:54:45 -04:00
|
|
|
{
|
2014-10-19 10:44:57 -04:00
|
|
|
|
2014-10-18 19:54:45 -04:00
|
|
|
#ifdef _WIN32
|
2014-10-19 10:44:57 -04:00
|
|
|
DYNAMIC_TIME_ZONE_INFORMATION tzinfo;
|
|
|
|
auto rv = GetDynamicTimeZoneInformation(&tzinfo);
|
|
|
|
if (!rv)
|
|
|
|
return -1;
|
|
|
|
return -1 * (tzinfo.Bias + tzinfo.DaylightBias);
|
2014-10-18 19:54:45 -04:00
|
|
|
#else
|
2014-10-19 10:44:57 -04:00
|
|
|
return tm.tm_gmtoff / 60;
|
2014-10-18 19:54:45 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-10-18 16:28:16 -04:00
|
|
|
|
2014-03-22 08:11:17 -04:00
|
|
|
} //os
|
|
|
|
} //details
|
|
|
|
} //c11log
|
|
|
|
|
|
|
|
|
|
|
|
|