Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update non-streaming error unmarshalling to use new mapping function #5991

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
6 changes: 6 additions & 0 deletions .changes/next-release/bugfix-AWSSDKforJavav2-e869e94.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "bugfix",
"category": "AWS SDK for Java v2",
"contributor": "",
"description": "Update non-streaming error unmarshalling to use the same mapping function that was previously implemented for streaming operations, which allows to deprecate createErrorResponseHandler(JsonOperationMetadata) method."
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import software.amazon.awssdk.codegen.model.intermediate.OperationModel;
import software.amazon.awssdk.codegen.model.intermediate.Protocol;
import software.amazon.awssdk.codegen.model.intermediate.ShapeModel;
import software.amazon.awssdk.codegen.model.intermediate.ShapeType;
import software.amazon.awssdk.codegen.poet.PoetExtension;
import software.amazon.awssdk.codegen.poet.auth.scheme.AuthSchemeSpecUtils;
import software.amazon.awssdk.codegen.poet.client.traits.HttpChecksumRequiredTrait;
Expand Down Expand Up @@ -116,7 +117,6 @@ public MethodSpec initProtocolFactory(IntermediateModel model) {
methodSpec.addCode("$L", hasAwsQueryCompatible());
}

registerModeledExceptions(model, poetExtensions).forEach(methodSpec::addCode);
methodSpec.addCode(";");

return methodSpec.build();
Expand Down Expand Up @@ -170,11 +170,37 @@ public CodeBlock responseHandler(IntermediateModel model, OperationModel opModel
public Optional<CodeBlock> errorResponseHandler(OperationModel opModel) {
String protocolFactory = protocolFactoryLiteral(model, opModel);

return Optional.of(
CodeBlock.builder()
.add("\n\n$T<$T> errorResponseHandler = createErrorResponseHandler($L, operationMetadata);",
HttpResponseHandler.class, AwsServiceException.class, protocolFactory)
.build());
CodeBlock.Builder builder = CodeBlock.builder();
ParameterizedTypeName metadataMapperType = ParameterizedTypeName.get(
ClassName.get(Function.class),
ClassName.get(String.class),
ParameterizedTypeName.get(Optional.class, ExceptionMetadata.class));

builder.add("\n$T exceptionMetadataMapper = errorCode -> {\n", metadataMapperType);
builder.add("switch (errorCode) {\n");
model.getShapes().values().stream()
.filter(shape -> shape.getShapeType() == ShapeType.Exception)
.forEach(exceptionShape -> {
String exceptionName = exceptionShape.getShapeName();
String errorCode = exceptionShape.getErrorCode();

builder.add("case $S:\n", errorCode);
builder.add("return $T.of($T.builder()\n", Optional.class, ExceptionMetadata.class)
.add(".errorCode($S)\n", errorCode);
builder.add(populateHttpStatusCode(exceptionShape, model));
builder.add(".exceptionBuilderSupplier($T::builder)\n",
poetExtensions.getModelClassFromShape(exceptionShape))
.add(".build());\n");
});

builder.add("default: return $T.empty();\n", Optional.class);
builder.add("}\n");
builder.add("};\n");

builder.add("$T<$T> errorResponseHandler = createErrorResponseHandler($L, operationMetadata, exceptionMetadataMapper);",
HttpResponseHandler.class, AwsServiceException.class, protocolFactory);

return Optional.of(builder.build());
}

@Override
Expand Down Expand Up @@ -411,24 +437,8 @@ public Optional<MethodSpec> createErrorResponseHandler() {
ClassName httpResponseHandler = ClassName.get(HttpResponseHandler.class);
ClassName sdkBaseException = ClassName.get(AwsServiceException.class);
TypeName responseHandlerOfException = ParameterizedTypeName.get(httpResponseHandler, sdkBaseException);

return Optional.of(MethodSpec.methodBuilder("createErrorResponseHandler")
.addParameter(BaseAwsJsonProtocolFactory.class, "protocolFactory")
.addParameter(JsonOperationMetadata.class, "operationMetadata")
.returns(responseHandlerOfException)
.addModifiers(Modifier.PRIVATE)
.addStatement("return protocolFactory.createErrorResponseHandler(operationMetadata)")
.build());
}

@Override
public Optional<MethodSpec> createEventstreamErrorResponseHandler() {
ClassName httpResponseHandler = ClassName.get(HttpResponseHandler.class);
ClassName sdkBaseException = ClassName.get(AwsServiceException.class);
TypeName responseHandlerOfException = ParameterizedTypeName.get(httpResponseHandler, sdkBaseException);
ParameterizedTypeName mapperType = ParameterizedTypeName.get(ClassName.get(Function.class),
ClassName.get(String.class), ParameterizedTypeName.get(Optional.class, ExceptionMetadata.class));

return Optional.of(MethodSpec.methodBuilder("createErrorResponseHandler")
.addParameter(BaseAwsJsonProtocolFactory.class, "protocolFactory")
.addParameter(JsonOperationMetadata.class, "operationMetadata")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,4 +195,4 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper
public Optional<MethodSpec> createErrorResponseHandler() {
return Optional.empty();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public CodeBlock responseHandler(IntermediateModel model,
return CodeBlock.builder()
.addStatement("\n\n$T responseHandler = protocolFactory.createCombinedResponseHandler($T::builder, "
+ "new $T().withHasStreamingSuccessResponse($L))",
handlerType, responseType, XmlOperationMetadata.class, opModel.hasStreamingOutput())
handlerType, responseType, XmlOperationMetadata.class, opModel.hasStreamingOutput())
.build();
}

Expand Down Expand Up @@ -386,4 +386,4 @@ private CodeBlock whenCompleteBlock(OperationModel operationModel, String respon

return whenComplete.build();
}
}
}
Loading
Loading