-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpCodeBuilder.Append.cs
More file actions
222 lines (195 loc) · 7.52 KB
/
CSharpCodeBuilder.Append.cs
File metadata and controls
222 lines (195 loc) · 7.52 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
namespace NetEvolve.CodeBuilder;
using System;
public partial record 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 "True" or "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>
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 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>If the string is null or empty, the method returns without appending anything.</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();
_ = AppendLine();
}
EnsureIndented();
_ = _builder.Append(value);
if (value is "{" or "[")
{
IncrementIndent();
_ = AppendLine();
}
return this;
}
}