2018-01-15 02:42:23 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-01-17 19:33:38 +00:00
|
|
|
#include <chrono>
|
2018-05-31 12:33:30 +00:00
|
|
|
#include <ctime>
|
2018-01-17 19:33:38 +00:00
|
|
|
#include "common/logging/log.h"
|
2019-02-14 17:42:58 +00:00
|
|
|
#include "core/core.h"
|
2018-01-25 04:52:21 +00:00
|
|
|
#include "core/core_timing.h"
|
2018-07-24 10:03:24 +00:00
|
|
|
#include "core/core_timing_util.h"
|
2018-01-17 19:33:38 +00:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
|
|
|
#include "core/hle/kernel/client_port.h"
|
|
|
|
#include "core/hle/kernel/client_session.h"
|
2018-07-24 06:45:23 +00:00
|
|
|
#include "core/hle/service/time/interface.h"
|
2018-01-15 02:42:23 +00:00
|
|
|
#include "core/hle/service/time/time.h"
|
2018-12-29 00:09:57 +00:00
|
|
|
#include "core/settings.h"
|
2018-01-15 02:42:23 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Time {
|
2018-01-15 02:42:23 +00:00
|
|
|
|
2018-12-29 01:24:24 +00:00
|
|
|
static std::chrono::seconds GetSecondsSinceEpoch() {
|
2018-12-29 00:09:57 +00:00
|
|
|
return std::chrono::duration_cast<std::chrono::seconds>(
|
2018-12-29 01:24:24 +00:00
|
|
|
std::chrono::system_clock::now().time_since_epoch()) +
|
2018-12-29 00:09:57 +00:00
|
|
|
Settings::values.custom_rtc_differential;
|
|
|
|
}
|
|
|
|
|
2018-11-10 01:31:48 +00:00
|
|
|
static void PosixToCalendar(u64 posix_time, CalendarTime& calendar_time,
|
2018-11-10 07:07:34 +00:00
|
|
|
CalendarAdditionalInfo& additional_info,
|
|
|
|
[[maybe_unused]] const TimeZoneRule& /*rule*/) {
|
2018-11-10 01:31:48 +00:00
|
|
|
const std::time_t time(posix_time);
|
|
|
|
const std::tm* tm = std::localtime(&time);
|
2018-11-09 14:25:56 +00:00
|
|
|
if (tm == nullptr) {
|
2018-11-10 07:07:34 +00:00
|
|
|
calendar_time = {};
|
|
|
|
additional_info = {};
|
2018-11-09 14:25:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
calendar_time.year = tm->tm_year + 1900;
|
|
|
|
calendar_time.month = tm->tm_mon + 1;
|
|
|
|
calendar_time.day = tm->tm_mday;
|
|
|
|
calendar_time.hour = tm->tm_hour;
|
|
|
|
calendar_time.minute = tm->tm_min;
|
|
|
|
calendar_time.second = tm->tm_sec;
|
|
|
|
|
|
|
|
additional_info.day_of_week = tm->tm_wday;
|
|
|
|
additional_info.day_of_year = tm->tm_yday;
|
|
|
|
std::memcpy(additional_info.name.data(), "UTC", sizeof("UTC"));
|
|
|
|
additional_info.utc_offset = 0;
|
|
|
|
}
|
|
|
|
|
2018-11-10 07:07:34 +00:00
|
|
|
static u64 CalendarToPosix(const CalendarTime& calendar_time,
|
|
|
|
[[maybe_unused]] const TimeZoneRule& /*rule*/) {
|
2018-11-10 06:41:57 +00:00
|
|
|
std::tm time{};
|
|
|
|
time.tm_year = calendar_time.year - 1900;
|
|
|
|
time.tm_mon = calendar_time.month - 1;
|
|
|
|
time.tm_mday = calendar_time.day;
|
|
|
|
|
|
|
|
time.tm_hour = calendar_time.hour;
|
|
|
|
time.tm_min = calendar_time.minute;
|
|
|
|
time.tm_sec = calendar_time.second;
|
|
|
|
|
|
|
|
std::time_t epoch_time = std::mktime(&time);
|
|
|
|
return static_cast<u64>(epoch_time);
|
|
|
|
}
|
|
|
|
|
2018-01-17 19:33:38 +00:00
|
|
|
class ISystemClock final : public ServiceFramework<ISystemClock> {
|
|
|
|
public:
|
|
|
|
ISystemClock() : ServiceFramework("ISystemClock") {
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &ISystemClock::GetCurrentTime, "GetCurrentTime"},
|
2018-04-17 15:37:43 +00:00
|
|
|
{1, nullptr, "SetCurrentTime"},
|
|
|
|
{2, &ISystemClock::GetSystemClockContext, "GetSystemClockContext"},
|
|
|
|
{3, nullptr, "SetSystemClockContext"},
|
|
|
|
|
|
|
|
};
|
2018-01-17 19:33:38 +00:00
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetCurrentTime(Kernel::HLERequestContext& ctx) {
|
2018-12-29 01:24:24 +00:00
|
|
|
const s64 time_since_epoch{GetSecondsSinceEpoch().count()};
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
2018-11-26 06:06:13 +00:00
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
2018-01-17 19:33:38 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u64>(time_since_epoch);
|
2018-01-24 03:02:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GetSystemClockContext(Kernel::HLERequestContext& ctx) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service_Time, "(STUBBED) called");
|
2018-11-26 06:06:13 +00:00
|
|
|
|
2018-01-24 03:02:14 +00:00
|
|
|
SystemClockContext system_clock_ontext{};
|
|
|
|
IPC::ResponseBuilder rb{ctx, (sizeof(SystemClockContext) / 4) + 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushRaw(system_clock_ontext);
|
2018-01-17 19:33:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class ISteadyClock final : public ServiceFramework<ISteadyClock> {
|
|
|
|
public:
|
2018-01-25 04:52:21 +00:00
|
|
|
ISteadyClock() : ServiceFramework("ISteadyClock") {
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &ISteadyClock::GetCurrentTimePoint, "GetCurrentTimePoint"},
|
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetCurrentTimePoint(Kernel::HLERequestContext& ctx) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
2018-11-26 06:06:13 +00:00
|
|
|
|
2019-02-14 17:42:58 +00:00
|
|
|
const auto& core_timing = Core::System::GetInstance().CoreTiming();
|
2019-06-05 00:11:04 +00:00
|
|
|
const auto ms = Core::Timing::CyclesToMs(core_timing.GetTicks());
|
2019-06-04 23:52:42 +00:00
|
|
|
const SteadyClockTimePoint steady_clock_time_point{static_cast<u64_le>(ms.count() / 1000),
|
|
|
|
{}};
|
2018-01-25 04:52:21 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, (sizeof(SteadyClockTimePoint) / 4) + 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushRaw(steady_clock_time_point);
|
|
|
|
}
|
2018-01-17 19:33:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ITimeZoneService final : public ServiceFramework<ITimeZoneService> {
|
|
|
|
public:
|
|
|
|
ITimeZoneService() : ServiceFramework("ITimeZoneService") {
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &ITimeZoneService::GetDeviceLocationName, "GetDeviceLocationName"},
|
2018-02-07 12:11:17 +00:00
|
|
|
{1, nullptr, "SetDeviceLocationName"},
|
2018-01-18 05:57:11 +00:00
|
|
|
{2, &ITimeZoneService::GetTotalLocationNameCount, "GetTotalLocationNameCount"},
|
2018-02-07 12:11:17 +00:00
|
|
|
{3, nullptr, "LoadLocationNameList"},
|
|
|
|
{4, &ITimeZoneService::LoadTimeZoneRule, "LoadTimeZoneRule"},
|
|
|
|
{5, nullptr, "GetTimeZoneRuleVersion"},
|
2018-05-31 12:33:30 +00:00
|
|
|
{100, &ITimeZoneService::ToCalendarTime, "ToCalendarTime"},
|
2018-01-17 19:33:38 +00:00
|
|
|
{101, &ITimeZoneService::ToCalendarTimeWithMyRule, "ToCalendarTimeWithMyRule"},
|
2018-11-10 06:41:57 +00:00
|
|
|
{201, &ITimeZoneService::ToPosixTime, "ToPosixTime"},
|
|
|
|
{202, &ITimeZoneService::ToPosixTimeWithMyRule, "ToPosixTimeWithMyRule"},
|
2018-01-17 19:33:38 +00:00
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-05-31 12:33:30 +00:00
|
|
|
LocationName location_name{"UTC"};
|
|
|
|
TimeZoneRule my_time_zone_rule{};
|
|
|
|
|
2018-01-17 19:33:38 +00:00
|
|
|
void GetDeviceLocationName(Kernel::HLERequestContext& ctx) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
2018-11-26 06:06:13 +00:00
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, (sizeof(LocationName) / 4) + 2};
|
2018-01-17 19:33:38 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-18 05:57:11 +00:00
|
|
|
rb.PushRaw(location_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetTotalLocationNameCount(Kernel::HLERequestContext& ctx) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service_Time, "(STUBBED) called");
|
2018-11-26 06:06:13 +00:00
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
2018-01-18 05:57:11 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u32>(0);
|
2018-01-17 19:33:38 +00:00
|
|
|
}
|
|
|
|
|
2018-02-07 12:11:17 +00:00
|
|
|
void LoadTimeZoneRule(Kernel::HLERequestContext& ctx) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service_Time, "(STUBBED) called");
|
2018-05-31 12:33:30 +00:00
|
|
|
|
|
|
|
ctx.WriteBuffer(&my_time_zone_rule, sizeof(TimeZoneRule));
|
|
|
|
|
2018-02-07 12:11:17 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2018-05-31 12:33:30 +00:00
|
|
|
void ToCalendarTime(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const u64 posix_time = rp.Pop<u64>();
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service_Time, "(STUBBED) called, posix_time=0x{:016X}", posix_time);
|
2018-05-31 12:33:30 +00:00
|
|
|
|
|
|
|
TimeZoneRule time_zone_rule{};
|
|
|
|
auto buffer = ctx.ReadBuffer();
|
|
|
|
std::memcpy(&time_zone_rule, buffer.data(), buffer.size());
|
|
|
|
|
|
|
|
CalendarTime calendar_time{2018, 1, 1, 0, 0, 0};
|
|
|
|
CalendarAdditionalInfo additional_info{};
|
|
|
|
|
|
|
|
PosixToCalendar(posix_time, calendar_time, additional_info, time_zone_rule);
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 10};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushRaw(calendar_time);
|
|
|
|
rb.PushRaw(additional_info);
|
|
|
|
}
|
|
|
|
|
2018-01-17 19:33:38 +00:00
|
|
|
void ToCalendarTimeWithMyRule(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
2018-05-31 12:33:30 +00:00
|
|
|
const u64 posix_time = rp.Pop<u64>();
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service_Time, "(STUBBED) called, posix_time=0x{:016X}", posix_time);
|
2018-01-17 19:33:38 +00:00
|
|
|
|
2018-01-18 17:02:05 +00:00
|
|
|
CalendarTime calendar_time{2018, 1, 1, 0, 0, 0};
|
|
|
|
CalendarAdditionalInfo additional_info{};
|
2018-05-31 12:33:30 +00:00
|
|
|
|
|
|
|
PosixToCalendar(posix_time, calendar_time, additional_info, my_time_zone_rule);
|
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 10};
|
2018-01-17 19:33:38 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-18 17:02:05 +00:00
|
|
|
rb.PushRaw(calendar_time);
|
|
|
|
rb.PushRaw(additional_info);
|
2018-01-17 19:33:38 +00:00
|
|
|
}
|
2018-11-10 06:41:57 +00:00
|
|
|
|
|
|
|
void ToPosixTime(Kernel::HLERequestContext& ctx) {
|
|
|
|
// TODO(ogniK): Figure out how to handle multiple times
|
|
|
|
LOG_WARNING(Service_Time, "(STUBBED) called");
|
2018-11-26 06:06:13 +00:00
|
|
|
|
2018-11-10 06:41:57 +00:00
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
auto calendar_time = rp.PopRaw<CalendarTime>();
|
|
|
|
auto posix_time = CalendarToPosix(calendar_time, {});
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushRaw<u32>(1); // Amount of times we're returning
|
|
|
|
ctx.WriteBuffer(&posix_time, sizeof(u64));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToPosixTimeWithMyRule(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_WARNING(Service_Time, "(STUBBED) called");
|
2018-11-26 06:06:13 +00:00
|
|
|
|
2018-11-10 06:41:57 +00:00
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
auto calendar_time = rp.PopRaw<CalendarTime>();
|
|
|
|
auto posix_time = CalendarToPosix(calendar_time, {});
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushRaw<u32>(1); // Amount of times we're returning
|
|
|
|
ctx.WriteBuffer(&posix_time, sizeof(u64));
|
|
|
|
}
|
2018-01-17 19:33:38 +00:00
|
|
|
};
|
|
|
|
|
2018-01-18 16:58:29 +00:00
|
|
|
void Module::Interface::GetStandardUserSystemClock(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
2018-01-22 22:42:11 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-24 00:43:59 +00:00
|
|
|
rb.PushIpcInterface<ISystemClock>();
|
2018-01-17 19:33:38 +00:00
|
|
|
}
|
|
|
|
|
2018-01-18 16:58:29 +00:00
|
|
|
void Module::Interface::GetStandardNetworkSystemClock(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
2018-01-22 22:42:11 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-24 00:43:59 +00:00
|
|
|
rb.PushIpcInterface<ISystemClock>();
|
2018-01-17 19:33:38 +00:00
|
|
|
}
|
|
|
|
|
2018-01-18 16:58:29 +00:00
|
|
|
void Module::Interface::GetStandardSteadyClock(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
2018-01-22 22:42:11 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-24 00:43:59 +00:00
|
|
|
rb.PushIpcInterface<ISteadyClock>();
|
2018-01-17 19:33:38 +00:00
|
|
|
}
|
|
|
|
|
2018-01-18 16:58:29 +00:00
|
|
|
void Module::Interface::GetTimeZoneService(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
2018-01-17 19:33:38 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushIpcInterface<ITimeZoneService>();
|
|
|
|
}
|
|
|
|
|
2018-02-22 01:43:05 +00:00
|
|
|
void Module::Interface::GetStandardLocalSystemClock(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_Time, "called");
|
|
|
|
|
2018-02-22 01:43:05 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushIpcInterface<ISystemClock>();
|
|
|
|
}
|
|
|
|
|
2018-11-09 14:25:56 +00:00
|
|
|
void Module::Interface::GetClockSnapshot(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_Time, "called");
|
|
|
|
|
|
|
|
IPC::RequestParser rp{ctx};
|
2018-12-29 23:02:31 +00:00
|
|
|
const auto initial_type = rp.PopRaw<u8>();
|
2018-11-09 14:25:56 +00:00
|
|
|
|
2018-12-29 01:24:24 +00:00
|
|
|
const s64 time_since_epoch{GetSecondsSinceEpoch().count()};
|
2018-11-10 01:31:48 +00:00
|
|
|
const std::time_t time(time_since_epoch);
|
|
|
|
const std::tm* tm = std::localtime(&time);
|
2018-11-09 14:25:56 +00:00
|
|
|
if (tm == nullptr) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_ERROR(Service_Time, "tm is a nullptr");
|
2018-11-09 14:25:56 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(ResultCode(-1)); // TODO(ogniK): Find appropriate error code
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-14 17:42:58 +00:00
|
|
|
const auto& core_timing = Core::System::GetInstance().CoreTiming();
|
2019-06-05 00:11:04 +00:00
|
|
|
const auto ms = Core::Timing::CyclesToMs(core_timing.GetTicks());
|
2019-06-04 23:52:42 +00:00
|
|
|
const SteadyClockTimePoint steady_clock_time_point{static_cast<u64_le>(ms.count() / 1000), {}};
|
2018-12-29 23:29:57 +00:00
|
|
|
|
|
|
|
CalendarTime calendar_time{};
|
2018-11-09 14:25:56 +00:00
|
|
|
calendar_time.year = tm->tm_year + 1900;
|
|
|
|
calendar_time.month = tm->tm_mon + 1;
|
|
|
|
calendar_time.day = tm->tm_mday;
|
|
|
|
calendar_time.hour = tm->tm_hour;
|
|
|
|
calendar_time.minute = tm->tm_min;
|
|
|
|
calendar_time.second = tm->tm_sec;
|
2018-12-29 23:29:57 +00:00
|
|
|
|
|
|
|
ClockSnapshot clock_snapshot{};
|
2018-11-09 14:25:56 +00:00
|
|
|
clock_snapshot.system_posix_time = time_since_epoch;
|
|
|
|
clock_snapshot.network_posix_time = time_since_epoch;
|
|
|
|
clock_snapshot.system_calendar_time = calendar_time;
|
|
|
|
clock_snapshot.network_calendar_time = calendar_time;
|
|
|
|
|
|
|
|
CalendarAdditionalInfo additional_info{};
|
|
|
|
PosixToCalendar(time_since_epoch, calendar_time, additional_info, {});
|
|
|
|
|
|
|
|
clock_snapshot.system_calendar_info = additional_info;
|
|
|
|
clock_snapshot.network_calendar_info = additional_info;
|
|
|
|
|
|
|
|
clock_snapshot.steady_clock_timepoint = steady_clock_time_point;
|
2018-12-29 23:29:57 +00:00
|
|
|
clock_snapshot.location_name = LocationName{"UTC"};
|
2018-11-09 14:25:56 +00:00
|
|
|
clock_snapshot.clock_auto_adjustment_enabled = 1;
|
2018-12-29 23:02:31 +00:00
|
|
|
clock_snapshot.type = initial_type;
|
2018-12-29 23:29:57 +00:00
|
|
|
|
2018-11-09 14:25:56 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
ctx.WriteBuffer(&clock_snapshot, sizeof(ClockSnapshot));
|
|
|
|
}
|
|
|
|
|
2018-11-17 03:01:16 +00:00
|
|
|
void Module::Interface::CalculateStandardUserSystemClockDifferenceByUser(
|
|
|
|
Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_Time, "called");
|
|
|
|
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto snapshot_a = rp.PopRaw<ClockSnapshot>();
|
|
|
|
const auto snapshot_b = rp.PopRaw<ClockSnapshot>();
|
|
|
|
const u64 difference =
|
|
|
|
snapshot_b.user_clock_context.offset - snapshot_a.user_clock_context.offset;
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushRaw<u64>(difference);
|
|
|
|
}
|
|
|
|
|
2018-01-18 16:58:29 +00:00
|
|
|
Module::Interface::Interface(std::shared_ptr<Module> time, const char* name)
|
|
|
|
: ServiceFramework(name), time(std::move(time)) {}
|
2018-01-17 19:33:38 +00:00
|
|
|
|
hle/service: Default constructors and destructors in the cpp file where applicable
When a destructor isn't defaulted into a cpp file, it can cause the use
of forward declarations to seemingly fail to compile for non-obvious
reasons. It also allows inlining of the construction/destruction logic
all over the place where a constructor or destructor is invoked, which
can lead to code bloat. This isn't so much a worry here, given the
services won't be created and destroyed frequently.
The cause of the above mentioned non-obvious errors can be demonstrated
as follows:
------- Demonstrative example, if you know how the described error happens, skip forwards -------
Assume we have the following in the header, which we'll call "thing.h":
\#include <memory>
// Forward declaration. For example purposes, assume the definition
// of Object is in some header named "object.h"
class Object;
class Thing {
public:
// assume no constructors or destructors are specified here,
// or the constructors/destructors are defined as:
//
// Thing() = default;
// ~Thing() = default;
//
// ... Some interface member functions would be defined here
private:
std::shared_ptr<Object> obj;
};
If this header is included in a cpp file, (which we'll call "main.cpp"),
this will result in a compilation error, because even though no
destructor is specified, the destructor will still need to be generated by
the compiler because std::shared_ptr's destructor is *not* trivial (in
other words, it does something other than nothing), as std::shared_ptr's
destructor needs to do two things:
1. Decrement the shared reference count of the object being pointed to,
and if the reference count decrements to zero,
2. Free the Object instance's memory (aka deallocate the memory it's
pointing to).
And so the compiler generates the code for the destructor doing this inside main.cpp.
Now, keep in mind, the Object forward declaration is not a complete type. All it
does is tell the compiler "a type named Object exists" and allows us to
use the name in certain situations to avoid a header dependency. So the
compiler needs to generate destruction code for Object, but the compiler
doesn't know *how* to destruct it. A forward declaration doesn't tell
the compiler anything about Object's constructor or destructor. So, the
compiler will issue an error in this case because it's undefined
behavior to try and deallocate (or construct) an incomplete type and
std::shared_ptr and std::unique_ptr make sure this isn't the case
internally.
Now, if we had defaulted the destructor in "thing.cpp", where we also
include "object.h", this would never be an issue, as the destructor
would only have its code generated in one place, and it would be in a
place where the full class definition of Object would be visible to the
compiler.
---------------------- End example ----------------------------
Given these service classes are more than certainly going to change in
the future, this defaults the constructors and destructors into the
relevant cpp files to make the construction and destruction of all of
the services consistent and unlikely to run into cases where forward
declarations are indirectly causing compilation errors. It also has the
plus of avoiding the need to rebuild several services if destruction
logic changes, since it would only be necessary to recompile the single
cpp file.
2018-09-11 01:20:52 +00:00
|
|
|
Module::Interface::~Interface() = default;
|
|
|
|
|
2018-01-15 02:42:23 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
2018-01-18 16:58:29 +00:00
|
|
|
auto time = std::make_shared<Module>();
|
2018-07-24 06:47:41 +00:00
|
|
|
std::make_shared<Time>(time, "time:a")->InstallAsService(service_manager);
|
|
|
|
std::make_shared<Time>(time, "time:s")->InstallAsService(service_manager);
|
|
|
|
std::make_shared<Time>(time, "time:u")->InstallAsService(service_manager);
|
2018-01-15 02:42:23 +00:00
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Time
|