48
48
import software .amazon .smithy .utils .SmithyUnstableApi ;
49
49
50
50
/**
51
- * Visitor to generate member values for aggregate types deserialized from documents.
51
+ * Visitor to generate member values for aggregate types deserialized from
52
+ * documents.
52
53
*
53
54
* The standard implementations are as follows; these implementations may be
54
55
* overridden unless otherwise specified.
55
56
*
56
57
* <ul>
57
- * <li>Blob: base64 decoded.</li>
58
- * <li>BigInteger: converted to JS BigInt.</li>
59
- * <li>BigDecimal: converted to Big via {@code big.js}.</li>
60
- * <li>Timestamp: converted to JS Date.</li>
61
- * <li>Service, Operation, Resource, Member: not deserializable from documents. <b>Not overridable.</b></li>
62
- * <li>Document, List, Map, Set, Structure, Union: delegated to a deserialization function.
63
- * <b>Not overridable.</b></li>
64
- * <li>All other types: unmodified.</li>
58
+ * <li>Blob: base64 decoded.</li>
59
+ * <li>BigInteger: converted to JS BigInt.</li>
60
+ * <li>BigDecimal: converted to Big via {@code big.js}.</li>
61
+ * <li>Timestamp: converted to JS Date.</li>
62
+ * <li>Service, Operation, Resource, Member: not deserializable from documents.
63
+ * <b>Not overridable.</b></li>
64
+ * <li>Document, List, Map, Set, Structure, Union: delegated to a
65
+ * deserialization function.
66
+ * <b>Not overridable.</b></li>
67
+ * <li>All other types: unmodified.</li>
65
68
* </ul>
66
69
*/
67
70
@ SmithyUnstableApi
@@ -73,32 +76,34 @@ public class DocumentMemberDeserVisitor implements ShapeVisitor<String> {
73
76
/**
74
77
* Constructor.
75
78
*
76
- * @param context The generation context.
77
- * @param dataSource The in-code location of the data to provide an output of
78
- * ({@code output.foo}, {@code entry}, etc.)
79
+ * @param context The generation context.
80
+ * @param dataSource The in-code location of the data to provide an
81
+ * output of
82
+ * ({@code output.foo}, {@code entry}, etc.)
79
83
* @param defaultTimestampFormat The default timestamp format used in absence
80
84
* of a TimestampFormat trait.
81
85
*/
82
86
public DocumentMemberDeserVisitor (
83
87
GenerationContext context ,
84
88
String dataSource ,
85
- Format defaultTimestampFormat
86
- ) {
89
+ Format defaultTimestampFormat ) {
87
90
this .context = context ;
88
91
this .dataSource = dataSource ;
89
92
this .defaultTimestampFormat = defaultTimestampFormat ;
90
93
}
91
94
92
95
/**
93
- * @return the member this visitor is being run against. Used to discover member-applied
94
- * traits, such as @timestampFormat. Can be, and defaults, to, null.
96
+ * @return the member this visitor is being run against. Used to discover
97
+ * member-applied
98
+ * traits, such as @timestampFormat. Can be, and defaults, to, null.
95
99
*/
96
100
protected MemberShape getMemberShape () {
97
101
return null ;
98
102
}
99
103
100
104
/**
101
- * @return true if string-formatted epoch seconds in payloads are disallowed. Defaults to false.
105
+ * @return true if string-formatted epoch seconds in payloads are disallowed.
106
+ * Defaults to false.
102
107
*/
103
108
protected boolean requiresNumericEpochSecondsInPayload () {
104
109
return false ;
@@ -283,7 +288,7 @@ private String getDelegateDeserializer(Shape shape) {
283
288
private String getDelegateDeserializer (Shape shape , String customDataSource ) {
284
289
// Use the shape for the function name.
285
290
Symbol symbol = context .getSymbolProvider ().toSymbol (shape );
286
- return ProtocolGenerator .getDeserFunctionName (symbol , context . getProtocolName () )
291
+ return ProtocolGenerator .getDeserFunctionShortName (symbol )
287
292
+ "(" + customDataSource + ", context)" ;
288
293
}
289
294
}
0 commit comments