mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-06 04:42:23 -05:00
Move solution and projects to src
This commit is contained in:
8
src/Ryujinx.Horizon/Sdk/Sm/IManagerService.cs
Normal file
8
src/Ryujinx.Horizon/Sdk/Sm/IManagerService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Ryujinx.Horizon.Sdk.Sf;
|
||||
|
||||
namespace Ryujinx.Horizon.Sdk.Sm
|
||||
{
|
||||
interface IManagerService : IServiceObject
|
||||
{
|
||||
}
|
||||
}
|
||||
13
src/Ryujinx.Horizon/Sdk/Sm/IUserService.cs
Normal file
13
src/Ryujinx.Horizon/Sdk/Sm/IUserService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Ryujinx.Horizon.Common;
|
||||
using Ryujinx.Horizon.Sdk.Sf;
|
||||
|
||||
namespace Ryujinx.Horizon.Sdk.Sm
|
||||
{
|
||||
interface IUserService : IServiceObject
|
||||
{
|
||||
Result Initialize(ulong clientProcessId);
|
||||
Result GetService(out int handle, ServiceName name);
|
||||
Result RegisterService(out int handle, ServiceName name, int maxSessions, bool isLight);
|
||||
Result UnregisterService(ServiceName name);
|
||||
}
|
||||
}
|
||||
98
src/Ryujinx.Horizon/Sdk/Sm/ServiceName.cs
Normal file
98
src/Ryujinx.Horizon/Sdk/Sm/ServiceName.cs
Normal file
@@ -0,0 +1,98 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Ryujinx.Horizon.Sdk.Sm
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct ServiceName
|
||||
{
|
||||
public static ServiceName Invalid { get; } = new ServiceName(0);
|
||||
|
||||
public bool IsValid => Packed != 0;
|
||||
|
||||
public int Length => sizeof(ulong);
|
||||
|
||||
public ulong Packed { get; }
|
||||
|
||||
public byte this[int index]
|
||||
{
|
||||
get
|
||||
{
|
||||
if ((uint)index >= sizeof(ulong))
|
||||
{
|
||||
throw new IndexOutOfRangeException();
|
||||
}
|
||||
|
||||
return (byte)(Packed >> (index * 8));
|
||||
}
|
||||
}
|
||||
|
||||
private ServiceName(ulong packed)
|
||||
{
|
||||
Packed = packed;
|
||||
}
|
||||
|
||||
public static ServiceName Encode(string name)
|
||||
{
|
||||
ulong packed = 0;
|
||||
|
||||
for (int index = 0; index < sizeof(ulong); index++)
|
||||
{
|
||||
if (index < name.Length)
|
||||
{
|
||||
packed |= (ulong)(byte)name[index] << (index * 8);
|
||||
}
|
||||
else
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return new ServiceName(packed);
|
||||
}
|
||||
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
return obj is ServiceName serviceName && serviceName.Equals(this);
|
||||
}
|
||||
|
||||
public bool Equals(ServiceName other)
|
||||
{
|
||||
return other.Packed == Packed;
|
||||
}
|
||||
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return Packed.GetHashCode();
|
||||
}
|
||||
|
||||
public static bool operator ==(ServiceName lhs, ServiceName rhs)
|
||||
{
|
||||
return lhs.Equals(rhs);
|
||||
}
|
||||
|
||||
public static bool operator !=(ServiceName lhs, ServiceName rhs)
|
||||
{
|
||||
return !lhs.Equals(rhs);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
string name = string.Empty;
|
||||
|
||||
for (int index = 0; index < sizeof(ulong); index++)
|
||||
{
|
||||
byte character = (byte)(Packed >> (index * 8));
|
||||
|
||||
if (character == 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
name += (char)character;
|
||||
}
|
||||
|
||||
return name;
|
||||
}
|
||||
}
|
||||
}
|
||||
113
src/Ryujinx.Horizon/Sdk/Sm/SmApi.cs
Normal file
113
src/Ryujinx.Horizon/Sdk/Sm/SmApi.cs
Normal file
@@ -0,0 +1,113 @@
|
||||
using Ryujinx.Common.Memory;
|
||||
using Ryujinx.Horizon.Common;
|
||||
using Ryujinx.Horizon.Sdk.Sf.Cmif;
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Horizon.Sdk.Sm
|
||||
{
|
||||
class SmApi
|
||||
{
|
||||
private const string SmName = "sm:";
|
||||
|
||||
private int _portHandle;
|
||||
|
||||
public Result Initialize()
|
||||
{
|
||||
Result result = HorizonStatic.Syscall.ConnectToNamedPort(out int portHandle, SmName);
|
||||
|
||||
while (result == KernelResult.NotFound)
|
||||
{
|
||||
HorizonStatic.Syscall.SleepThread(50000000L);
|
||||
result = HorizonStatic.Syscall.ConnectToNamedPort(out portHandle, SmName);
|
||||
}
|
||||
|
||||
if (result.IsFailure)
|
||||
{
|
||||
return result;
|
||||
}
|
||||
|
||||
_portHandle = portHandle;
|
||||
|
||||
return RegisterClient();
|
||||
}
|
||||
|
||||
private Result RegisterClient()
|
||||
{
|
||||
Span<byte> data = stackalloc byte[8];
|
||||
|
||||
SpanWriter writer = new(data);
|
||||
|
||||
writer.Write(0UL);
|
||||
|
||||
return ServiceUtil.SendRequest(out _, _portHandle, 0, sendPid: true, data);
|
||||
}
|
||||
|
||||
public Result GetServiceHandle(out int handle, ServiceName name)
|
||||
{
|
||||
Span<byte> data = stackalloc byte[8];
|
||||
|
||||
SpanWriter writer = new(data);
|
||||
|
||||
writer.Write(name);
|
||||
|
||||
Result result = ServiceUtil.SendRequest(out CmifResponse response, _portHandle, 1, sendPid: false, data);
|
||||
|
||||
if (result.IsFailure)
|
||||
{
|
||||
handle = 0;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
handle = response.MoveHandles[0];
|
||||
|
||||
return Result.Success;
|
||||
}
|
||||
|
||||
public Result RegisterService(out int handle, ServiceName name, int maxSessions, bool isLight)
|
||||
{
|
||||
Span<byte> data = stackalloc byte[16];
|
||||
|
||||
SpanWriter writer = new(data);
|
||||
|
||||
writer.Write(name);
|
||||
writer.Write(isLight ? 1 : 0);
|
||||
writer.Write(maxSessions);
|
||||
|
||||
Result result = ServiceUtil.SendRequest(out CmifResponse response, _portHandle, 2, sendPid: false, data);
|
||||
|
||||
if (result.IsFailure)
|
||||
{
|
||||
handle = 0;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
handle = response.MoveHandles[0];
|
||||
|
||||
return Result.Success;
|
||||
}
|
||||
|
||||
public Result UnregisterService(ServiceName name)
|
||||
{
|
||||
Span<byte> data = stackalloc byte[8];
|
||||
|
||||
SpanWriter writer = new(data);
|
||||
|
||||
writer.Write(name);
|
||||
|
||||
return ServiceUtil.SendRequest(out _, _portHandle, 3, sendPid: false, data);
|
||||
}
|
||||
|
||||
public Result DetachClient()
|
||||
{
|
||||
Span<byte> data = stackalloc byte[8];
|
||||
|
||||
SpanWriter writer = new(data);
|
||||
|
||||
writer.Write(0UL);
|
||||
|
||||
return ServiceUtil.SendRequest(out _, _portHandle, 4, sendPid: true, data);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user