mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:18:40 +00:00
560ccbeb2d
* Refactoring commands handling - Use Reflection to handle commands ID. - Add all symbols (from SwIPC so not all time accurate). - Re-sort some services commands methods. - Some cleanup. - Keep some empty constructor for consistency. * Fix order in IProfile
56 lines
1.9 KiB
C#
56 lines
1.9 KiB
C#
using Ryujinx.Common;
|
|
using Ryujinx.HLE.Utilities;
|
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend
|
|
{
|
|
[Service("friend:a", FriendServicePermissionLevel.Admin)]
|
|
[Service("friend:m", FriendServicePermissionLevel.Manager)]
|
|
[Service("friend:s", FriendServicePermissionLevel.System)]
|
|
[Service("friend:u", FriendServicePermissionLevel.User)]
|
|
[Service("friend:v", FriendServicePermissionLevel.Overlay)]
|
|
class IServiceCreator : IpcService
|
|
{
|
|
private FriendServicePermissionLevel _permissionLevel;
|
|
|
|
public IServiceCreator(ServiceCtx context, FriendServicePermissionLevel permissionLevel)
|
|
{
|
|
_permissionLevel = permissionLevel;
|
|
}
|
|
|
|
[Command(0)]
|
|
// CreateFriendService() -> object<nn::friends::detail::ipc::IFriendService>
|
|
public long CreateFriendService(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IFriendService(_permissionLevel));
|
|
|
|
return 0;
|
|
}
|
|
|
|
[Command(1)] // 2.0.0+
|
|
// CreateNotificationService(nn::account::Uid) -> object<nn::friends::detail::ipc::INotificationService>
|
|
public long CreateNotificationService(ServiceCtx context)
|
|
{
|
|
UInt128 userId = context.RequestData.ReadStruct<UInt128>();
|
|
|
|
if (userId.IsNull)
|
|
{
|
|
return MakeError(ErrorModule.Friends, FriendError.InvalidArgument);
|
|
}
|
|
|
|
MakeObject(context, new INotificationService(context, userId, _permissionLevel));
|
|
|
|
return 0;
|
|
}
|
|
|
|
[Command(2)] // 4.0.0+
|
|
// CreateDaemonSuspendSessionService() -> object<nn::friends::detail::ipc::IDaemonSuspendSessionService>
|
|
public long CreateDaemonSuspendSessionService(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IDaemonSuspendSessionService(_permissionLevel));
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |