forked from AArnott/ImmutableObjectGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImmutableObjectGraph.tt
290 lines (246 loc) · 7.26 KB
/
ImmutableObjectGraph.tt
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
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ Import Namespace="System.Reflection" #>
<#@ Import Namespace="System.Collections.Generic" #>
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// ImmutableTree Version: 0.0.0.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
namespace <#= this.Namespace #> {
using System.Diagnostics;
/// <summary>
/// A wrapper around optional parameters to capture whether they were specified or omitted.
/// An implicit operator is defined so no one has to explicitly create this struct.
/// </summary>
public struct Optional<T> {
private readonly T value;
private readonly bool isDefined;
public Optional(T value) {
this.isDefined = true;
this.value = value;
}
public bool IsDefined {
get { return this.isDefined; }
}
public T Value {
get { return this.value; }
}
public static implicit operator Optional<T>(T value) {
return new Optional<T>(value);
}
}
public static class Optional {
public static Optional<T> For<T>(T value) {
return value;
}
}
<#
this.PushIndent("\t");
var templateTypes = DiscoverTemplateTypes(this.TemplateType);
foreach(var templateType in templateTypes) {
#>
public partial class <#= templateType.Name #> {
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private static readonly <#= templateType.Name #> DefaultInstance = new <#= templateType.Name #>();
<#
var fields = templateType.GetFields(BindingFlags.NonPublic | BindingFlags.Instance);
foreach(var field in fields) {
#>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private readonly <#= GetTypeName(field.FieldType) #> <#= CamelCase(field.Name) #>;
<#
}
#>
/// <summary>Initializes a new instance of the <#= templateType.Name #> class.</summary>
private <#= templateType.Name #>()
{
}
/// <summary>Initializes a new instance of the <#= templateType.Name #> class.</summary>
private <#= templateType.Name #>(<#
bool firstInSequence = true;
foreach(var field in fields) {
if (!firstInSequence) { Write(", "); }
Write(GetTypeName(field.FieldType));
Write(" ");
Write(CamelCase(field.Name));
firstInSequence = false;
}
#>)
{
<#
foreach(var field in fields) {
#>
this.<#= CamelCase(field.Name) #> = <#= CamelCase(field.Name) #>;
<#
}
#>
this.Validate();
}
public static <#= templateType.Name #> Default {
get { return DefaultInstance; }
}
<#
foreach(var field in fields) {
#>
public <#= GetTypeName(field.FieldType) #> <#= PascalCase(field.Name) #> {
get { return this.<#= CamelCase(field.Name) #>; }
}
public <#= templateType.Name #> With<#= PascalCase(field.Name) #>(<#= GetTypeName(field.FieldType) #> value) {
if (value == this.<#= PascalCase(field.Name) #>) {
return this;
}
return new <#= templateType.Name #>(<#
firstInSequence = true;
foreach(var field2 in fields) {
if (!firstInSequence) { Write(", "); }
if (field == field2) {
Write("value");
} else {
Write("this." + PascalCase(field2.Name));
}
firstInSequence = false;
}
#>);
}
<#
}
#>
/// <summary>Returns a new instance of this object with any number of properties changed.</summary>
public <#= templateType.Name #> With(<#
firstInSequence = true;
this.PushIndent("\t\t");
// Value parameters
foreach(var field in fields) {
if (!firstInSequence) { Write(", "); }
WriteLine("");
Write(GetOptionalTypeName(field.FieldType));
Write(" ");
Write(CamelCase(field.Name));
Write(" = default(" + GetOptionalTypeName(field.FieldType) + ")");
firstInSequence = false;
}
this.PopIndent();
#>) {
return new <#= templateType.Name #>(<#
firstInSequence = true;
foreach(var field in fields) {
if (!firstInSequence) { Write(","); }
WriteLine("");
#> <#= CamelCase(field.Name) #>.IsDefined ? <#= CamelCase(field.Name) #>.Value : this.<#= PascalCase(field.Name) #><#
firstInSequence = false;
}
#>);
}
public Builder ToBuilder() {
return new Builder(this);
}
/// <summary>Normalizes and/or validates all properties on this object.</summary>
/// <exception type="ArgumentException">Thrown if any properties have disallowed values.</exception>
partial void Validate();
public partial class Builder {
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private <#= templateType.Name #> immutable;
<# foreach(var field in fields) { #>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private <#= GetTypeName(field.FieldType) #> <#= CamelCase(field.Name) #>;
<# } #>
internal Builder(<#= templateType.Name #> immutable) {
this.immutable = immutable;
<#
foreach(var field in fields) {
#>
this.<#= CamelCase(field.Name) #> = immutable.<#= PascalCase(field.Name) #>;
<# } #>
}
<# foreach(var field in fields) { #>
public <#= GetTypeName(field.FieldType) #> <#= PascalCase(field.Name) #> {
get {
return this.<#= CamelCase(field.Name) #>;
}
set {
if (this.<#= CamelCase(field.Name) #> != value) {
this.<#= CamelCase(field.Name) #> = value;
this.immutable = null;
}
}
}
<# } #>
public <#= templateType.Name #> ToImmutable() {
if (this.immutable == null) {
this.immutable = <#= templateType.Name #>.Default.With(<#
firstInSequence = true;
foreach(var field in fields) {
if (!firstInSequence) { Write(","); }
WriteLine(""); #>
Optional.For(this.<#= CamelCase(field.Name) #>)<#
firstInSequence = false;
} #>
);
}
return this.immutable;
}
}
}
<# } // looping over all template types
this.PopIndent();
#>
}
<#+
public Type TemplateType { get; set; }
public string Namespace { get; set; }
public bool UseClassCollectionType { get; set; }
protected static string PascalCase(string name) {
return name.Substring(0,1).ToUpperInvariant() + name.Substring(1);
}
protected static string CamelCase(string name) {
return name.Substring(0,1).ToLowerInvariant() + name.Substring(1);
}
protected static HashSet<Type> DiscoverTemplateTypes(Type rootType) {
var types = new HashSet<Type>();
var pendingTypes = new Queue<Type>();
pendingTypes.Enqueue(rootType);
while(pendingTypes.Count > 0)
{
var type = pendingTypes.Dequeue();
if (types.Add(type)) {
foreach(var field in type.GetFields(BindingFlags.Instance | BindingFlags.NonPublic)) {
var memberType = field.FieldType;
if (memberType.IsArray) {
memberType = memberType.GetElementType();
}
if (memberType.DeclaringType == type.DeclaringType) {
pendingTypes.Enqueue(memberType);
}
}
}
}
return types;
}
protected string GetTypeName(Type type) {
bool collection = false;
if (type.IsArray) {
type = type.GetElementType();
collection = true;
}
string typeName =
type.DeclaringType == this.TemplateType.DeclaringType
? type.Name
: type.FullName;
if (collection) {
if (UseClassCollectionType)
typeName = "System.Collections.Immutable.ImmutableList<" + typeName + ">";
else
typeName = "System.Collections.Immutable.IImmutableList<" + typeName + ">";
}
return typeName;
}
protected string GetOptionalTypeName(Type type)
{
return "Optional<" + GetTypeName(type) + ">";
}
#>