-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathCSharpCode.cs
191 lines (169 loc) · 5.56 KB
/
CSharpCode.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 NJsonSchema.CodeGeneration;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace WebApiClientCore.OpenApi.SourceGenerator
{
/// <summary>
/// 表示c#代码
/// 自动代码美化
/// </summary>
[DebuggerDisplay("TypeName = {TypeName}")]
public class CSharpCode : CodeArtifact
{
/// <summary>
/// c#代码
/// </summary>
/// <param name="codeArtifact">源代码</param>
public CSharpCode(CodeArtifact codeArtifact)
: this(TransformCode(codeArtifact.Code), codeArtifact.TypeName, codeArtifact.Type)
{
}
/// <summary>
/// c#代码
/// </summary>
/// <param name="source">源代码</param>
/// <param name="typeName">类型名称</param>
/// <param name="type">类型分类</param>
public CSharpCode(string source, string typeName, CodeArtifactType type)
: base(typeName, type, CodeArtifactLanguage.CSharp, CodeArtifactCategory.Undefined, Pretty(source))
{
}
/// <summary>
/// 获取所有行
/// </summary>
public IEnumerable<string> Lines
{
get => GetLines(this.Code);
}
/// <summary>
/// 转换为字符串代码
/// </summary>
/// <returns></returns>
public override string ToString()
{
return this.Code;
}
/// <summary>
/// 转换代码
/// 将NSwag生成的模型代码转换为WebApiClient的模型代码
/// </summary>
/// <param name="nswagCode"></param>
/// <returns></returns>
private static string TransformCode(string nswagCode)
{
var builder = new StringBuilder();
var lines = GetLines(nswagCode);
foreach (var line in lines)
{
if (line.Contains("System.CodeDom.Compiler.GeneratedCode"))
{
continue;
}
if (line.Contains("Newtonsoft.Json.JsonConverter"))
{
continue;
}
var match = new Regex("(?<=Newtonsoft.Json.JsonProperty\\(\")\\w+(?=\")").Match(line);
if (match.Success == true)
{
builder.AppendLine($"[JsonPropertyName(\"{match.Value}\")]");
continue;
}
var cleaned = line
.Replace("partial class", "class")
.Replace("System.Collections.Generic.", null)
.Replace("System.Runtime.Serialization.", null)
.Replace("System.ComponentModel.DataAnnotations.", null);
builder.AppendLine(cleaned);
}
return builder.ToString();
}
/// <summary>
/// 美化
/// </summary>
/// <param name="code">源代码</param>
/// <returns></returns>
private static string? Pretty(string? code)
{
if (code == null)
{
return null;
}
var tab = 0;
var builder = new StringBuilder();
var compactCode = Compact(code);
foreach (var line in GetLines(compactCode))
{
var cTab = tab;
if (line == "{")
{
tab++;
}
else if (line == "}")
{
cTab = tab - 1;
tab--;
}
var isEndMethod = line.EndsWith(");");
var isEndEnum = Regex.IsMatch(line, @"=\s*\d+\s*,");
var isEndProperty = line.EndsWith("{ get; set; }");
var prefix = string.Empty.PadRight(cTab * 4, ' ');
var suffix = isEndMethod || isEndEnum || isEndProperty ?
Environment.NewLine :
null;
builder.AppendLine($"{prefix}{line}{suffix}");
}
return builder.ToString().Trim();
}
/// <summary>
/// 使代码紧凑
/// </summary>
/// <param name="code">源代码</param>
/// <returns></returns>
private static string? Compact(string? code)
{
if (code == null)
{
return null;
}
var builder = new StringBuilder();
foreach (var line in GetLines(code))
{
var spaceTrim = Regex.Replace(line.Trim(), @"(?<=\().*(?=\))", m => m.Value.Trim());
builder.AppendLine(spaceTrim);
}
var rn = Environment.NewLine;
var trimCode = builder.ToString().Trim();
return Regex.Replace(trimCode, $@"{rn}\s*{rn}", rn);
}
/// <summary>
/// 返回所有行
/// </summary>
/// <param name="code">源代码</param>
/// <returns></returns>
private static IEnumerable<string> GetLines(string? code)
{
if (code == null)
{
yield break;
}
using var reader = new StringReader(code);
while (true)
{
var line = reader.ReadLine();
if (line == null)
{
yield break;
}
else
{
yield return line;
}
}
}
}
}