mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-29 09:52:22 -05:00
* dotnet format style --severity info Some changes were manually reverted. * dotnet format analyzers --serverity info Some changes have been minimally adapted. * Restore a few unused methods and variables * Silence dotnet format IDE0060 warnings * Silence dotnet format IDE0052 warnings * Address or silence dotnet format IDE1006 warnings * Address dotnet format CA1816 warnings * Address or silence dotnet format CA2208 warnings * Address or silence dotnet format CA1806 and a few CA1854 warnings * Address dotnet format CA2211 warnings * Address dotnet format CA1822 warnings * Address or silence dotnet format CA1069 warnings * Make dotnet format succeed in style mode * Address or silence dotnet format CA2211 warnings * Address review comments * Address dotnet format CA2208 warnings properly * Make ProcessResult readonly * Address most dotnet format whitespace warnings * Apply dotnet format whitespace formatting A few of them have been manually reverted and the corresponding warning was silenced * Add previously silenced warnings back I have no clue how these disappeared * Revert formatting changes for while and for-loops * Format if-blocks correctly * Run dotnet format style after rebase * Run dotnet format whitespace after rebase * Run dotnet format style after rebase * Run dotnet format analyzers after rebase * Run dotnet format after rebase and remove unused usings - analyzers - style - whitespace * Disable 'prefer switch expression' rule * Add comments to disabled warnings * Fix a few disabled warnings * Fix naming rule violation, Convert shader properties to auto-property and convert values to const * Simplify properties and array initialization, Use const when possible, Remove trailing commas * Start working on disabled warnings * Fix and silence a few dotnet-format warnings again * Run dotnet format after rebase * Use using declaration instead of block syntax * Address IDE0251 warnings * Address a few disabled IDE0060 warnings * Silence IDE0060 in .editorconfig * Revert "Simplify properties and array initialization, Use const when possible, Remove trailing commas" This reverts commit 9462e4136c0a2100dc28b20cf9542e06790aa67e. * dotnet format whitespace after rebase * First dotnet format pass * Fix naming rule violations * Fix typo * Add trailing commas, use targeted new and use array initializer * Fix build issues * Fix remaining build issues * Remove SuppressMessage for CA1069 where possible * Address dotnet format issues * Address formatting issues Co-authored-by: Ac_K <acoustik666@gmail.com> * Add GetHashCode implementation for RenderingSurfaceInfo * Explicitly silence CA1822 for every affected method in Syscall * Address formatting issues in Demangler.cs * Address review feedback Co-authored-by: Ac_K <acoustik666@gmail.com> * Revert marking service methods as static * Next dotnet format pass * Address review feedback --------- Co-authored-by: Ac_K <acoustik666@gmail.com>
285 lines
9.1 KiB
C#
285 lines
9.1 KiB
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.Exceptions;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services
|
|
{
|
|
abstract class IpcService
|
|
{
|
|
public IReadOnlyDictionary<int, MethodInfo> CmifCommands { get; }
|
|
public IReadOnlyDictionary<int, MethodInfo> TipcCommands { get; }
|
|
|
|
public ServerBase Server { get; private set; }
|
|
|
|
private IpcService _parent;
|
|
private readonly IdDictionary _domainObjects;
|
|
private int _selfId;
|
|
private bool _isDomain;
|
|
|
|
public IpcService(ServerBase server = null)
|
|
{
|
|
CmifCommands = Assembly.GetExecutingAssembly().GetTypes()
|
|
.Where(type => type == GetType())
|
|
.SelectMany(type => type.GetMethods(BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public))
|
|
.SelectMany(methodInfo => methodInfo.GetCustomAttributes(typeof(CommandCmifAttribute))
|
|
.Select(command => (((CommandCmifAttribute)command).Id, methodInfo)))
|
|
.ToDictionary(command => command.Id, command => command.methodInfo);
|
|
|
|
TipcCommands = Assembly.GetExecutingAssembly().GetTypes()
|
|
.Where(type => type == GetType())
|
|
.SelectMany(type => type.GetMethods(BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public))
|
|
.SelectMany(methodInfo => methodInfo.GetCustomAttributes(typeof(CommandTipcAttribute))
|
|
.Select(command => (((CommandTipcAttribute)command).Id, methodInfo)))
|
|
.ToDictionary(command => command.Id, command => command.methodInfo);
|
|
|
|
Server = server;
|
|
|
|
_parent = this;
|
|
_domainObjects = new IdDictionary();
|
|
_selfId = -1;
|
|
}
|
|
|
|
public int ConvertToDomain()
|
|
{
|
|
if (_selfId == -1)
|
|
{
|
|
_selfId = _domainObjects.Add(this);
|
|
}
|
|
|
|
_isDomain = true;
|
|
|
|
return _selfId;
|
|
}
|
|
|
|
public void ConvertToSession()
|
|
{
|
|
_isDomain = false;
|
|
}
|
|
|
|
public void CallCmifMethod(ServiceCtx context)
|
|
{
|
|
IpcService service = this;
|
|
|
|
if (_isDomain)
|
|
{
|
|
int domainWord0 = context.RequestData.ReadInt32();
|
|
int domainObjId = context.RequestData.ReadInt32();
|
|
|
|
int domainCmd = (domainWord0 >> 0) & 0xff;
|
|
int inputObjCount = (domainWord0 >> 8) & 0xff;
|
|
int dataPayloadSize = (domainWord0 >> 16) & 0xffff;
|
|
|
|
context.RequestData.BaseStream.Seek(0x10 + dataPayloadSize, SeekOrigin.Begin);
|
|
|
|
context.Request.ObjectIds.EnsureCapacity(inputObjCount);
|
|
|
|
for (int index = 0; index < inputObjCount; index++)
|
|
{
|
|
context.Request.ObjectIds.Add(context.RequestData.ReadInt32());
|
|
}
|
|
|
|
context.RequestData.BaseStream.Seek(0x10, SeekOrigin.Begin);
|
|
|
|
if (domainCmd == 1)
|
|
{
|
|
service = GetObject(domainObjId);
|
|
|
|
context.ResponseData.Write(0L);
|
|
context.ResponseData.Write(0L);
|
|
}
|
|
else if (domainCmd == 2)
|
|
{
|
|
Delete(domainObjId);
|
|
|
|
context.ResponseData.Write(0L);
|
|
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
throw new NotImplementedException($"Domain command: {domainCmd}");
|
|
}
|
|
}
|
|
|
|
#pragma warning disable IDE0059 // Remove unnecessary value assignment
|
|
long sfciMagic = context.RequestData.ReadInt64();
|
|
#pragma warning restore IDE0059
|
|
int commandId = (int)context.RequestData.ReadInt64();
|
|
|
|
bool serviceExists = service.CmifCommands.TryGetValue(commandId, out MethodInfo processRequest);
|
|
|
|
if (context.Device.Configuration.IgnoreMissingServices || serviceExists)
|
|
{
|
|
ResultCode result = ResultCode.Success;
|
|
|
|
context.ResponseData.BaseStream.Seek(_isDomain ? 0x20 : 0x10, SeekOrigin.Begin);
|
|
|
|
if (serviceExists)
|
|
{
|
|
Logger.Trace?.Print(LogClass.KernelIpc, $"{service.GetType().Name}: {processRequest.Name}");
|
|
|
|
result = (ResultCode)processRequest.Invoke(service, new object[] { context });
|
|
}
|
|
else
|
|
{
|
|
string serviceName;
|
|
|
|
|
|
serviceName = (service is not DummyService dummyService) ? service.GetType().FullName : dummyService.ServiceName;
|
|
|
|
Logger.Warning?.Print(LogClass.KernelIpc, $"Missing service {serviceName}: {commandId} ignored");
|
|
}
|
|
|
|
if (_isDomain)
|
|
{
|
|
foreach (int id in context.Response.ObjectIds)
|
|
{
|
|
context.ResponseData.Write(id);
|
|
}
|
|
|
|
context.ResponseData.BaseStream.Seek(0, SeekOrigin.Begin);
|
|
|
|
context.ResponseData.Write(context.Response.ObjectIds.Count);
|
|
}
|
|
|
|
context.ResponseData.BaseStream.Seek(_isDomain ? 0x10 : 0, SeekOrigin.Begin);
|
|
|
|
context.ResponseData.Write(IpcMagic.Sfco);
|
|
context.ResponseData.Write((long)result);
|
|
}
|
|
else
|
|
{
|
|
string dbgMessage = $"{service.GetType().FullName}: {commandId}";
|
|
|
|
throw new ServiceNotImplementedException(service, context, dbgMessage);
|
|
}
|
|
}
|
|
|
|
public void CallTipcMethod(ServiceCtx context)
|
|
{
|
|
int commandId = (int)context.Request.Type - 0x10;
|
|
|
|
bool serviceExists = TipcCommands.TryGetValue(commandId, out MethodInfo processRequest);
|
|
|
|
if (context.Device.Configuration.IgnoreMissingServices || serviceExists)
|
|
{
|
|
ResultCode result = ResultCode.Success;
|
|
|
|
context.ResponseData.BaseStream.Seek(0x4, SeekOrigin.Begin);
|
|
|
|
if (serviceExists)
|
|
{
|
|
Logger.Debug?.Print(LogClass.KernelIpc, $"{GetType().Name}: {processRequest.Name}");
|
|
|
|
result = (ResultCode)processRequest.Invoke(this, new object[] { context });
|
|
}
|
|
else
|
|
{
|
|
string serviceName;
|
|
|
|
|
|
serviceName = (this is not DummyService dummyService) ? GetType().FullName : dummyService.ServiceName;
|
|
|
|
Logger.Warning?.Print(LogClass.KernelIpc, $"Missing service {serviceName}: {commandId} ignored");
|
|
}
|
|
|
|
context.ResponseData.BaseStream.Seek(0, SeekOrigin.Begin);
|
|
|
|
context.ResponseData.Write((uint)result);
|
|
}
|
|
else
|
|
{
|
|
string dbgMessage = $"{GetType().FullName}: {commandId}";
|
|
|
|
throw new ServiceNotImplementedException(this, context, dbgMessage);
|
|
}
|
|
}
|
|
|
|
protected void MakeObject(ServiceCtx context, IpcService obj)
|
|
{
|
|
obj.TrySetServer(_parent.Server);
|
|
|
|
if (_parent._isDomain)
|
|
{
|
|
obj._parent = _parent;
|
|
|
|
context.Response.ObjectIds.Add(_parent.Add(obj));
|
|
}
|
|
else
|
|
{
|
|
context.Device.System.KernelContext.Syscall.CreateSession(out int serverSessionHandle, out int clientSessionHandle, false, 0);
|
|
|
|
obj.Server.AddSessionObj(serverSessionHandle, obj);
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeMove(clientSessionHandle);
|
|
}
|
|
}
|
|
|
|
protected T GetObject<T>(ServiceCtx context, int index) where T : IpcService
|
|
{
|
|
int objId = context.Request.ObjectIds[index];
|
|
|
|
IpcService obj = _parent.GetObject(objId);
|
|
|
|
return obj is T t ? t : null;
|
|
}
|
|
|
|
public bool TrySetServer(ServerBase newServer)
|
|
{
|
|
if (Server == null)
|
|
{
|
|
Server = newServer;
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private int Add(IpcService obj)
|
|
{
|
|
return _domainObjects.Add(obj);
|
|
}
|
|
|
|
private bool Delete(int id)
|
|
{
|
|
object obj = _domainObjects.Delete(id);
|
|
|
|
if (obj is IDisposable disposableObj)
|
|
{
|
|
disposableObj.Dispose();
|
|
}
|
|
|
|
return obj != null;
|
|
}
|
|
|
|
private IpcService GetObject(int id)
|
|
{
|
|
return _domainObjects.GetData<IpcService>(id);
|
|
}
|
|
|
|
public void SetParent(IpcService parent)
|
|
{
|
|
_parent = parent._parent;
|
|
}
|
|
|
|
public virtual void DestroyAtExit()
|
|
{
|
|
foreach (object domainObject in _domainObjects.Values)
|
|
{
|
|
if (domainObject != this && domainObject is IDisposable disposableObj)
|
|
{
|
|
disposableObj.Dispose();
|
|
}
|
|
}
|
|
|
|
_domainObjects.Clear();
|
|
}
|
|
}
|
|
}
|