2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-25 18:58:16 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Text;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Lm
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class ILogger : IpcService
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-25 18:58:16 +00:00
|
|
|
|
|
|
|
public ILogger()
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
|
|
|
{ 0, Log }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public long Log(ServiceCtx Context)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-08-22 21:06:29 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
(long BufPos, long BufSize) = Context.Request.GetBufferType0x21();
|
|
|
|
byte[] LogBuffer = Context.Memory.ReadBytes(BufPos, BufSize);
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
using (MemoryStream MS = new MemoryStream(LogBuffer))
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
BinaryReader Reader = new BinaryReader(MS);
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
long Pid = Reader.ReadInt64();
|
|
|
|
long ThreadContext = Reader.ReadInt64();
|
|
|
|
short Flags = Reader.ReadInt16();
|
|
|
|
byte Level = Reader.ReadByte();
|
|
|
|
byte Verbosity = Reader.ReadByte();
|
|
|
|
int PayloadLength = Reader.ReadInt32();
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
StringBuilder SB = new StringBuilder();
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
SB.AppendLine("Guest log:");
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
while (MS.Position < MS.Length)
|
2018-02-25 18:58:16 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
byte Type = Reader.ReadByte();
|
|
|
|
byte Size = Reader.ReadByte();
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
LmLogField Field = (LmLogField)Type;
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
string FieldStr = string.Empty;
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
if (Field == LmLogField.Start)
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
Reader.ReadBytes(Size);
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
continue;
|
|
|
|
}
|
2018-12-05 00:52:39 +00:00
|
|
|
else if (Field == LmLogField.Stop)
|
2018-08-22 21:06:29 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2018-12-05 00:52:39 +00:00
|
|
|
else if (Field == LmLogField.Line)
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
FieldStr = $"{Field}: {Reader.ReadInt32()}";
|
2018-02-25 18:58:16 +00:00
|
|
|
}
|
2018-12-05 00:52:39 +00:00
|
|
|
else if (Field == LmLogField.DropCount)
|
2018-08-22 21:06:29 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
FieldStr = $"{Field}: {Reader.ReadInt64()}";
|
2018-08-22 21:06:29 +00:00
|
|
|
}
|
2018-12-05 00:52:39 +00:00
|
|
|
else if (Field == LmLogField.Time)
|
2018-08-22 21:06:29 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
FieldStr = $"{Field}: {Reader.ReadInt64()}s";
|
2018-08-22 21:06:29 +00:00
|
|
|
}
|
2018-12-05 00:52:39 +00:00
|
|
|
else if (Field < LmLogField.Count)
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
FieldStr = $"{Field}: '{Encoding.UTF8.GetString(Reader.ReadBytes(Size)).TrimEnd()}'";
|
2018-04-24 18:57:39 +00:00
|
|
|
}
|
2018-08-22 21:06:29 +00:00
|
|
|
else
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
FieldStr = $"Field{Field}: '{Encoding.UTF8.GetString(Reader.ReadBytes(Size)).TrimEnd()}'";
|
2018-08-22 21:06:29 +00:00
|
|
|
}
|
2018-04-24 18:57:39 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
SB.AppendLine(" " + FieldStr);
|
2018-02-25 18:58:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
string Text = SB.ToString();
|
2018-02-25 18:58:16 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
switch((LmLogLevel)Level)
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
case LmLogLevel.Trace: Logger.PrintDebug (LogClass.ServiceLm, Text); break;
|
|
|
|
case LmLogLevel.Info: Logger.PrintInfo (LogClass.ServiceLm, Text); break;
|
|
|
|
case LmLogLevel.Warning: Logger.PrintWarning(LogClass.ServiceLm, Text); break;
|
|
|
|
case LmLogLevel.Error: Logger.PrintError (LogClass.ServiceLm, Text); break;
|
|
|
|
case LmLogLevel.Critical: Logger.PrintError (LogClass.ServiceLm, Text); break;
|
2018-04-24 18:57:39 +00:00
|
|
|
}
|
2018-02-25 18:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|