-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathStackTraceLogItem.cs
91 lines (72 loc) · 2.48 KB
/
StackTraceLogItem.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
using System.Collections.Generic;
using System.Text;
using Multiplayer.Client.Desyncs;
using Verse;
namespace Multiplayer.Client
{
public abstract class StackTraceLogItem
{
public int tick;
public int hash;
public abstract string AdditionalInfo { get; }
public abstract string StackTraceString { get; }
public override string ToString()
{
return $"Tick:{tick} Hash:{hash} '{AdditionalInfo}'\n{StackTraceString}";
}
public virtual void ReturnToPool() { }
}
public class StackTraceLogItemObj : StackTraceLogItem
{
public string info1;
public string info2;
public override string AdditionalInfo => $"{info1} {info2}";
public override string StackTraceString => "";
}
public class StackTraceLogItemRaw : StackTraceLogItem
{
public long[] raw = new long[DeferredStackTracingImpl.MaxDepth];
public int depth;
public int ticksGame;
public ulong rngState;
public ThingDef thingDef;
public int thingId;
public string factionName;
public string moreInfo;
public override string AdditionalInfo => $"{ticksGame} {thingDef}{thingId} {factionName} {depth} {rngState} {moreInfo}";
private static Dictionary<long, string> methodNameCache = new();
public override string StackTraceString
{
get
{
var builder = new StringBuilder();
for (int i = 0; i < depth; i++)
{
var addr = raw[i];
if (!methodNameCache.TryGetValue(addr, out string method))
methodNameCache[addr] = method = Native.MethodNameFromAddr(raw[i], false);
if (method != null)
builder.AppendLine(SyncCoordinator.MethodNameWithIL(method));
else
builder.AppendLine("Null");
}
return builder.ToString();
}
}
public static StackTraceLogItemRaw GetFromPool()
{
return SimplePool<StackTraceLogItemRaw>.Get();
}
public override void ReturnToPool()
{
depth = 0;
ticksGame = 0;
rngState = 0;
thingId = 0;
thingDef = null;
factionName = null;
moreInfo = null;
SimplePool<StackTraceLogItemRaw>.Return(this);
}
}
}