Ryujinx/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs

73 lines
1.9 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using System;
using System.Collections.Generic;
2018-02-05 00:08:20 +01:00
namespace Ryujinx.HLE.HOS.Services.Sm
2018-02-05 00:08:20 +01:00
{
class IUserInterface : IpcService
2018-02-05 00:08:20 +01:00
{
private Dictionary<int, ServiceProcessRequest> _commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
private bool _isInitialized;
public IUserInterface()
{
_commands = new Dictionary<int, ServiceProcessRequest>
{
{ 0, Initialize },
{ 1, GetService }
};
}
2018-02-05 00:08:20 +01:00
private const int SmNotInitialized = 0x415;
public long Initialize(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
_isInitialized = true;
2018-02-05 00:08:20 +01:00
return 0;
}
public long GetService(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
//Only for kernel version > 3.0.0.
if (!_isInitialized)
2018-02-05 00:08:20 +01:00
{
//return SmNotInitialized;
}
string name = string.Empty;
2018-02-05 00:08:20 +01:00
for (int index = 0; index < 8 &&
context.RequestData.BaseStream.Position <
context.RequestData.BaseStream.Length; index++)
2018-02-05 00:08:20 +01:00
{
byte chr = context.RequestData.ReadByte();
2018-02-05 00:08:20 +01:00
if (chr >= 0x20 && chr < 0x7f)
2018-02-05 00:08:20 +01:00
{
name += (char)chr;
2018-02-05 00:08:20 +01:00
}
}
if (name == string.Empty)
{
return 0;
}
KSession session = new KSession(ServiceFactory.MakeService(context.Device.System, name), name);
2018-02-05 00:08:20 +01:00
if (context.Process.HandleTable.GenerateHandle(session, out int handle) != KernelResult.Success)
{
throw new InvalidOperationException("Out of handles!");
}
2018-02-05 00:08:20 +01:00
context.Response.HandleDesc = IpcHandleDesc.MakeMove(handle);
2018-02-05 00:08:20 +01:00
return 0;
}
}
}