blob: 6223f9b51f162359c358853cc89f68af82f9ef7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Sf;
using Ryujinx.Horizon.Sdk.Sm;
using Ryujinx.Horizon.Sm.Impl;
namespace Ryujinx.Horizon.Sm.Ipc
{
partial class UserService : IUserService
{
private readonly ServiceManager _serviceManager;
private ulong _clientProcessId;
private bool _initialized;
public UserService(ServiceManager serviceManager)
{
_serviceManager = serviceManager;
}
[CmifCommand(0)]
public Result Initialize([ClientProcessId] ulong clientProcessId)
{
_clientProcessId = clientProcessId;
_initialized = true;
return Result.Success;
}
[CmifCommand(1)]
public Result GetService([MoveHandle] out int handle, ServiceName name)
{
if (!_initialized)
{
handle = 0;
return SmResult.InvalidClient;
}
return _serviceManager.GetService(out handle, _clientProcessId, name);
}
[CmifCommand(2)]
public Result RegisterService([MoveHandle] out int handle, ServiceName name, int maxSessions, bool isLight)
{
if (!_initialized)
{
handle = 0;
return SmResult.InvalidClient;
}
return _serviceManager.RegisterService(out handle, _clientProcessId, name, maxSessions, isLight);
}
[CmifCommand(3)]
public Result UnregisterService(ServiceName name)
{
if (!_initialized)
{
return SmResult.InvalidClient;
}
return _serviceManager.UnregisterService(_clientProcessId, name);
}
}
}
|