mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:48:34 +00:00
8406ec6272
* Refactor Ryujinx.Common and HLE Stub Logging * Resolve review comments * Rename missed loop variable * Optimize PrintStub logging function * Pass the call-sites Thread ID through to the logger * Remove superfluous lock from ConsoleLog * Process logged data objects in the logger target Pass the data object all the way to the output logger targets, to allow them to "serialize" this in whatever appropriate format they're logging in. * Use existing StringBuilder to build the properties string * Add a ServiceNotImplemented Exception Useful for printing debug information about unimplemented service calls * Resolve Style Nits * Resolve Merge Issues * Fix typo and align declarations
47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.Utilities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Acc
|
|
{
|
|
class IManagerForApplication : IpcService
|
|
{
|
|
private UInt128 _uuid;
|
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
|
|
|
public IManagerForApplication(UInt128 uuid)
|
|
{
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
|
{
|
|
{ 0, CheckAvailability },
|
|
{ 1, GetAccountId }
|
|
};
|
|
|
|
_uuid = uuid;
|
|
}
|
|
|
|
// CheckAvailability()
|
|
public long CheckAvailability(ServiceCtx context)
|
|
{
|
|
Logger.PrintStub(LogClass.ServiceAcc);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// GetAccountId() -> nn::account::NetworkServiceAccountId
|
|
public long GetAccountId(ServiceCtx context)
|
|
{
|
|
long networkServiceAccountId = 0xcafe;
|
|
|
|
Logger.PrintStub(LogClass.ServiceAcc, new { networkServiceAccountId });
|
|
|
|
context.ResponseData.Write(networkServiceAccountId);
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |