-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathSimpleProfiler.cs
248 lines (212 loc) · 8.11 KB
/
SimpleProfiler.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
using RimWorld.Planet;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Text;
using UnityEngine;
using Verse;
using Verse.AI;
namespace Multiplayer.Client
{
public static class SimpleProfiler
{
// Inits (or clears) the profiler
[DllImport("simple_profiler.dll", CharSet = CharSet.Ansi)]
private static extern void init_profiler(string id);
// Starts collecting profiler data
[DllImport("simple_profiler.dll")]
private static extern void start_profiler();
// Pauses data collection
[DllImport("simple_profiler.dll")]
private static extern void pause_profiler();
// Prints collected data to file
[DllImport("simple_profiler.dll")]
private static extern void print_profiler(string filename);
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
public static extern IntPtr GetModuleHandle(string lpModuleName);
public static bool available;
public static bool running;
[MethodImpl(MethodImplOptions.NoInlining)]
public static void CheckAvailable()
{
available = GetModuleHandle("simple_profiler.dll").ToInt32() != 0;
}
[MethodImpl(MethodImplOptions.NoInlining)]
public static void Init(string id)
{
if (!available) return;
init_profiler(id);
}
[MethodImpl(MethodImplOptions.NoInlining)]
public static void Start()
{
if (!available) return;
start_profiler();
running = true;
}
[MethodImpl(MethodImplOptions.NoInlining)]
public static void Pause()
{
if (!available) return;
pause_profiler();
running = false;
}
[MethodImpl(MethodImplOptions.NoInlining)]
public static void Print(string file)
{
if (!available) return;
print_profiler(file);
}
private static HashSet<int> printed = new HashSet<int>();
public static void DumpMemory(object obj, StringBuilder builder)
{
printed.Clear();
DumpMemory(obj, builder, 0);
}
private static IEnumerable<FieldInfo> AllFields(Type t)
{
var flags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance;
foreach (var field in t.GetFields(flags))
{
if (field.DeclaringType == t)
yield return field;
}
var baseType = t.BaseType;
if (baseType != null)
foreach (FieldInfo f in AllFields(baseType))
yield return f;
}
private static void DumpMemory(object obj, StringBuilder builder, int depth)
{
if (obj == null)
{
builder.AppendLine(" null");
return;
}
Type fType = obj.GetType();
if (fType.IsPrimitive ||
fType.IsEnum ||
obj is string ||
obj is Def ||
obj is Type ||
obj is RegionLink ||
obj is Color32 ||
obj is Delegate ||
obj is IntVec3 ||
obj is Rot4
)
{
if (obj is string str && str.Contains("\n"))
obj = obj.GetHashCode();
builder.Append(" ").Append(obj).AppendLine();
return;
}
if (!fType.IsValueType && !printed.Add(obj.GetHashCode()))
{
builder.Append(" ").Append(obj).Append(" [r]").AppendLine();
return;
}
if (IsCollection(obj) && obj is IEnumerable e)
{
builder.AppendLine();
int i = 0;
bool shouldPrintElements = fType != typeof(int[]) && fType != typeof(byte[]) && fType != typeof(bool[]);
foreach (object elem in e)
{
if (shouldPrintElements && elem != null)
{
builder.Append(' ', depth + 1).Append('[').Append(i).Append("]:");
DumpMemory(elem, builder, depth + 2);
}
i++;
}
builder.Append(' ', depth + 1).Append("[Size: ").Append(i).Append("]").AppendLine();
return;
}
builder.AppendLine();
foreach (FieldInfo f in AllFields(fType))
{
if (f.IsLiteral || f.IsInitOnly) continue;
if (f.IsStatic) continue;
if (f.Name == "holdingOwner" || f.Name == "cachedLabelMouseover") continue;
if (f.Name == "calcGrid" &&
(f.DeclaringType == typeof(PathFinder) ||
f.DeclaringType == typeof(WorldPathFinder)
)) continue;
builder.Append(' ', depth);
builder.Append(f.Name).Append(":");
object val = f.GetValue(obj);
//Type fType = f.FieldType;
if (f.FieldType == typeof(Map) ||
f.FieldType == typeof(Pawn_DrawTracker) ||
f.FieldType == typeof(WorldGrid) ||
f.FieldType == typeof(ThingGrid) ||
f.FieldType == typeof(MapDrawer) ||
f.FieldType == typeof(PathGrid) ||
f.FieldType == typeof(CellGrid) ||
f.FieldType == typeof(FloodFiller) ||
f.FieldType == typeof(FogGrid) ||
f.FieldType == typeof(ListerThings) ||
f.FieldType == typeof(LinkGrid) ||
f.FieldType == typeof(GlowFlooder) ||
f.FieldType == typeof(MapCellsInRandomOrder) ||
f.FieldType == typeof(GlowGrid) ||
f.FieldType == typeof(DeepResourceGrid) ||
f.FieldType == typeof(SnowGrid) ||
f.FieldType == typeof(RoofGrid)
)
{
builder.AppendLine();
continue;
}
DumpMemory(val, builder, depth + 1);
}
}
public static bool IsCollection(object obj)
{
return (
obj is ICollection ||
obj is IList ||
obj is IDictionary ||
(
obj.GetType().IsGenericType &&
typeof(HashSet<>).IsAssignableFrom(obj.GetType().GetGenericTypeDefinition())
)
);
}
public static bool IsOfGenericType(this Type typeToCheck, Type genericType)
{
Type concreteType;
return typeToCheck.IsOfGenericType(genericType, out concreteType);
}
public static bool IsOfGenericType(this Type typeToCheck, Type genericType, out Type concreteGenericType)
{
while (true)
{
concreteGenericType = null;
if (genericType == null)
throw new ArgumentNullException(nameof(genericType));
if (typeToCheck == null || typeToCheck == typeof(object))
return false;
if (typeToCheck == genericType)
{
concreteGenericType = typeToCheck;
return true;
}
if ((typeToCheck.IsGenericType ? typeToCheck.GetGenericTypeDefinition() : typeToCheck) == genericType)
{
concreteGenericType = typeToCheck;
return true;
}
if (genericType.IsInterface)
foreach (var i in typeToCheck.GetInterfaces())
if (i.IsOfGenericType(genericType, out concreteGenericType))
return true;
typeToCheck = typeToCheck.BaseType;
}
}
}
}