mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-14 21:17:43 -07:00
hle: Tidy-up ServiceNotImplementedException (#2535)
* hle: Simplify ServiceNotImplementedException This removes the need to pass in whether the command is a Tipc command or a Hipc command to the exception constructor. * hle: Use the IPC Message type to determine command type This allows differentiating between Tipc and Hipc commands when invoking a handler that supports handling both Tipc and Hipc commands.
This commit is contained in:
parent
d9d18439f6
commit
b5b7e23fc4
@ -18,28 +18,24 @@ namespace Ryujinx.HLE.Exceptions
|
|||||||
public ServiceCtx Context { get; }
|
public ServiceCtx Context { get; }
|
||||||
public IpcMessage Request { get; }
|
public IpcMessage Request { get; }
|
||||||
|
|
||||||
private bool _isTipcCommand;
|
public ServiceNotImplementedException(IpcService service, ServiceCtx context)
|
||||||
|
: this(service, context, "The service call is not implemented.")
|
||||||
public ServiceNotImplementedException(IpcService service, ServiceCtx context, bool isTipcCommand)
|
|
||||||
: this(service, context, "The service call is not implemented.", isTipcCommand)
|
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
public ServiceNotImplementedException(IpcService service, ServiceCtx context, string message, bool isTipcCommand)
|
public ServiceNotImplementedException(IpcService service, ServiceCtx context, string message)
|
||||||
: base(message)
|
: base(message)
|
||||||
{
|
{
|
||||||
Service = service;
|
Service = service;
|
||||||
Context = context;
|
Context = context;
|
||||||
Request = context.Request;
|
Request = context.Request;
|
||||||
_isTipcCommand = isTipcCommand;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ServiceNotImplementedException(IpcService service, ServiceCtx context, string message, Exception inner, bool isTipcCommand)
|
public ServiceNotImplementedException(IpcService service, ServiceCtx context, string message, Exception inner)
|
||||||
: base(message, inner)
|
: base(message, inner)
|
||||||
{
|
{
|
||||||
Service = service;
|
Service = service;
|
||||||
Context = context;
|
Context = context;
|
||||||
Request = context.Request;
|
Request = context.Request;
|
||||||
_isTipcCommand = isTipcCommand;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ServiceNotImplementedException(SerializationInfo info, StreamingContext context)
|
protected ServiceNotImplementedException(SerializationInfo info, StreamingContext context)
|
||||||
@ -66,7 +62,9 @@ namespace Ryujinx.HLE.Exceptions
|
|||||||
|
|
||||||
if (callingType != null && callingMethod != null)
|
if (callingType != null && callingMethod != null)
|
||||||
{
|
{
|
||||||
var ipcCommands = _isTipcCommand ? Service.TipcCommands : Service.HipcCommands;
|
// If the type is past 0xF, we are using TIPC
|
||||||
|
var ipcCommands = Request.Type > IpcMessageType.TipcCloseSession ?
|
||||||
|
Service.TipcCommands : Service.HipcCommands;
|
||||||
|
|
||||||
// Find the handler for the method called
|
// Find the handler for the method called
|
||||||
var ipcHandler = ipcCommands.FirstOrDefault(x => x.Value == callingMethod);
|
var ipcHandler = ipcCommands.FirstOrDefault(x => x.Value == callingMethod);
|
||||||
|
@ -153,7 +153,7 @@ namespace Ryujinx.HLE.HOS.Services
|
|||||||
{
|
{
|
||||||
string dbgMessage = $"{service.GetType().FullName}: {commandId}";
|
string dbgMessage = $"{service.GetType().FullName}: {commandId}";
|
||||||
|
|
||||||
throw new ServiceNotImplementedException(service, context, dbgMessage, false);
|
throw new ServiceNotImplementedException(service, context, dbgMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,7 +194,7 @@ namespace Ryujinx.HLE.HOS.Services
|
|||||||
{
|
{
|
||||||
string dbgMessage = $"{GetType().FullName}: {commandId}";
|
string dbgMessage = $"{GetType().FullName}: {commandId}";
|
||||||
|
|
||||||
throw new ServiceNotImplementedException(this, context, dbgMessage, true);
|
throw new ServiceNotImplementedException(this, context, dbgMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -505,7 +505,7 @@ namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
|||||||
// Restore(bytes<8, 4>)
|
// Restore(bytes<8, 4>)
|
||||||
public ResultCode Restore(ServiceCtx context)
|
public ResultCode Restore(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(12)]
|
[CommandHipc(12)]
|
||||||
@ -971,7 +971,7 @@ namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
|||||||
// RecreateApplicationArea(bytes<8, 4>, u32, buffer<unknown, 5>)
|
// RecreateApplicationArea(bytes<8, 4>, u32, buffer<unknown, 5>)
|
||||||
public ResultCode RecreateApplicationArea(ServiceCtx context)
|
public ResultCode RecreateApplicationArea(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(102)]
|
[CommandHipc(102)]
|
||||||
|
@ -428,7 +428,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv
|
|||||||
// ForceSetClientPid(u64) -> u32 error_code
|
// ForceSetClientPid(u64) -> u32 error_code
|
||||||
public ResultCode ForceSetClientPid(ServiceCtx context)
|
public ResultCode ForceSetClientPid(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(8)]
|
[CommandHipc(8)]
|
||||||
@ -455,7 +455,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv
|
|||||||
// InitializeDevtools(u32, handle<copy>) -> u32 error_code;
|
// InitializeDevtools(u32, handle<copy>) -> u32 error_code;
|
||||||
public ResultCode InitializeDevtools(ServiceCtx context)
|
public ResultCode InitializeDevtools(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(11)] // 3.0.0+
|
[CommandHipc(11)] // 3.0.0+
|
||||||
|
@ -48,14 +48,14 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd
|
|||||||
// GetSettingUrl() -> buffer<unknown<0x100>, 0x16>
|
// GetSettingUrl() -> buffer<unknown<0x100>, 0x16>
|
||||||
public ResultCode GetSettingUrl(ServiceCtx context)
|
public ResultCode GetSettingUrl(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(10)]
|
[CommandHipc(10)]
|
||||||
// GetSettingName() -> buffer<unknown<0x100>, 0x16>
|
// GetSettingName() -> buffer<unknown<0x100>, 0x16>
|
||||||
public ResultCode GetSettingName(ServiceCtx context)
|
public ResultCode GetSettingName(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(11)]
|
[CommandHipc(11)]
|
||||||
@ -128,7 +128,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd
|
|||||||
// ImportSettings(u32, buffer<unknown, 5>) -> buffer<unknown, 6>
|
// ImportSettings(u32, buffer<unknown, 5>) -> buffer<unknown, 6>
|
||||||
public ResultCode ImportSettings(ServiceCtx context)
|
public ResultCode ImportSettings(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(15)] // 4.0.0+
|
[CommandHipc(15)] // 4.0.0+
|
||||||
@ -202,49 +202,49 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd
|
|||||||
// GetNasServiceSetting(buffer<unknown<0x10>, 0x15>) -> buffer<unknown<0x108>, 0x16>
|
// GetNasServiceSetting(buffer<unknown<0x10>, 0x15>) -> buffer<unknown<0x108>, 0x16>
|
||||||
public ResultCode GetNasServiceSetting(ServiceCtx context)
|
public ResultCode GetNasServiceSetting(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(31)]
|
[CommandHipc(31)]
|
||||||
// GetNasServiceSettingEx(buffer<unknown<0x10>, 0x15>) -> (u32, buffer<unknown<0x108>, 0x16>)
|
// GetNasServiceSettingEx(buffer<unknown<0x10>, 0x15>) -> (u32, buffer<unknown<0x108>, 0x16>)
|
||||||
public ResultCode GetNasServiceSettingEx(ServiceCtx context)
|
public ResultCode GetNasServiceSettingEx(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(40)]
|
[CommandHipc(40)]
|
||||||
// GetNasRequestFqdn() -> buffer<unknown<0x100>, 0x16>
|
// GetNasRequestFqdn() -> buffer<unknown<0x100>, 0x16>
|
||||||
public ResultCode GetNasRequestFqdn(ServiceCtx context)
|
public ResultCode GetNasRequestFqdn(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(41)]
|
[CommandHipc(41)]
|
||||||
// GetNasRequestFqdnEx() -> (u32, buffer<unknown<0x100>, 0x16>)
|
// GetNasRequestFqdnEx() -> (u32, buffer<unknown<0x100>, 0x16>)
|
||||||
public ResultCode GetNasRequestFqdnEx(ServiceCtx context)
|
public ResultCode GetNasRequestFqdnEx(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(42)]
|
[CommandHipc(42)]
|
||||||
// GetNasApiFqdn() -> buffer<unknown<0x100>, 0x16>
|
// GetNasApiFqdn() -> buffer<unknown<0x100>, 0x16>
|
||||||
public ResultCode GetNasApiFqdn(ServiceCtx context)
|
public ResultCode GetNasApiFqdn(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(43)]
|
[CommandHipc(43)]
|
||||||
// GetNasApiFqdnEx() -> (u32, buffer<unknown<0x100>, 0x16>)
|
// GetNasApiFqdnEx() -> (u32, buffer<unknown<0x100>, 0x16>)
|
||||||
public ResultCode GetNasApiFqdnEx(ServiceCtx context)
|
public ResultCode GetNasApiFqdnEx(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(50)]
|
[CommandHipc(50)]
|
||||||
// GetCurrentSetting() -> buffer<unknown<0x12bf0>, 0x16>
|
// GetCurrentSetting() -> buffer<unknown<0x12bf0>, 0x16>
|
||||||
public ResultCode GetCurrentSetting(ServiceCtx context)
|
public ResultCode GetCurrentSetting(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(51)] // 9.0.0+
|
[CommandHipc(51)] // 9.0.0+
|
||||||
@ -253,7 +253,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd
|
|||||||
{
|
{
|
||||||
// TODO: Write test parameter through the savedata 0x80000000000000B0 (nsdsave:/test_parameter).
|
// TODO: Write test parameter through the savedata 0x80000000000000B0 (nsdsave:/test_parameter).
|
||||||
|
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(52)] // 9.0.0+
|
[CommandHipc(52)] // 9.0.0+
|
||||||
@ -262,7 +262,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd
|
|||||||
{
|
{
|
||||||
// TODO: Read test parameter through the savedata 0x80000000000000B0 (nsdsave:/test_parameter).
|
// TODO: Read test parameter through the savedata 0x80000000000000B0 (nsdsave:/test_parameter).
|
||||||
|
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(60)]
|
[CommandHipc(60)]
|
||||||
@ -386,14 +386,14 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd
|
|||||||
// SetApplicationServerEnvironmentType(bytes<1>)
|
// SetApplicationServerEnvironmentType(bytes<1>)
|
||||||
public ResultCode SetApplicationServerEnvironmentType(ServiceCtx context)
|
public ResultCode SetApplicationServerEnvironmentType(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(102)] // 10.0.0+
|
[CommandHipc(102)] // 10.0.0+
|
||||||
// DeleteApplicationServerEnvironmentType()
|
// DeleteApplicationServerEnvironmentType()
|
||||||
public ResultCode DeleteApplicationServerEnvironmentType(ServiceCtx context)
|
public ResultCode DeleteApplicationServerEnvironmentType(ServiceCtx context)
|
||||||
{
|
{
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -149,7 +149,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
|
|||||||
public ResultCode Unknown50(ServiceCtx context)
|
public ResultCode Unknown50(ServiceCtx context)
|
||||||
{
|
{
|
||||||
// TODO: figure out the usage of this event
|
// TODO: figure out the usage of this event
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(51)]
|
[CommandHipc(51)]
|
||||||
@ -157,7 +157,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
|
|||||||
public ResultCode Unknown51(ServiceCtx context)
|
public ResultCode Unknown51(ServiceCtx context)
|
||||||
{
|
{
|
||||||
// TODO: figure out the usage of this event
|
// TODO: figure out the usage of this event
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(52)]
|
[CommandHipc(52)]
|
||||||
@ -165,7 +165,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
|
|||||||
public ResultCode Unknown52(ServiceCtx context)
|
public ResultCode Unknown52(ServiceCtx context)
|
||||||
{
|
{
|
||||||
// TODO: figure out the usage of this event
|
// TODO: figure out the usage of this event
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(60)]
|
[CommandHipc(60)]
|
||||||
@ -201,7 +201,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
|
|||||||
public ResultCode GetAlarmRegistrationEvent(ServiceCtx context)
|
public ResultCode GetAlarmRegistrationEvent(ServiceCtx context)
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(201)]
|
[CommandHipc(201)]
|
||||||
@ -209,7 +209,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
|
|||||||
public ResultCode UpdateSteadyAlarms(ServiceCtx context)
|
public ResultCode UpdateSteadyAlarms(ServiceCtx context)
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
[CommandHipc(202)]
|
[CommandHipc(202)]
|
||||||
@ -217,7 +217,7 @@ namespace Ryujinx.HLE.HOS.Services.Time
|
|||||||
public ResultCode TryGetNextSteadyClockAlarmSnapshot(ServiceCtx context)
|
public ResultCode TryGetNextSteadyClockAlarmSnapshot(ServiceCtx context)
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
throw new ServiceNotImplementedException(this, context, false);
|
throw new ServiceNotImplementedException(this, context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user