-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpCodeBuilder.Append.cs
More file actions
294 lines (263 loc) · 11.3 KB
/
CSharpCodeBuilder.Append.cs
File metadata and controls
294 lines (263 loc) · 11.3 KB
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
namespace NetEvolve.CodeBuilder;
using System;
public partial class CSharpCodeBuilder
{
/// <summary>
/// Appends a boolean value to the current builder.
/// </summary>
/// <param name="value">The boolean value to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>Appends either <see langword="true"/> or <see langword="false"/> based on the value.</remarks>
public CSharpCodeBuilder Append(bool value)
{
EnsureIndented();
_ = _builder.Append(value ? "true" : "false");
return this;
}
/// <summary>
/// Appends a character repeated a specified number of times to the current builder.
/// </summary>
/// <param name="value">The character to append.</param>
/// <param name="repeatCount">The number of times to repeat the character.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <exception cref="ArgumentOutOfRangeException">Thrown when <paramref name="repeatCount"/> is less than zero.</exception>
public CSharpCodeBuilder Append(char value, int repeatCount)
{
EnsureIndented();
_ = _builder.Append(value, repeatCount);
return this;
}
/// <summary>
/// Appends a character to the current builder.
/// </summary>
/// <param name="value">The character to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>
/// The following characters receive special treatment:
/// <list type="bullet">
/// <item><description><c>'\0'</c> — ignored; the method returns without appending.</description></item>
/// <item><description><c>'\n'</c> or <c>'\r'</c> — treated as a line terminator; equivalent to calling <see cref="AppendLine()"/>.</description></item>
/// <item><description><c>'{'</c> or <c>'['</c> — appended with the current indentation, then the indentation level is incremented and a line terminator is added.</description></item>
/// <item><description><c>'}'</c> or <c>']'</c> — the indentation level is decremented first, then the character is appended with the new indentation level, followed by a line terminator.</description></item>
/// </list>
/// All other characters are appended after applying the current indentation at the start of a new line.
/// </remarks>
public CSharpCodeBuilder Append(char value)
{
if (value is '\0')
{
return this; // No need to append null character
}
if (value is '\n' or '\r')
{
return AppendLine(); // Handle new line characters
}
if (value is '}' or ']')
{
DecrementIndent();
}
EnsureIndented();
_ = _builder.Append(value);
if (value is '{' or '[')
{
IncrementIndent();
return AppendLine();
}
else if (value is '}' or ']')
{
return AppendLine();
}
return this;
}
/// <summary>
/// Appends a subset of an array of characters to the current builder.
/// </summary>
/// <param name="value">The character array to append.</param>
/// <param name="startIndex">The starting position in the character array.</param>
/// <param name="charCount">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the array is null or empty, the method returns without appending anything.</remarks>
public CSharpCodeBuilder Append(char[]? value, int startIndex, int charCount)
{
if (value is null || value.Length == 0)
{
return this;
}
EnsureIndented();
_ = _builder.Append(value, startIndex, charCount);
return this;
}
/// <summary>
/// Appends an array of characters to the current builder.
/// </summary>
/// <param name="value">The character array to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the array is null or empty, the method returns without appending anything.</remarks>
public CSharpCodeBuilder Append(char[]? value)
{
if (value is null || value.Length == 0)
{
return this;
}
EnsureIndented();
_ = _builder.Append(value);
return this;
}
/// <summary>
/// Appends characters from a pointer to the current builder.
/// </summary>
/// <param name="value">A pointer to a character array.</param>
/// <param name="length">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the pointer is null or length is negative, the method returns without appending anything.</remarks>
public unsafe CSharpCodeBuilder Append(char* value, int length)
{
if (value == null || length < 0)
{
return this;
}
EnsureIndented();
_ = _builder.Append(value, length);
return this;
}
/// <summary>
/// Appends a read-only memory of characters to the current builder.
/// </summary>
/// <param name="value">The read-only memory containing the characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the memory is empty, the method returns without appending anything.</remarks>
public CSharpCodeBuilder Append(ReadOnlyMemory<char> value)
{
if (value.IsEmpty)
{
return this;
}
EnsureIndented();
_ = _builder.Append(value);
return this;
}
/// <summary>
/// Appends a subset of a read-only memory of characters to the current builder.
/// </summary>
/// <param name="value">The read-only memory containing the characters to append.</param>
/// <param name="startIndex">The starting position in the memory.</param>
/// <param name="count">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the memory is empty, the method returns without appending anything.</remarks>
public CSharpCodeBuilder Append(ReadOnlyMemory<char> value, int startIndex, int count)
{
if (value.IsEmpty)
{
return this;
}
EnsureIndented();
_ = _builder.Append(value.Slice(startIndex, count));
return this;
}
/// <summary>
/// Appends a read-only span of characters to the current builder.
/// </summary>
/// <param name="value">The read-only span containing the characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the span is empty, the method returns without appending anything.</remarks>
public CSharpCodeBuilder Append(ReadOnlySpan<char> value)
{
if (value.IsEmpty)
{
return this;
}
EnsureIndented();
#if NETSTANDARD2_0
_ = _builder.Append(value.ToString());
#else
_ = _builder.Append(value);
#endif
return this;
}
/// <summary>
/// Appends a subset of a read-only span of characters to the current builder.
/// </summary>
/// <param name="value">The read-only span containing the characters to append.</param>
/// <param name="startIndex">The starting position in the span.</param>
/// <param name="count">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the span is empty, the method returns without appending anything.</remarks>
public CSharpCodeBuilder Append(ReadOnlySpan<char> value, int startIndex, int count)
{
if (value.IsEmpty)
{
return this;
}
EnsureIndented();
#if NETSTANDARD2_0
_ = _builder.Append(value.Slice(startIndex, count).ToString());
#else
_ = _builder.Append(value.Slice(startIndex, count));
#endif
return this;
}
/// <summary>
/// Appends a subset of a string to the current builder.
/// </summary>
/// <param name="value">The string to append.</param>
/// <param name="startIndex">The starting position in the string.</param>
/// <param name="count">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the string is null or empty, the method returns without appending anything.</remarks>
public CSharpCodeBuilder Append(string? value, int startIndex, int count)
{
if (string.IsNullOrEmpty(value))
{
return this;
}
EnsureIndented();
_ = _builder.Append(value, startIndex, count);
return this;
}
/// <summary>
/// Appends a string to the current builder.
/// </summary>
/// <param name="value">The string to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>
/// <c>null</c>, an empty string, or <c>"\0"</c> are ignored; the method returns without appending.
/// The following single-character strings receive special treatment:
/// <list type="bullet">
/// <item><description><c>"\n"</c>, <c>"\r"</c>, or <c>"\r\n"</c> — treated as a line terminator; equivalent to calling <see cref="AppendLine()"/>.</description></item>
/// <item><description><c>"{"</c> or <c>"["</c> — appended with the current indentation, then the indentation level is incremented and a line terminator is added.</description></item>
/// <item><description><c>"}"</c> or <c>"]"</c> — the indentation level is decremented first; if the current position is mid-line, a line terminator is inserted before the character. The character is then appended with the new indentation level, followed by a line terminator. This behavior is consistent with <see cref="Append(char)"/>.</description></item>
/// </list>
/// All other strings are appended after applying the current indentation at the start of a new line.
/// </remarks>
public CSharpCodeBuilder Append(string? value)
{
if (string.IsNullOrEmpty(value) || value is "\0")
{
return this;
}
if (value is "\n" or "\r" or "\r\n")
{
return AppendLine(); // Handle new line characters
}
if (value is "}" or "]")
{
DecrementIndent();
if (!_isNewline)
{
_ = AppendLine(); // Ensure we start a new line before the closing brace
}
}
EnsureIndented();
_ = _builder.Append(value);
if (value is "{" or "[")
{
IncrementIndent();
_ = AppendLine();
}
else if (value is "}" or "]")
{
_ = AppendLine(); // Newline after closing brace, consistent with char overload
}
return this;
}
}