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