-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathAbstractShapeBuilder.java
More file actions
350 lines (317 loc) · 9.71 KB
/
AbstractShapeBuilder.java
File metadata and controls
350 lines (317 loc) · 9.71 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package software.amazon.smithy.model.shapes;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import software.amazon.smithy.model.FromSourceLocation;
import software.amazon.smithy.model.SourceLocation;
import software.amazon.smithy.model.traits.MixinTrait;
import software.amazon.smithy.model.traits.Trait;
import software.amazon.smithy.utils.BuilderRef;
import software.amazon.smithy.utils.SmithyBuilder;
/**
* Abstract builder used to create {@link Shape}s.
*
* @param <B> Concrete builder type.
* @param <S> Shape being created.
*/
public abstract class AbstractShapeBuilder<B extends AbstractShapeBuilder<B, S>, S extends Shape>
implements SmithyBuilder<S>, FromSourceLocation {
private ShapeId id;
private final BuilderRef<Map<ShapeId, Trait>> traits = BuilderRef.forUnorderedMap();
private SourceLocation source = SourceLocation.none();
private Map<ShapeId, Shape> mixins;
AbstractShapeBuilder() {}
@Override
public SourceLocation getSourceLocation() {
return source;
}
/**
* Gets the type of shape being built.
*
* @return Returns the shape type.
*/
public abstract ShapeType getShapeType();
/**
* Gets the shape ID of the builder.
*
* @return Returns null if no shape ID is set.
*/
public ShapeId getId() {
return id;
}
/**
* Sets the shape ID of the shape.
*
* @param shapeId Shape ID to set.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B id(ShapeId shapeId) {
id = shapeId;
return (B) this;
}
/**
* Sets the shape ID of the shape.
*
* @param shapeId Absolute shape ID string to set.
* @return Returns the builder.
* @throws ShapeIdSyntaxException if the shape ID is invalid.
*/
public B id(String shapeId) {
return id(ShapeId.from(shapeId));
}
/**
* Sets the source location of the shape.
*
* @param sourceLocation Source location to set.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B source(SourceLocation sourceLocation) {
if (sourceLocation == null) {
throw new IllegalArgumentException("source must not be null");
}
source = sourceLocation;
return (B) this;
}
/**
* Sets the source location of the shape.
*
* @param filename Name of the file in which the shape was defined.
* @param line Line number in the file where the shape was defined.
* @param column Column number of the line where the shape was defined.
* @return Returns the builder.
*/
public B source(String filename, int line, int column) {
return source(new SourceLocation(filename, line, column));
}
/**
* Replace all traits in the builder.
*
* @param traitsToSet Sequence of traits to set on the builder.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B traits(Collection<Trait> traitsToSet) {
clearTraits();
for (Trait trait : traitsToSet) {
addTrait(trait);
}
return (B) this;
}
/**
* Get an immutable view of the traits applied to the builder.
*
* @return Returns the applied traits.
*/
public Map<ShapeId, Trait> getAllTraits() {
return traits.peek();
}
/**
* Adds traits from an iterator to the shape builder, replacing any
* conflicting traits.
*
* @param traitsToAdd Sequence of traits to add to the builder.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B addTraits(Collection<? extends Trait> traitsToAdd) {
for (Trait trait : traitsToAdd) {
addTrait(trait);
}
return (B) this;
}
/**
* Adds a trait to the shape builder, replacing any conflicting traits.
*
* @param trait Trait instance to add.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B addTrait(Trait trait) {
Objects.requireNonNull(trait, "trait must not be null");
traits.get().put(trait.toShapeId(), trait);
return (B) this;
}
/**
* Removes a trait from the shape builder.
*
* <p>A relative trait name will attempt to remove a prelude trait
* with the given name.
*
* @param traitId Absolute or relative ID of the trait to remove.
* @return Returns the builder.
*/
public B removeTrait(String traitId) {
return removeTrait(ShapeId.from(Trait.makeAbsoluteName(traitId)));
}
/**
* Removes a trait from the shape builder.
*
* @param traitId ID of the trait to remove.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B removeTrait(ShapeId traitId) {
if (traits.hasValue()) {
traits.get().remove(traitId);
}
return (B) this;
}
/**
* Removes all traits.
*
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B clearTraits() {
traits.clear();
return (B) this;
}
/**
* Gets the optional member with the given name.
*
* @return Returns the optional member with the given name.
*/
public Optional<MemberShape> getMember(String memberName) {
return Optional.empty();
}
/**
* Adds a member to the shape IFF the shape supports members.
*
* @param member Member to add to the shape.
* @return Returns the builder.
* @throws UnsupportedOperationException if the shape does not support members.
*/
public B addMember(MemberShape member) {
throw new UnsupportedOperationException(String.format(
"Member `%s` cannot be added to %s",
member.getId(),
getClass().getName()));
}
/**
* Removes all members from the builder.
*
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B clearMembers() {
return (B) this;
}
/**
* Adds a mixin to the shape.
*
* @param shape Mixin to add.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B addMixin(Shape shape) {
if (mixins == null) {
mixins = new LinkedHashMap<>();
}
mixins.put(shape.getId(), shape);
return (B) this;
}
/**
* Replaces the mixins of the shape.
*
* @param mixins Mixins to add.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B mixins(Collection<? extends Shape> mixins) {
for (Shape shape : mixins) {
addMixin(shape);
}
return (B) this;
}
/**
* Removes a mixin from the shape by shape or ID.
*
* @param shape Shape or shape ID to remove.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B removeMixin(ToShapeId shape) {
if (mixins != null) {
mixins.remove(shape.toShapeId());
}
return (B) this;
}
/**
* Removes all mixins.
*
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B clearMixins() {
if (mixins != null) {
// Avoid concurrent modification.
List<ShapeId> mixinIds = new ArrayList<>(mixins.keySet());
for (ShapeId id : mixinIds) {
removeMixin(id);
}
}
return (B) this;
}
/**
* Removes mixins from a shape and flattens them into the shape.
*
* <p>Flattening a mixin into a shape copies the traits and members of a
* mixin onto the shape, effectively resulting in the same shape but with
* no trace of the mixin relationship.
*
* @return Returns the updated builder.
*/
@SuppressWarnings("unchecked")
public B flattenMixins() {
if (mixins == null || mixins.isEmpty()) {
return (B) this;
}
for (Shape mixin : mixins.values()) {
// Only inherit non-local traits that aren't already on the shape.
Map<ShapeId, Trait> nonLocalTraits = MixinTrait.getNonLocalTraitsFromMap(mixin.getAllTraits());
for (Map.Entry<ShapeId, Trait> entry : nonLocalTraits.entrySet()) {
if (!traits.hasValue() || !traits.get().containsKey(entry.getKey())) {
addTrait(entry.getValue());
}
}
}
// Don't call clearMixins here because its side effects are unwanted.
mixins.clear();
return (B) this;
}
/**
* Adds a mixin reference to the shape without triggering member recalculation.
*
* <p>This is used during mixin flattening to re-add interface mixin references
* after members/traits have already been flattened. Unlike {@link #addMixin(Shape)},
* this method does not trigger {@code NamedMemberUtils.cleanMixins()} in subclasses.
*
* @param shape Mixin shape to add as a reference.
* @return Returns the builder.
*/
@SuppressWarnings("unchecked")
public B addMixinRef(Shape shape) {
if (mixins == null) {
mixins = new LinkedHashMap<>();
}
mixins.put(shape.getId(), shape);
return (B) this;
}
Map<ShapeId, Shape> getMixins() {
return mixins == null ? Collections.emptyMap() : mixins;
}
Map<ShapeId, Trait> getTraits() {
return traits.get();
}
}