mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
08831eecf7
* IPC refactor part 3 + 4: New server HIPC message processor with source generator based serialization * Make types match on calls to AlignUp/AlignDown * Formatting * Address some PR feedback * Move BitfieldExtensions to Ryujinx.Common.Utilities and consolidate implementations * Rename Reader/Writer to SpanReader/SpanWriter and move to Ryujinx.Common.Memory * Implement EventType * Address more PR feedback * Log request processing errors since they are not normal * Rename waitable to multiwait and add missing lock * PR feedback * Ac_K PR feedback
131 lines
4.2 KiB
C#
131 lines
4.2 KiB
C#
using Ryujinx.Common;
|
|
using Ryujinx.Cpu;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
using Ryujinx.HLE.HOS.Services.Time.Clock;
|
|
using Ryujinx.Horizon.Common;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time.StaticService
|
|
{
|
|
class ISystemClock : IpcService
|
|
{
|
|
private SystemClockCore _clockCore;
|
|
private bool _writePermission;
|
|
private bool _bypassUninitializedClock;
|
|
private int _operationEventReadableHandle;
|
|
|
|
public ISystemClock(SystemClockCore clockCore, bool writePermission, bool bypassUninitializedClock)
|
|
{
|
|
_clockCore = clockCore;
|
|
_writePermission = writePermission;
|
|
_bypassUninitializedClock = bypassUninitializedClock;
|
|
_operationEventReadableHandle = 0;
|
|
}
|
|
|
|
[CommandHipc(0)]
|
|
// GetCurrentTime() -> nn::time::PosixTime
|
|
public ResultCode GetCurrentTime(ServiceCtx context)
|
|
{
|
|
if (!_bypassUninitializedClock && !_clockCore.IsInitialized())
|
|
{
|
|
return ResultCode.UninitializedClock;
|
|
}
|
|
|
|
ITickSource tickSource = context.Device.System.TickSource;
|
|
|
|
ResultCode result = _clockCore.GetCurrentTime(tickSource, out long posixTime);
|
|
|
|
if (result == ResultCode.Success)
|
|
{
|
|
context.ResponseData.Write(posixTime);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
[CommandHipc(1)]
|
|
// SetCurrentTime(nn::time::PosixTime)
|
|
public ResultCode SetCurrentTime(ServiceCtx context)
|
|
{
|
|
if (!_writePermission)
|
|
{
|
|
return ResultCode.PermissionDenied;
|
|
}
|
|
|
|
if (!_bypassUninitializedClock && !_clockCore.IsInitialized())
|
|
{
|
|
return ResultCode.UninitializedClock;
|
|
}
|
|
|
|
long posixTime = context.RequestData.ReadInt64();
|
|
|
|
ITickSource tickSource = context.Device.System.TickSource;
|
|
|
|
return _clockCore.SetCurrentTime(tickSource, posixTime);
|
|
}
|
|
|
|
[CommandHipc(2)]
|
|
// GetClockContext() -> nn::time::SystemClockContext
|
|
public ResultCode GetSystemClockContext(ServiceCtx context)
|
|
{
|
|
if (!_bypassUninitializedClock && !_clockCore.IsInitialized())
|
|
{
|
|
return ResultCode.UninitializedClock;
|
|
}
|
|
|
|
ITickSource tickSource = context.Device.System.TickSource;
|
|
|
|
ResultCode result = _clockCore.GetClockContext(tickSource, out SystemClockContext clockContext);
|
|
|
|
if (result == ResultCode.Success)
|
|
{
|
|
context.ResponseData.WriteStruct(clockContext);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
[CommandHipc(3)]
|
|
// SetClockContext(nn::time::SystemClockContext)
|
|
public ResultCode SetSystemClockContext(ServiceCtx context)
|
|
{
|
|
if (!_writePermission)
|
|
{
|
|
return ResultCode.PermissionDenied;
|
|
}
|
|
|
|
if (!_bypassUninitializedClock && !_clockCore.IsInitialized())
|
|
{
|
|
return ResultCode.UninitializedClock;
|
|
}
|
|
|
|
SystemClockContext clockContext = context.RequestData.ReadStruct<SystemClockContext>();
|
|
|
|
ResultCode result = _clockCore.SetSystemClockContext(clockContext);
|
|
|
|
return result;
|
|
}
|
|
|
|
[CommandHipc(4)] // 9.0.0+
|
|
// GetOperationEventReadableHandle() -> handle<copy>
|
|
public ResultCode GetOperationEventReadableHandle(ServiceCtx context)
|
|
{
|
|
if (_operationEventReadableHandle == 0)
|
|
{
|
|
KEvent kEvent = new KEvent(context.Device.System.KernelContext);
|
|
|
|
_clockCore.RegisterOperationEvent(kEvent.WritableEvent);
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(kEvent.ReadableEvent, out _operationEventReadableHandle) != Result.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
}
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_operationEventReadableHandle);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |