-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sdk-codegen): update errorType in waitable traits to use correct …
…shape Id instead of awsquery code
- Loading branch information
Ran Vaknin
committed
Sep 21, 2024
1 parent
70db983
commit aa72922
Showing
2 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
89 changes: 89 additions & 0 deletions
89
...n/src/main/java/software/amazon/smithy/aws/typescript/codegen/ProcessAwsQueryWaiters.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
package software.amazon.smithy.aws.typescript.codegen; | ||
|
||
import software.amazon.smithy.aws.traits.protocols.AwsQueryErrorTrait; | ||
import software.amazon.smithy.model.Model; | ||
import software.amazon.smithy.model.node.ObjectNode; | ||
import software.amazon.smithy.model.shapes.*; | ||
import software.amazon.smithy.model.traits.ErrorTrait; | ||
import software.amazon.smithy.model.transform.ModelTransformer; | ||
import software.amazon.smithy.typescript.codegen.TypeScriptSettings; | ||
import software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration; | ||
import software.amazon.smithy.utils.SmithyInternalApi; | ||
import software.amazon.smithy.model.knowledge.TopDownIndex; | ||
import software.amazon.smithy.waiters.Acceptor; | ||
import software.amazon.smithy.waiters.Matcher; | ||
import software.amazon.smithy.waiters.WaitableTrait; | ||
import software.amazon.smithy.waiters.Waiter; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
|
||
@SmithyInternalApi | ||
public final class ProcessAwsQueryWaiters implements TypeScriptIntegration { | ||
|
||
@Override | ||
public Model preprocessModel(Model model, TypeScriptSettings settings) { | ||
Map<String, String> errorCodeToShapeId = new HashMap<>(); | ||
|
||
ServiceShape serviceShape = settings.getService(model); | ||
TopDownIndex topDownIndex = TopDownIndex.of(model); | ||
for (OperationShape operationShape : topDownIndex.getContainedOperations(serviceShape)) { | ||
for (ShapeId errorShapeId : operationShape.getErrors()) { | ||
Shape errorShape = model.expectShape(errorShapeId); | ||
if (errorShape.hasTrait(ErrorTrait.class) && errorShape.hasTrait(AwsQueryErrorTrait.class)) { | ||
AwsQueryErrorTrait awsQueryTrait = errorShape.expectTrait(AwsQueryErrorTrait.class); | ||
errorCodeToShapeId.put(awsQueryTrait.getCode(), errorShape.getId().getName()); | ||
} | ||
} | ||
} | ||
|
||
List<Shape> modifiedShapes = new ArrayList<>(); | ||
|
||
for (OperationShape operationShape : topDownIndex.getContainedOperations(serviceShape)) { | ||
OperationShape.Builder operationBuilder = operationShape.toBuilder(); | ||
if (operationShape.hasTrait(WaitableTrait.class)) { | ||
operationBuilder.removeTrait(WaitableTrait.ID); | ||
WaitableTrait waiterTrait = operationShape.expectTrait(WaitableTrait.class); | ||
WaitableTrait.Builder waitableTraitBuilder = (WaitableTrait.Builder) waiterTrait.toBuilder(); | ||
for (Map.Entry<String, Waiter> entry : waiterTrait.getWaiters().entrySet()){ | ||
String name = entry.getKey(); | ||
Waiter waiter = entry.getValue(); | ||
Waiter.Builder waiterBuilder = (Waiter.Builder) waiter.toBuilder(); | ||
waiterBuilder.clearAcceptors(); | ||
for (Acceptor acceptor : waiter.getAcceptors()){ | ||
ObjectNode acceptorNode = acceptor.toNode().expectObjectNode(); | ||
Matcher matcher = acceptor.getMatcher(); | ||
if (matcher instanceof Matcher.ErrorTypeMember){ | ||
ObjectNode matcherNode = matcher.toNode().expectObjectNode(); | ||
|
||
String errorCode = matcherNode.expectStringMember("errorType").getValue(); | ||
if (errorCodeToShapeId.containsKey(errorCode)){ | ||
matcherNode = matcherNode.toBuilder() | ||
.withMember("errorType", errorCodeToShapeId.get(errorCode)) | ||
.build(); | ||
|
||
acceptorNode = acceptorNode.toBuilder() | ||
.withMember("matcher", matcherNode) | ||
.build(); | ||
} | ||
} | ||
waiterBuilder.addAcceptor(Acceptor.fromNode(acceptorNode)); | ||
} | ||
waitableTraitBuilder.put(name,waiterBuilder.build()); | ||
} | ||
operationBuilder.addTrait(waitableTraitBuilder.build()); | ||
} | ||
modifiedShapes.add(operationBuilder.build()); | ||
} | ||
|
||
if (!modifiedShapes.isEmpty()) { | ||
ModelTransformer transformer = ModelTransformer.create(); | ||
model = transformer.replaceShapes(model, modifiedShapes); | ||
} | ||
|
||
return model; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters