-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
scan_services.ps1
252 lines (204 loc) · 6.46 KB
/
scan_services.ps1
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
#
# @Author : Chr_
# @Date : 2024-01-18 14:25:15
# @LastEditors : Chr_
# @LastEditTime : 2024-01-18 20:15:18
# @Description : 生成依赖服务信息
#
# 工作目录
$workDir = (Get-Location).Path;
$outputPath = Join-Path -Path (Join-Path -Path $workDir -ChildPath "XinjingdailyBot.WebAPI") -ChildPath "Properties";
# 包名列表
$libNames =
"XinjingdailyBot.Model",
"XinjingdailyBot.Repository",
"XinjingdailyBot.Interface",
"XinjingdailyBot.Service",
"XinjingdailyBot.Tasks",
"XinjingdailyBot.Command";
# 输出路径
$appServicePath = Join-Path -Path $outputPath -ChildPath "appService.json";
$taskPath = Join-Path -Path $outputPath -ChildPath "schedule.json";
$tablePath = Join-Path -Path $outputPath -ChildPath "dbtable.json";
# 扫描源文件列表
function GetSourceFileList {
param (
[string]$Path
)
$result = @();
# 去除 bin obj 目录
$dirs = Get-ChildItem -Path $Path -Directory -Exclude "bin", "obj"
# 遍历所有 .cs 文件
foreach ($dir in $dirs) {
$files = Get-ChildItem -Path $dir -Filter "*.cs" -File -Recurse
# 遍历子目录文件
foreach ($file in $files) {
$result += $file
}
}
$files = Get-ChildItem -Path $Path -Filter "*.cs" -File
# 遍历所有 .cs 文件
foreach ($file in $files) {
$result += $file
}
Write-Output $result
$result;
}
# 读取命名空间
function GetNamespace {
param (
[string] $Content
)
if ($Content -match "namespace\s+([^;{]+)") {
$Matches[1];
}
}
# 读取类名/接口名
function GetClassName {
param (
[string] $Content
)
if ($Content -match "(?:class|interface|record)\s+([^({:\s]+)") {
$Matches[1];
}
}
# 扫描AppServiceAttribute
function ScanAppServiceAttribute {
param (
[string] $Content
)
if ($Content -match "\[AppService(?:Attribute)?\(([^\]]+)\)\]") {
$result = @{}
$arguments = $Matches[1].Split(",");
foreach ($argument in $arguments) {
if ($argument -match "LifeTime\.(Singleton|Transient|Scoped)") {
$result["LifeTime"] = $Matches[1];
}
elseif ($argument -match "typeof\(([^()]+)\)") {
$result["Interface"] = $Matches[1];
}
elseif ($argument -match "true|false") {
$result["AutoInterface"] = $Matches[1];
}
else {
Write-Output $argument;
}
}
$result;
}
}
# 扫描JobAttribute
function ScanScheduleAttribute {
param (
[string] $Content
)
if ($Content -match "\[Schedule(?:Attribute)?\(""([^\]]+)""\)\]") {
$Matches[1];
}
}
function ScanSugarTableAttribute {
param (
[string] $Content
)
$Content -match "\[SugarTable(?:Attribute)?\(([^\]]+)\)\]";
}
# 扫描QueryCmdAttribute ToDo
# function ScanQueryCmdAttribute {
# param (
# [string] $Content
# )
# if ($Content -match "\[QueryCmd(?:Attribute)?\(([^\]]+)\)\]") {
# $result = @{}
# $arguments = $Matches[1].Split(",");
# foreach ($argument in $arguments) {
# if ($argument -match "EUserRights\.\S+") {
# $result["LifeTime"] = $Matches[0];
# }
# elseif ($argument -match "typeof\(([^()]+)\)") {
# $result["Interface"] = $Matches[1];
# }
# elseif ($argument -match "true|false") {
# $result["AutoInterface"] = $Matches[1];
# }
# else {
# Write-Output $argument;
# }
# }
# $result;
# }
# }
# 类全名表
$clsNamespaces = @{};
$appServiceAttributes = @{};
$scheduleAttributes = @{};
$sugarTableAttributes = @{};
foreach ($libName in $libNames) {
# 库文件路径
$libPath = Join-Path -Path $workDir -ChildPath $libName;
# 获取所有源文件路径
$filePaths = GetSourceFileList -Path $libPath;
# 读取Service信息和类命名空间;
foreach ($filePath in $filePaths) {
$fileContent = Get-Content -Path $filePath.FullName -Raw;
$namespace = GetNameSpace -Content $fileContent;
if ($null -eq $namespace -or $namespace -eq "" ) {
continue;
}
$clsName = GetClassName -Content $fileContent;
if ($null -eq $namespace -or $namespace -eq "" ) {
continue;
}
$clsNamespaces[$clsName] = $namespace;
$appService = ScanAppServiceAttribute -Content $fileContent;
if ($null -ne $appService) {
$appServiceAttributes[$clsName] = $appService;
}
$task = ScanScheduleAttribute -Content $fileContent;
if ($null -ne $task) {
$scheduleAttributes[$clsName] = $task;
}
if (ScanSugarTableAttribute -Content $fileContent) {
$sugarTableAttributes[$clsName] = $null;
}
}
}
$services = $appServiceAttributes.Clone();
# 生成服务信息
foreach ($service in $services.Keys) {
$serviceInfo = $appServiceAttributes[$service];
$namespace = $clsNamespaces[$service];
$serviceInfo["Class"] = "$namespace.$service";
$interface = $serviceInfo["Interface"];
if ($null -ne $interface) {
$ns = $clsNamespaces[$interface];
$serviceInfo["Interface"] = "$ns.$interface";
}
$appServiceAttributes[$service] = $serviceInfo;
}
$tasks = $scheduleAttributes.Clone();
# 生成服务信息
foreach ($task in $tasks.Keys) {
$schedule = $scheduleAttributes[$task];
$namespace = $clsNamespaces[$task];
$clsName = "$namespace.$task";
$scheduleAttributes[$task] = @{
"Class" = $clsName
"Schedule" = $schedule
};
}
$tables = $sugarTableAttributes.Clone();
# 生成数据表信息
foreach($table in $tables.Keys){
$namespace = $clsNamespaces[$table];
$clsName = "$namespace.$table";
$sugarTableAttributes[$table] = $clsName
}
Write-Output "扫描到 $($appServiceAttributes.Count) 个服务";
$appServiceAttributes | ConvertTo-Json | Out-File -FilePath $appServicePath
Write-Output "文件保存至 $appServicePath"
Write-Output "扫描到 $($scheduleAttributes.Count) 个定时任务";
$scheduleAttributes | ConvertTo-Json | Out-File -FilePath $taskPath
Write-Output "文件保存至 $taskPath"
Write-Output "扫描到 $($sugarTableAttributes.Count) 个数据表";
$sugarTableAttributes | ConvertTo-Json | Out-File -FilePath $tablePath
Write-Output "文件保存至 $tablePath"