-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndexLibrary.cs
434 lines (372 loc) · 16.1 KB
/
IndexLibrary.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
using Frosty.Core.Controls;
using Frosty.Core;
using FrostySdk.Attributes;
using FrostySdk.Ebx;
using FrostySdk.IO;
using FrostySdk;
using FrostySdk.Managers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Text.RegularExpressions;
using FrostySdk.Interfaces;
using Newtonsoft.Json;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.IO;
using Newtonsoft.Json.Linq;
namespace FindinFilesPlugin
{
public static class IndexLibrary
{
public static IEnumerable<EbxAssetEntry> EnumerateResult { get; set; }
public static bool isIndexInitialized { get; private set; }
private static Dictionary<Guid, string> ebxAssetIndex { get; set; } = new Dictionary<Guid, string>();
#region - Search -
/// <summary>
/// Use LINQ search
/// </summary>
/// <param name="Key">Search Key Word</param>
public async static void SetEnumerateSearch(string Key, bool isCaseSensitive, bool isMatchWholeWord, bool isRegularExpressions, string lookIn)
{
await Task.Run(() =>
{
if (isIndexInitialized)
{
if (isRegularExpressions)
{
EnumerateResult =
from entry in ebxAssetIndex
where Regex.IsMatch(entry.Value, Key)
select App.AssetManager.GetEbxEntry(entry.Key);
}
else
{
RegexOptions options = isCaseSensitive ? RegexOptions.None : RegexOptions.IgnoreCase;
string pattern = isMatchWholeWord ? $@"\b{Key}\b" : Key;
EnumerateResult =
from entry in ebxAssetIndex
where Regex.IsMatch(entry.Value, pattern, options)
select App.AssetManager.GetEbxEntry(entry.Key);
}
}
else
{
if (isRegularExpressions)
{
EnumerateResult =
from entry in App.AssetManager.EnumerateEbx()
where entry.Path.StartsWith(lookIn)
where Regex.IsMatch(EbxToString(entry), Key)
select entry;
}
else
{
RegexOptions options = isCaseSensitive ? RegexOptions.None : RegexOptions.IgnoreCase;
string pattern = isMatchWholeWord ? $@"\b{Key}\b" : Key;
EnumerateResult =
from entry in App.AssetManager.EnumerateEbx()
where entry.Path.StartsWith(lookIn)
where Regex.IsMatch(EbxToString(entry), pattern, options)
select entry;
}
}
});
}
/// <summary>
/// Use foreach search all
/// </summary>
/// <param name="Key">Search Key Word</param>
public static List<EbxAssetEntry> SearchAll(string Key, CancellationToken cancelToken, ILogger inLogger, bool isCaseSensitive, bool isMatchWholeWord, bool isRegularExpressions, string lookIn)
{
cancelToken.ThrowIfCancellationRequested();
List<EbxAssetEntry> result = new List<EbxAssetEntry>();
if (isIndexInitialized)
{
uint totalCount = (uint)ebxAssetIndex.Count;
uint index = 0;
cancelToken.ThrowIfCancellationRequested();
foreach (KeyValuePair<Guid, string> entry in ebxAssetIndex)
{
cancelToken.ThrowIfCancellationRequested();
inLogger.Log(entry.Key.ToString());
inLogger.Log("progress:" + (index++ / (double)totalCount) * 100.0d);
if (isRegularExpressions)
{
if (Regex.IsMatch(entry.Value, Key))
{
result.Add(App.AssetManager.GetEbxEntry(entry.Key));
}
}
else
{
RegexOptions options = isCaseSensitive ? RegexOptions.None : RegexOptions.IgnoreCase;
string pattern = isMatchWholeWord ? $@"\b{Key}\b" : Key;
if (Regex.IsMatch(entry.Value, pattern, options))
{
result.Add(App.AssetManager.GetEbxEntry(entry.Key));
}
}
}
}
else
{
uint totalCount = (uint)App.AssetManager.EnumerateEbx().ToList().Count;
uint index = 0;
cancelToken.ThrowIfCancellationRequested();
foreach (EbxAssetEntry entry in App.AssetManager.EnumerateEbx())
{
cancelToken.ThrowIfCancellationRequested();
inLogger.Log(entry.Name);
inLogger.Log("progress:" + (index++ / (double)totalCount) * 100.0d);
if (isRegularExpressions)
{
if (Regex.IsMatch(EbxToString(entry), Key))
{
result.Add(entry);
}
}
else
{
RegexOptions options = isCaseSensitive ? RegexOptions.None : RegexOptions.IgnoreCase;
string pattern = isMatchWholeWord ? $@"\b{Key}\b" : Key;
if (Regex.IsMatch(EbxToString(entry), pattern, options))
{
result.Add(entry);
}
}
}
}
return result;
}
#endregion
#region - Index -
public static void InitializeIndex(CancellationToken cancelToken, ILogger inLogger)
{
ebxAssetIndex.Clear();
if (isIndexInitialized)
{
isIndexInitialized = false;
return;
}
uint totalCount = (uint)App.AssetManager.EnumerateEbx().ToList().Count;
uint index = 0;
cancelToken.ThrowIfCancellationRequested();
foreach (EbxAssetEntry entry in App.AssetManager.EnumerateEbx())
{
cancelToken.ThrowIfCancellationRequested();
inLogger.Log(entry.Name);
inLogger.Log("progress:" + (index++ / (double)totalCount) * 100.0d);
ebxAssetIndex.Add(entry.Guid, EbxToString(entry));
}
isIndexInitialized = true;
}
public static void IndexToJson(string fileName)
{
if (isIndexInitialized == false)
throw new ArgumentNullException();
//return JsonConvert.SerializeObject(ebxAssetIndex, Formatting.Indented);
using (StreamWriter writer = new StreamWriter(fileName))
using (JsonTextWriter jsonWriter = new JsonTextWriter(writer))
{
JsonSerializer jsonSerializer = new JsonSerializer();
jsonWriter.Formatting = Formatting.Indented;
jsonSerializer.Formatting = Formatting.Indented;
jsonSerializer.Serialize(jsonWriter, ebxAssetIndex);
jsonWriter.Flush();
jsonWriter.Close();
}
}
public static void JsonToIndex(string fileName)
{
ebxAssetIndex.Clear();
//ebxAssetIndex = JsonConvert.DeserializeObject<Dictionary<Guid, string>>(json);
using (StreamReader reader = new StreamReader(fileName))
using (JsonTextReader jsonReader = new JsonTextReader(reader))
{
JsonSerializer jsonSerializer = new JsonSerializer();
ebxAssetIndex = jsonSerializer.Deserialize<Dictionary<Guid, string>>(jsonReader);
jsonReader.Close();
}
if (ebxAssetIndex is null)
{
ebxAssetIndex = new Dictionary<Guid, string>();
isIndexInitialized = false;
return;
}
isIndexInitialized = true;
}
#endregion
#region - Convert -
/// <summary>
/// Convert EbxAssetEntry to string
/// </summary>
public static string EbxToString(EbxAssetEntry entry)
{
//EbxAsset asset = App.AssetManager.GetEbx(entry);
//XmlSerializer x = new XmlSerializer(typeof(object));
//using (var memoryStream = new MemoryStream())
//{
// EbxXmlWriter ebxXmlWriter = new EbxXmlWriter(memoryStream, App.AssetManager);
// ebxXmlWriter.WriteObjects(asset.Objects);
// memoryStream.Position = 0;
// StreamReader streamReader = new StreamReader(memoryStream);
// return streamReader.ReadToEnd();
//}
EbxAsset asset = App.AssetManager.GetEbx(entry);
StringBuilder sb = new StringBuilder();
foreach (var Object in asset.Objects)
{
sb.Append(ClassToString(Object));
}
return sb.ToString();
}
/// <summary>
/// This is mainly from FrostySdk.IO.EbxXmlWriter
/// </summary>
private static string ClassToString(object Obj)
{
Type ObjType = Obj.GetType();
StringBuilder SB = new StringBuilder();
int TotalCount = ObjType.GetProperties().Length;
PropertyInfo[] Properties = ObjType.GetProperties();
Array.Sort(Properties, new PropertyComparer());
string StrGuid = "";
FieldInfo FI = ObjType.GetField("__Guid", BindingFlags.NonPublic | BindingFlags.Instance);
if (FI != null)
{
AssetClassGuid Guid = (AssetClassGuid)FI.GetValue(Obj);
StrGuid = Guid.ToString();
}
if (TotalCount != 0 && (Properties.Length > 0 || (ObjType.BaseType != typeof(object) && ObjType.BaseType != typeof(ValueType))))
{
SB.AppendLine(ObjType.Name);
SB.AppendLine(StrGuid);
foreach (PropertyInfo PI in Properties)
{
if (PI.GetCustomAttribute<IsTransientAttribute>() != null)
continue;
SB.AppendLine(PI.Name);
SB.AppendLine("[AddInfo]");
object Value = PI.GetValue(Obj);
string Tmp = "";
SB.AppendLine(FieldToString(Value, ref Tmp));
SB = SB.Replace("[AddInfo]", Tmp);
}
}
else
{
SB.AppendLine(ObjType.Name);
SB.AppendLine(StrGuid);
}
return SB.ToString();
}
/// <summary>
/// This is mainly from FrostySdk.IO.EbxXmlWriter
/// </summary>
private static string FieldToString(object Value, ref string AdditionalInfo)
{
Type FieldType = Value.GetType();
StringBuilder SB = new StringBuilder();
if (FieldType.Name == "List`1")
{
int Count = (int)FieldType.GetMethod("get_Count").Invoke(Value, null);
AdditionalInfo = Count.ToString();
if (Count > 0)
{
for (int i = 0; i < Count; i++)
{
SB.AppendLine(i.ToString());
object SubValue = FieldType.GetMethod("get_Item").Invoke(Value, new object[] { i });
string Tmp = "";
SB.AppendLine(FieldToString(SubValue, ref Tmp));
}
}
}
else
{
if (FieldType.Namespace == "FrostySdk.Ebx" && FieldType.BaseType != typeof(Enum))
{
if (FieldType == typeof(CString)) SB.AppendLine(Value.ToString());
else if (FieldType == typeof(ResourceRef)) SB.AppendLine(Value.ToString());
else if (FieldType == typeof(FileRef)) SB.AppendLine(Value.ToString());
else if (FieldType == typeof(TypeRef)) SB.AppendLine(Value.ToString());
else if (FieldType == typeof(BoxedValueRef)) SB.AppendLine(Value.ToString());
else if (FieldType == typeof(PointerRef))
{
PointerRef Reference = (PointerRef)Value;
if (Reference.Type == PointerRefType.Internal)
{
Type SubObjType = Reference.Internal.GetType();
AssetClassGuid guid = (AssetClassGuid)SubObjType.GetField("__Guid", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(Reference.Internal);
SB.AppendLine(SubObjType.Name);
SB.AppendLine(guid.ToString());
}
else if (Reference.Type == PointerRefType.External)
{
EbxAssetEntry entry = App.AssetManager.GetEbxEntry(Reference.External.FileGuid);
if (entry != null)
{
SB.AppendLine(entry.Name);
SB.AppendLine(Reference.External.ClassGuid.ToString());
}
else
{
SB.AppendLine("BadRef " + Reference.External.FileGuid + "/" + Reference.External.ClassGuid);
}
}
else
SB.AppendLine("nullptr");
}
else
{
SB.AppendLine(ClassToString(Value));
}
}
else
{
if (FieldType == typeof(byte)) SB.AppendLine(((byte)Value).ToString("X2"));
else if (FieldType == typeof(ushort)) SB.AppendLine(((ushort)Value).ToString("X4"));
else if (FieldType == typeof(uint))
{
uint value = (uint)Value;
string val = Utils.GetString((int)value);
if (!val.StartsWith("0x"))
{
SB.AppendLine(val);
SB.AppendLine(value.ToString("X8"));
}
else
{
SB.AppendLine(val);
}
}
else if (FieldType == typeof(int))
{
int value = (int)Value;
string val = Utils.GetString(value);
if (!val.StartsWith("0x"))
{
SB.AppendLine(val);
SB.AppendLine(value.ToString("X8"));
}
else
{
SB.AppendLine(val);
}
}
else if (FieldType == typeof(ulong)) SB.AppendLine(((ulong)Value).ToString("X16"));
else if (FieldType == typeof(float)) SB.AppendLine(((float)Value).ToString());
else if (FieldType == typeof(double)) SB.AppendLine(((double)Value).ToString());
else SB.AppendLine(Value.ToString());
}
}
return SB.ToString();
}
#endregion
}
}