2019-10-08 03:48:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time.Clock
|
|
|
|
|
{
|
|
|
|
|
abstract class SystemClockCore
|
|
|
|
|
{
|
2019-10-08 03:48:49 +00:00
|
|
|
|
private SteadyClockCore _steadyClockCore;
|
|
|
|
|
private SystemClockContext _context;
|
|
|
|
|
private bool _isInitialized;
|
|
|
|
|
private SystemClockContextUpdateCallback _systemClockContextUpdateCallback;
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
2019-07-25 14:44:51 +00:00
|
|
|
|
public SystemClockCore(SteadyClockCore steadyClockCore)
|
|
|
|
|
{
|
|
|
|
|
_steadyClockCore = steadyClockCore;
|
|
|
|
|
_context = new SystemClockContext();
|
2019-10-08 03:48:49 +00:00
|
|
|
|
_isInitialized = false;
|
2019-07-25 14:44:51 +00:00
|
|
|
|
|
|
|
|
|
_context.SteadyTimePoint.ClockSourceId = steadyClockCore.GetClockSourceId();
|
2019-10-08 03:48:49 +00:00
|
|
|
|
_systemClockContextUpdateCallback = null;
|
2019-07-25 14:44:51 +00:00
|
|
|
|
}
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
2019-07-25 14:44:51 +00:00
|
|
|
|
public virtual SteadyClockCore GetSteadyClockCore()
|
|
|
|
|
{
|
|
|
|
|
return _steadyClockCore;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-08 03:48:49 +00:00
|
|
|
|
public ResultCode GetCurrentTime(KThread thread, out long posixTime)
|
|
|
|
|
{
|
|
|
|
|
posixTime = 0;
|
|
|
|
|
|
|
|
|
|
SteadyClockTimePoint currentTimePoint = _steadyClockCore.GetCurrentTimePoint(thread);
|
|
|
|
|
|
|
|
|
|
ResultCode result = GetClockContext(thread, out SystemClockContext clockContext);
|
|
|
|
|
|
|
|
|
|
if (result == ResultCode.Success)
|
|
|
|
|
{
|
|
|
|
|
result = ResultCode.TimeMismatch;
|
|
|
|
|
|
|
|
|
|
if (currentTimePoint.ClockSourceId == clockContext.SteadyTimePoint.ClockSourceId)
|
|
|
|
|
{
|
|
|
|
|
posixTime = clockContext.Offset + currentTimePoint.TimePoint;
|
|
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ResultCode SetCurrentTime(KThread thread, long posixTime)
|
|
|
|
|
{
|
|
|
|
|
SteadyClockTimePoint currentTimePoint = _steadyClockCore.GetCurrentTimePoint(thread);
|
|
|
|
|
|
|
|
|
|
SystemClockContext clockContext = new SystemClockContext()
|
|
|
|
|
{
|
|
|
|
|
Offset = posixTime - currentTimePoint.TimePoint,
|
|
|
|
|
SteadyTimePoint = currentTimePoint
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ResultCode result = SetClockContext(clockContext);
|
|
|
|
|
|
|
|
|
|
if (result == ResultCode.Success)
|
|
|
|
|
{
|
|
|
|
|
result = Flush(clockContext);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual ResultCode GetClockContext(KThread thread, out SystemClockContext context)
|
2019-07-25 14:44:51 +00:00
|
|
|
|
{
|
|
|
|
|
context = _context;
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-08 03:48:49 +00:00
|
|
|
|
public virtual ResultCode SetClockContext(SystemClockContext context)
|
2019-07-25 14:44:51 +00:00
|
|
|
|
{
|
|
|
|
|
_context = context;
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
2019-10-08 03:48:49 +00:00
|
|
|
|
protected virtual ResultCode Flush(SystemClockContext context)
|
|
|
|
|
{
|
|
|
|
|
if (_systemClockContextUpdateCallback == null)
|
|
|
|
|
{
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
2019-10-08 03:48:49 +00:00
|
|
|
|
return _systemClockContextUpdateCallback.Update(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetUpdateCallbackInstance(SystemClockContextUpdateCallback systemClockContextUpdateCallback)
|
2019-07-14 20:50:11 +00:00
|
|
|
|
{
|
2019-10-08 03:48:49 +00:00
|
|
|
|
_systemClockContextUpdateCallback = systemClockContextUpdateCallback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void RegisterOperationEvent(KWritableEvent writableEvent)
|
|
|
|
|
{
|
|
|
|
|
if (_systemClockContextUpdateCallback != null)
|
|
|
|
|
{
|
|
|
|
|
_systemClockContextUpdateCallback.RegisterOperationEvent(writableEvent);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ResultCode SetSystemClockContext(SystemClockContext context)
|
|
|
|
|
{
|
|
|
|
|
ResultCode result = SetClockContext(context);
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
|
|
|
|
if (result == ResultCode.Success)
|
|
|
|
|
{
|
2019-10-08 03:48:49 +00:00
|
|
|
|
result = Flush(context);
|
|
|
|
|
}
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
2019-10-08 03:48:49 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsInitialized()
|
|
|
|
|
{
|
|
|
|
|
return _isInitialized;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void MarkInitialized()
|
|
|
|
|
{
|
|
|
|
|
_isInitialized = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsClockSetup(KThread thread)
|
|
|
|
|
{
|
|
|
|
|
ResultCode result = GetClockContext(thread, out SystemClockContext context);
|
|
|
|
|
|
|
|
|
|
if (result == ResultCode.Success)
|
|
|
|
|
{
|
|
|
|
|
SteadyClockTimePoint steadyClockTimePoint = _steadyClockCore.GetCurrentTimePoint(thread);
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
|
|
|
|
return steadyClockTimePoint.ClockSourceId == context.SteadyTimePoint.ClockSourceId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|