2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-07-02 00:03:05 +00:00
|
|
|
using System;
|
2018-02-25 04:34:16 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-04-06 04:01:52 +00:00
|
|
|
class IStaticService : IpcService
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-07-02 00:03:05 +00:00
|
|
|
private static readonly DateTime StartupDate = DateTime.UtcNow;
|
|
|
|
|
2018-04-06 04:01:52 +00:00
|
|
|
public IStaticService()
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-07-02 00:03:05 +00:00
|
|
|
{ 0, GetStandardUserSystemClock },
|
|
|
|
{ 1, GetStandardNetworkSystemClock },
|
|
|
|
{ 2, GetStandardSteadyClock },
|
|
|
|
{ 3, GetTimeZoneService },
|
|
|
|
{ 4, GetStandardLocalSystemClock },
|
|
|
|
{ 300, CalculateMonotonicSystemClockBaseTimePoint }
|
2018-02-25 04:34:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetStandardUserSystemClock(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new ISystemClock(SystemClockType.User));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetStandardNetworkSystemClock(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new ISystemClock(SystemClockType.Network));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetStandardSteadyClock(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new ISteadyClock());
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetTimeZoneService(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new ITimeZoneService());
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetStandardLocalSystemClock(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new ISystemClock(SystemClockType.Local));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public long CalculateMonotonicSystemClockBaseTimePoint(ServiceCtx context)
|
2018-07-02 00:03:05 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long timeOffset = (long)(DateTime.UtcNow - StartupDate).TotalSeconds;
|
|
|
|
long systemClockContextEpoch = context.RequestData.ReadInt64();
|
2018-07-02 00:03:05 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(timeOffset + systemClockContextEpoch);
|
2018-07-02 00:03:05 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-25 04:34:16 +00:00
|
|
|
}
|
|
|
|
}
|