2023-01-04 23:15:45 +01:00
|
|
|
|
using Ryujinx.Horizon.Common;
|
|
|
|
|
using Ryujinx.Horizon.Sdk.Sf.Cmif;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf
|
|
|
|
|
{
|
|
|
|
|
class CommandHandler
|
|
|
|
|
{
|
|
|
|
|
public delegate Result MethodInvoke(
|
2023-01-08 13:13:39 +01:00
|
|
|
|
ref ServiceDispatchContext context,
|
|
|
|
|
HipcCommandProcessor processor,
|
2023-01-04 23:15:45 +01:00
|
|
|
|
ServerMessageRuntimeMetadata runtimeMetadata,
|
2023-01-08 13:13:39 +01:00
|
|
|
|
ReadOnlySpan<byte> inRawData,
|
|
|
|
|
ref Span<CmifOutHeader> outHeader);
|
2023-01-04 23:15:45 +01:00
|
|
|
|
|
2023-01-08 13:13:39 +01:00
|
|
|
|
private readonly MethodInvoke _invoke;
|
2023-01-04 23:15:45 +01:00
|
|
|
|
private readonly HipcCommandProcessor _processor;
|
|
|
|
|
|
|
|
|
|
public string MethodName => _invoke.Method.Name;
|
|
|
|
|
|
|
|
|
|
public CommandHandler(MethodInvoke invoke, params CommandArg[] args)
|
|
|
|
|
{
|
2023-01-08 13:13:39 +01:00
|
|
|
|
_invoke = invoke;
|
2023-01-04 23:15:45 +01:00
|
|
|
|
_processor = new HipcCommandProcessor(args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Result Invoke(ref Span<CmifOutHeader> outHeader, ref ServiceDispatchContext context, ReadOnlySpan<byte> inRawData)
|
|
|
|
|
{
|
|
|
|
|
if (context.Processor == null)
|
|
|
|
|
{
|
|
|
|
|
context.Processor = _processor;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
context.Processor.SetImplementationProcessor(_processor);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-08 13:13:39 +01:00
|
|
|
|
var runtimeMetadata = context.Processor.GetRuntimeMetadata();
|
|
|
|
|
Result result = context.Processor.PrepareForProcess(ref context, runtimeMetadata);
|
2023-01-04 23:15:45 +01:00
|
|
|
|
|
|
|
|
|
if (result.IsFailure)
|
|
|
|
|
{
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _invoke(ref context, _processor, runtimeMetadata, inRawData, ref outHeader);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void GetCmifOutHeaderPointer(ref Span<CmifOutHeader> outHeader, ref Span<byte> outRawData)
|
|
|
|
|
{
|
2023-01-08 13:13:39 +01:00
|
|
|
|
outHeader = MemoryMarshal.Cast<byte, CmifOutHeader>(outRawData)[..1];
|
|
|
|
|
outRawData = outRawData[Unsafe.SizeOf<CmifOutHeader>()..];
|
2023-01-04 23:15:45 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-08 13:13:39 +01:00
|
|
|
|
}
|