2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-05-11 23:51:26 +02:00
|
|
|
|
|
|
|
#include <chrono>
|
2023-06-03 23:06:43 +02:00
|
|
|
#include <exception>
|
2020-08-20 00:27:31 +02:00
|
|
|
#include <iomanip>
|
|
|
|
#include <sstream>
|
2023-06-03 23:06:43 +02:00
|
|
|
#include <stdexcept>
|
2023-05-24 00:32:28 +02:00
|
|
|
#include <fmt/chrono.h>
|
|
|
|
#include <fmt/core.h>
|
2020-05-11 23:51:26 +02:00
|
|
|
|
|
|
|
#include "common/logging/log.h"
|
2023-05-24 00:32:28 +02:00
|
|
|
#include "common/settings.h"
|
2020-05-11 23:51:26 +02:00
|
|
|
#include "common/time_zone.h"
|
|
|
|
|
|
|
|
namespace Common::TimeZone {
|
|
|
|
|
2023-05-24 00:32:28 +02:00
|
|
|
// Time zone strings
|
|
|
|
constexpr std::array timezones{
|
|
|
|
"GMT", "GMT", "CET", "CST6CDT", "Cuba", "EET", "Egypt", "Eire",
|
|
|
|
"EST", "EST5EDT", "GB", "GB-Eire", "GMT", "GMT+0", "GMT-0", "GMT0",
|
|
|
|
"Greenwich", "Hongkong", "HST", "Iceland", "Iran", "Israel", "Jamaica", "Japan",
|
|
|
|
"Kwajalein", "Libya", "MET", "MST", "MST7MDT", "Navajo", "NZ", "NZ-CHAT",
|
|
|
|
"Poland", "Portugal", "PRC", "PST8PDT", "ROC", "ROK", "Singapore", "Turkey",
|
|
|
|
"UCT", "Universal", "UTC", "W-SU", "WET", "Zulu",
|
|
|
|
};
|
|
|
|
|
|
|
|
const std::array<const char*, 46>& GetTimeZoneStrings() {
|
|
|
|
return timezones;
|
|
|
|
}
|
|
|
|
|
2020-05-11 23:51:26 +02:00
|
|
|
std::string GetDefaultTimeZone() {
|
|
|
|
return "GMT";
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string GetOsTimeZoneOffset() {
|
2020-08-20 00:27:31 +02:00
|
|
|
const std::time_t t{std::time(nullptr)};
|
|
|
|
const std::tm tm{*std::localtime(&t)};
|
|
|
|
|
2023-05-24 00:32:28 +02:00
|
|
|
return fmt::format("{:%z}", tm);
|
2020-05-11 23:51:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ConvertOsTimeZoneOffsetToInt(const std::string& timezone) {
|
|
|
|
try {
|
|
|
|
return std::stoi(timezone);
|
|
|
|
} catch (const std::invalid_argument&) {
|
|
|
|
LOG_CRITICAL(Common, "invalid_argument with {}!", timezone);
|
|
|
|
return 0;
|
|
|
|
} catch (const std::out_of_range&) {
|
|
|
|
LOG_CRITICAL(Common, "out_of_range with {}!", timezone);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-13 00:44:07 +02:00
|
|
|
std::chrono::seconds GetCurrentOffsetSeconds() {
|
2020-05-11 23:51:26 +02:00
|
|
|
const int offset{ConvertOsTimeZoneOffsetToInt(GetOsTimeZoneOffset())};
|
|
|
|
|
|
|
|
int seconds{(offset / 100) * 60 * 60}; // Convert hour component to seconds
|
|
|
|
seconds += (offset % 100) * 60; // Convert minute component to seconds
|
|
|
|
|
2020-05-13 00:44:07 +02:00
|
|
|
return std::chrono::seconds{seconds};
|
2020-05-11 23:51:26 +02:00
|
|
|
}
|
|
|
|
|
2023-06-03 23:06:43 +02:00
|
|
|
// Key is [Hours * 100 + Minutes], multiplied by 100 if DST
|
|
|
|
const static std::map<s64, const char*> off_timezones = {
|
|
|
|
{530, "Asia/Calcutta"}, {930, "Australia/Darwin"}, {845, "Australia/Eucla"},
|
|
|
|
{103000, "Australia/Adelaide"}, {1030, "Australia/Lord_Howe"}, {630, "Indian/Cocos"},
|
|
|
|
{1245, "Pacific/Chatham"}, {134500, "Pacific/Chatham"}, {-330, "Canada/Newfoundland"},
|
|
|
|
{-23000, "Canada/Newfoundland"}, {430, "Asia/Kabul"}, {330, "Asia/Tehran"},
|
|
|
|
{43000, "Asia/Tehran"}, {545, "Asia/Kathmandu"}, {-930, "Asia/Marquesas"},
|
|
|
|
};
|
|
|
|
|
2023-05-24 00:32:28 +02:00
|
|
|
std::string FindSystemTimeZone() {
|
|
|
|
#if defined(MINGW)
|
|
|
|
// MinGW has broken strftime -- https://sourceforge.net/p/mingw-w64/bugs/793/
|
|
|
|
// e.g. fmt::format("{:%z}") -- returns "Eastern Daylight Time" when it should be "-0400"
|
|
|
|
return timezones[0];
|
|
|
|
#else
|
2023-06-03 23:06:43 +02:00
|
|
|
const s64 seconds = static_cast<s64>(GetCurrentOffsetSeconds().count());
|
2023-05-24 00:32:28 +02:00
|
|
|
|
2023-06-03 23:06:43 +02:00
|
|
|
const s64 minutes = seconds / 60;
|
|
|
|
const s64 hours = minutes / 60;
|
2023-05-24 00:32:28 +02:00
|
|
|
|
2023-06-03 23:06:43 +02:00
|
|
|
const s64 minutes_off = minutes - hours * 60;
|
2023-05-24 00:32:28 +02:00
|
|
|
|
2023-06-03 23:06:43 +02:00
|
|
|
if (minutes_off != 0) {
|
|
|
|
const auto the_time = std::time(nullptr);
|
|
|
|
const struct std::tm& local = *std::localtime(&the_time);
|
|
|
|
const bool is_dst = local.tm_isdst != 0;
|
|
|
|
|
|
|
|
const s64 tz_index = (hours * 100 + minutes_off) * (is_dst ? 100 : 1);
|
2023-05-24 00:32:28 +02:00
|
|
|
|
2023-06-03 23:06:43 +02:00
|
|
|
try {
|
|
|
|
return off_timezones.at(tz_index);
|
|
|
|
} catch (std::out_of_range&) {
|
|
|
|
LOG_ERROR(Common, "Time zone {} not handled, defaulting to hour offset.", tz_index);
|
2023-05-24 00:32:28 +02:00
|
|
|
}
|
|
|
|
}
|
2023-06-03 23:06:43 +02:00
|
|
|
return fmt::format("Etc/GMT{:s}{:d}", hours > 0 ? "-" : "+", std::abs(hours));
|
2023-05-24 00:32:28 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-05-11 23:51:26 +02:00
|
|
|
} // namespace Common::TimeZone
|