Skip to content

Commit cfb716a

Browse files
committed
shorten internal serde fn names
1 parent 9a52172 commit cfb716a

15 files changed

+1663
-1273
lines changed

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CommandGenerator.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,8 @@ private void writeSerdeDispatcher(boolean isInput) {
448448
writer.write("throw new Error(\"No supported protocol was found\");");
449449
} else {
450450
String serdeFunctionName = isInput
451-
? ProtocolGenerator.getSerFunctionName(symbol, protocolGenerator.getName())
452-
: ProtocolGenerator.getDeserFunctionName(symbol, protocolGenerator.getName());
451+
? ProtocolGenerator.getSerFunctionShortName(symbol)
452+
: ProtocolGenerator.getDeserFunctionShortName(symbol);
453453
writer.addImport(serdeFunctionName, serdeFunctionName,
454454
Paths.get(".", CodegenUtils.SOURCE_FOLDER, ProtocolGenerator.PROTOCOLS_FOLDER,
455455
ProtocolGenerator.getSanitizedName(protocolGenerator.getName())).toString());

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/ServerCommandGenerator.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ private void writeOperationSerializer() {
163163
writer.addImport("OperationSerializer", "__OperationSerializer", "@aws-smithy/server-common");
164164
writer.openBlock("export class $L implements __OperationSerializer<$T<any>, $S, $T> {", "}",
165165
serializerName, serverSymbol, operationSymbol.getName(), errorsType, () -> {
166-
String serializerFunction = ProtocolGenerator.getGenericSerFunctionName(operationSymbol) + "Response";
167-
String deserializerFunction = ProtocolGenerator.getGenericDeserFunctionName(operationSymbol) + "Request";
166+
String serializerFunction = ProtocolGenerator.getGenericSerFunctionName(operationSymbol) + "Res";
167+
String deserializerFunction = ProtocolGenerator.getGenericDeserFunctionName(operationSymbol) + "Req";
168168

169169
writer.addImport(serializerFunction, null,
170170
Paths.get(".", CodegenUtils.SOURCE_FOLDER, ProtocolGenerator.PROTOCOLS_FOLDER,

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/DocumentMemberDeserVisitor.java

+23-18
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,23 @@
4848
import software.amazon.smithy.utils.SmithyUnstableApi;
4949

5050
/**
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.
5253
*
5354
* The standard implementations are as follows; these implementations may be
5455
* overridden unless otherwise specified.
5556
*
5657
* <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>
6568
* </ul>
6669
*/
6770
@SmithyUnstableApi
@@ -73,32 +76,34 @@ public class DocumentMemberDeserVisitor implements ShapeVisitor<String> {
7376
/**
7477
* Constructor.
7578
*
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.)
7983
* @param defaultTimestampFormat The default timestamp format used in absence
8084
* of a TimestampFormat trait.
8185
*/
8286
public DocumentMemberDeserVisitor(
8387
GenerationContext context,
8488
String dataSource,
85-
Format defaultTimestampFormat
86-
) {
89+
Format defaultTimestampFormat) {
8790
this.context = context;
8891
this.dataSource = dataSource;
8992
this.defaultTimestampFormat = defaultTimestampFormat;
9093
}
9194

9295
/**
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.
9599
*/
96100
protected MemberShape getMemberShape() {
97101
return null;
98102
}
99103

100104
/**
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.
102107
*/
103108
protected boolean requiresNumericEpochSecondsInPayload() {
104109
return false;
@@ -283,7 +288,7 @@ private String getDelegateDeserializer(Shape shape) {
283288
private String getDelegateDeserializer(Shape shape, String customDataSource) {
284289
// Use the shape for the function name.
285290
Symbol symbol = context.getSymbolProvider().toSymbol(shape);
286-
return ProtocolGenerator.getDeserFunctionName(symbol, context.getProtocolName())
291+
return ProtocolGenerator.getDeserFunctionShortName(symbol)
287292
+ "(" + customDataSource + ", context)";
288293
}
289294
}

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/integration/DocumentMemberSerVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public final String unionShape(UnionShape shape) {
252252
private String getDelegateSerializer(Shape shape) {
253253
// Use the shape for the function name.
254254
Symbol symbol = context.getSymbolProvider().toSymbol(shape);
255-
return ProtocolGenerator.getSerFunctionName(symbol, context.getProtocolName())
255+
return ProtocolGenerator.getSerFunctionShortName(symbol)
256256
+ "(" + dataSource + ", context)";
257257
}
258258
}

0 commit comments

Comments
 (0)