-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUtils.cs
191 lines (175 loc) · 6.11 KB
/
Utils.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
namespace Feif
{
public static class Utils
{
private static SHA256 sha256 = SHA256.Create();
public static IEnumerable<string> Search(string path, Predicate<string> predicate)
{
foreach (var directory in Directory.GetDirectories(path))
{
foreach (var item in Search(directory, predicate))
{
yield return item;
}
}
foreach (var item in Directory.GetFiles(path).Where(item => predicate(item)))
{
yield return item;
}
}
public static string GetNamespace(string type)
{
if (type.Contains('.'))
{
return type.Replace(type.Split('.').Last(), string.Empty).TrimEnd('.');
}
else
{
return Setting.Default.DefaultNamespace;
}
}
public static string GetFileHash(string path)
{
using var stream = File.OpenRead(path);
return BitConverter.ToString(sha256.ComputeHash(stream)).Replace("-", string.Empty);
}
public static string GetClass(string type)
{
if (type.Contains('.'))
{
return type.Split('.').Last();
}
else
{
return type;
}
}
public static string GetStringString(string source)
{
var result = source.Replace("\\n", "\n")
.Replace("\\r", "\r")
.Replace("\\t", "\t")
.Replace("\\\"", "\"")
.Replace("\\\\", "\\")
.Replace("\\b", "\b")
.Replace("\\f", "\f")
.Replace("\\a", "\a")
.Replace("\\v", "\v");
return result.Substring(1, result.Length - 2);
}
public static List<string> GetStringList(string source)
{
var list = new List<string>();
int count = 0;
bool skip = false;
int index = 0;
for (int i = 0; i < source.Length; i++)
{
var item = source[i];
if (skip)
{
skip = false;
continue;
}
if (item == '\\') skip = true;
if (item == '\"')
{
if (++count % 2 == 0)
{
list.Add(Utils.GetStringString(source.Substring(index, i - index + 1)));
}
else
{
index = i;
}
}
}
return list;
}
public static List<KeyValuePair<string, string>> GetKeyValues(string source)
{
var list = new List<KeyValuePair<string, string>>();
int count = 0;
bool skip = false;
int stringIndex = 0;
var queue = new Queue<string>();
bool onString = false;
bool getKey = true;
int keyValueIndex = 0;
for (int i = 0; i < source.Length; i++)
{
var item = source[i];
if (skip)
{
skip = false;
continue;
}
if (item == '\\')
{
skip = true;
}
if (!onString)
{
if (item == '|')
{
if (getKey)
{
keyValueIndex = i + 1;
}
if (queue.Count == 1)
{
queue.Enqueue(source.Substring(keyValueIndex, i - keyValueIndex));
getKey = !getKey;
keyValueIndex = i + 1;
if (queue.Count >= 2)
{
list.Add(new KeyValuePair<string, string>(queue.Dequeue(), queue.Dequeue()));
}
}
}
if (item == ':')
{
if (!getKey)
{
keyValueIndex = i + 1;
}
if (queue.Count == 0)
{
queue.Enqueue(source.Substring(keyValueIndex, i - keyValueIndex));
getKey = !getKey;
keyValueIndex = i + 1;
if (queue.Count >= 2)
{
list.Add(new KeyValuePair<string, string>(queue.Dequeue(), queue.Dequeue()));
}
}
}
}
if (item == '\"')
{
if (++count % 2 == 0)
{
onString = false;
queue.Enqueue(source.Substring(stringIndex, i - stringIndex + 1));
getKey = !getKey;
if (queue.Count >= 2)
{
list.Add(new KeyValuePair<string, string>(queue.Dequeue(), queue.Dequeue()));
}
}
else
{
onString = true;
stringIndex = i;
}
}
}
return list;
}
}
}