a33dc2f491
* Logger class changes only Now compile-time checking is possible with the help of Nullable Value types. * Misc formatting * Manual optimizations PrintGuestLog PrintGuestStackTrace Surfaceflinger DequeueBuffer * Reduce SendVibrationXX log level to Debug * Add Notice log level This level is always enabled and used to print system info, etc... Also, rewrite LogColor to switch expression as colors are static * Unify unhandled exception event handlers * Print enabled LogLevels during init * Re-add App Exit disposes in proper order nit: switch case spacing * Revert PrintGuestStackTrace to Info logs due to #1407 PrintGuestStackTrace is now called in some critical error handlers so revert to old behavior as KThread isn't part of Guest. * Batch replace Logger statements
88 lines
No EOL
2.8 KiB
C#
88 lines
No EOL
2.8 KiB
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ptm.Psm
|
|
{
|
|
class IPsmSession : IpcService
|
|
{
|
|
private KEvent _stateChangeEvent;
|
|
private int _stateChangeEventHandle;
|
|
|
|
public IPsmSession(Horizon system)
|
|
{
|
|
_stateChangeEvent = new KEvent(system.KernelContext);
|
|
_stateChangeEventHandle = -1;
|
|
}
|
|
|
|
[Command(0)]
|
|
// BindStateChangeEvent() -> KObject
|
|
public ResultCode BindStateChangeEvent(ServiceCtx context)
|
|
{
|
|
if (_stateChangeEventHandle == -1)
|
|
{
|
|
KernelResult resultCode = context.Process.HandleTable.GenerateHandle(_stateChangeEvent.ReadableEvent, out int stateChangeEventHandle);
|
|
|
|
if (resultCode != KernelResult.Success)
|
|
{
|
|
return (ResultCode)resultCode;
|
|
}
|
|
}
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_stateChangeEventHandle);
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(1)]
|
|
// UnbindStateChangeEvent()
|
|
public ResultCode UnbindStateChangeEvent(ServiceCtx context)
|
|
{
|
|
if (_stateChangeEventHandle != -1)
|
|
{
|
|
context.Process.HandleTable.CloseHandle(_stateChangeEventHandle);
|
|
_stateChangeEventHandle = -1;
|
|
}
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(2)]
|
|
// SetChargerTypeChangeEventEnabled(u8)
|
|
public ResultCode SetChargerTypeChangeEventEnabled(ServiceCtx context)
|
|
{
|
|
bool chargerTypeChangeEventEnabled = context.RequestData.ReadBoolean();
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { chargerTypeChangeEventEnabled });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(3)]
|
|
// SetPowerSupplyChangeEventEnabled(u8)
|
|
public ResultCode SetPowerSupplyChangeEventEnabled(ServiceCtx context)
|
|
{
|
|
bool powerSupplyChangeEventEnabled = context.RequestData.ReadBoolean();
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { powerSupplyChangeEventEnabled });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(4)]
|
|
// SetBatteryVoltageStateChangeEventEnabled(u8)
|
|
public ResultCode SetBatteryVoltageStateChangeEventEnabled(ServiceCtx context)
|
|
{
|
|
bool batteryVoltageStateChangeEventEnabled = context.RequestData.ReadBoolean();
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePsm, new { batteryVoltageStateChangeEventEnabled });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |