-
Notifications
You must be signed in to change notification settings - Fork 218
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
Allow error rename and disallow error rename for all AWS protocols #1554
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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,7 @@ | ||
-------------------- | ||
Error shape renaming | ||
-------------------- | ||
|
||
By default, Smithy permits renaming shapes to disambiguate shape ID conflicts in | ||
the :ref:`service closure <service-closure>` via the ``rename`` property. However, services using this protocol are | ||
not allowed to rename error shapes (shapes with :ref:`error trait <error-trait>` applied). | ||
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,17 @@ | ||
-------------------- | ||
Error shape renaming | ||
-------------------- | ||
|
||
By default, Smithy permits renaming shapes to disambiguate shape ID conflicts in | ||
the :ref:`service closure <service-closure>` via the ``rename`` property. However, services using this protocol are | ||
not allowed to rename error shapes (shapes with :ref:`error trait <error-trait>` applied). | ||
|
||
Client-side implementations rely on the response body field ``code`` or ``__type`` to resolve the error type. | ||
Server-side implementations of this protocol will only send the ``shape name`` for the response body field. | ||
|
||
When there are conflicting shape IDs ``smithy.service#ServiceError`` and ``smithy.other#ServiceError``, | ||
the server will only send the shape name ``ServiceError``. Clients will not be able to resolve | ||
the correct error type without the namespace. | ||
|
||
Server-side implementations of this protocol don't serialize renamed shape names. | ||
As a result, renaming will not resolve the conflicting shape IDs issue, and hence it is not permitted. |
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
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
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
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
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
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
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
7 changes: 7 additions & 0 deletions
7
docs/source-2.0/aws/protocols/error-rename-simple.rst.template
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,7 @@ | ||
-------------------- | ||
Error shape renaming | ||
-------------------- | ||
|
||
By default, Smithy permits renaming shapes to disambiguate shape ID conflicts in | ||
the :ref:`service closure <service-closure>` via the ``rename`` property. However, services using this protocol are | ||
not allowed to rename error shapes (shapes with :ref:`error trait <error-trait>` applied). |
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,17 @@ | ||
-------------------- | ||
Error shape renaming | ||
-------------------- | ||
|
||
By default, Smithy permits renaming shapes to disambiguate shape ID conflicts in | ||
the :ref:`service closure <service-closure>` via the ``rename`` property. However, services using this protocol are | ||
not allowed to rename error shapes (shapes with :ref:`error trait <error-trait>` applied). | ||
|
||
Client-side implementations rely on the response body field ``code`` or ``__type`` to resolve the error type. | ||
Server-side implementations of this protocol will only send the ``shape name`` for the response body field. | ||
|
||
When there are conflicting shape IDs ``smithy.service#ServiceError`` and ``smithy.other#ServiceError``, | ||
the server will only send the shape name ``ServiceError``. Clients will not be able to resolve | ||
the correct error type without the namespace. | ||
|
||
Server-side implementations of this protocol don't serialize renamed shape names. | ||
As a result, renaming will not resolve the conflicting shape IDs issue, and hence it is not permitted. |
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
102 changes: 102 additions & 0 deletions
102
smithy-aws-traits/src/main/java/software/amazon/smithy/aws/traits/ErrorRenameValidator.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,102 @@ | ||
/* | ||
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
package software.amazon.smithy.aws.traits; | ||
|
||
import java.util.ArrayList; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
import java.util.Set; | ||
import software.amazon.smithy.aws.traits.protocols.AwsJson1_0Trait; | ||
import software.amazon.smithy.aws.traits.protocols.AwsJson1_1Trait; | ||
import software.amazon.smithy.aws.traits.protocols.AwsQueryTrait; | ||
import software.amazon.smithy.aws.traits.protocols.Ec2QueryTrait; | ||
import software.amazon.smithy.aws.traits.protocols.RestJson1Trait; | ||
import software.amazon.smithy.aws.traits.protocols.RestXmlTrait; | ||
import software.amazon.smithy.model.Model; | ||
import software.amazon.smithy.model.shapes.ServiceShape; | ||
import software.amazon.smithy.model.shapes.Shape; | ||
import software.amazon.smithy.model.shapes.ShapeId; | ||
import software.amazon.smithy.model.traits.ErrorTrait; | ||
import software.amazon.smithy.model.validation.AbstractValidator; | ||
import software.amazon.smithy.model.validation.ValidationEvent; | ||
import software.amazon.smithy.utils.SetUtils; | ||
import software.amazon.smithy.utils.SmithyInternalApi; | ||
|
||
@SmithyInternalApi | ||
public final class ErrorRenameValidator extends AbstractValidator { | ||
|
||
/** | ||
* By default, server-side implementation of AWS Protocols send the error shape ID on the wire, | ||
* and clients can use it to resolve the error type. | ||
* | ||
* However, some protocols implementations, including AWS JSON 1.1, only send the shape name. | ||
* If there are conflicting shape IDs e.g. smithy.service#ServiceError and smithy.other#ServiceError, | ||
* clients are unable to resolve the error type with the shape name alone. | ||
* | ||
* In addition, Server-side implementation of these protocols don't handle or send renamed shape names. | ||
* | ||
* Hence, error shape renaming are not supported for these protocols. | ||
*/ | ||
private static final Set<ShapeId> UNSUPPORTED_PROTOCOLS = SetUtils.of( | ||
AwsJson1_0Trait.ID, AwsJson1_1Trait.ID, AwsQueryTrait.ID, | ||
Ec2QueryTrait.ID, RestJson1Trait.ID, RestXmlTrait.ID | ||
); | ||
|
||
AndrewFossAWS marked this conversation as resolved.
Show resolved
Hide resolved
|
||
@Override | ||
public List<ValidationEvent> validate(Model model) { | ||
List<ValidationEvent> events = new ArrayList<>(); | ||
for (ServiceShape shape : model.getServiceShapes()) { | ||
validate(model, shape, events); | ||
} | ||
return events; | ||
} | ||
|
||
private void validate(Model model, ServiceShape service, List<ValidationEvent> events) { | ||
final Map<ShapeId, String> renames = service.getRename(); | ||
|
||
if (renames.isEmpty()) { | ||
return; | ||
} | ||
|
||
Set<String> unsupportedProtocols = new HashSet<>(); | ||
for (ShapeId protocol: UNSUPPORTED_PROTOCOLS) { | ||
if (service.getAllTraits().containsKey(protocol)) { | ||
unsupportedProtocols.add(protocol.getName()); | ||
} | ||
} | ||
|
||
if (unsupportedProtocols.isEmpty()) { | ||
return; | ||
} | ||
|
||
renames.keySet().forEach(shapeId -> { | ||
Optional<Shape> shape = model.getShape(shapeId); | ||
|
||
if (!shape.isPresent() || !shape.get().hasTrait(ErrorTrait.class)) { | ||
return; | ||
} | ||
|
||
ShapeId from = shape.get().getId(); | ||
String to = renames.get(from); | ||
events.add(error(service, String.format( | ||
"Service attempts to rename an error shape from `%s` to \"%s\"; " | ||
+ "Service protocols %s do not support error renaming.", | ||
from, to, unsupportedProtocols))); | ||
}); | ||
} | ||
} |
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
2 changes: 2 additions & 0 deletions
2
...raits/src/test/resources/software/amazon/smithy/aws/traits/errorfiles/error-rename.errors
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,2 @@ | ||
[ERROR] smithy.example#MyService: Service attempts to rename an error shape from `smithy.example#BadGreeting` to "ThisDoesNotWork"; Service protocols [restXml, awsJson1_1] do not support error renaming. | ErrorRename | ||
[ERROR] smithy.example#MyService: Service attempts to rename an error shape from `smithy.example#ServerError` to "ServerDown"; Service protocols [restXml, awsJson1_1] do not support error renaming. | ErrorRename |
42 changes: 42 additions & 0 deletions
42
...raits/src/test/resources/software/amazon/smithy/aws/traits/errorfiles/error-rename.smithy
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,42 @@ | ||
$version: "2.0" | ||
|
||
namespace smithy.example | ||
|
||
use aws.protocols#awsJson1_1 | ||
use aws.protocols#restXml | ||
|
||
@awsJson1_1 | ||
@restXml | ||
service MyService { | ||
version: "1", | ||
operations: [ | ||
SayHello, | ||
], | ||
rename: { | ||
"smithy.example#BadGreeting": "ThisDoesNotWork" | ||
"smithy.example#ServerError": "ServerDown" | ||
"smithy.example#Language": "LanguageSettings" | ||
} | ||
} | ||
|
||
operation SayHello { | ||
input: SayHelloInput, | ||
output: SayHelloOutput, | ||
errors: [BadGreeting, ServerError] | ||
} | ||
|
||
@input | ||
structure SayHelloInput { | ||
language: Language | ||
} | ||
|
||
@output | ||
structure SayHelloOutput {} | ||
|
||
@error("client") | ||
structure BadGreeting {} | ||
|
||
@error("server") | ||
structure ServerError {} | ||
|
||
structure Language {} |
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
1 change: 0 additions & 1 deletion
1
...ware/amazon/smithy/model/errorfiles/validators/service-rename/error-rename-invalid.errors
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 |
---|---|---|
@@ -1 +0,0 @@ | ||
[ERROR] smithy.example#MyService: Service attempts to rename a structure shape from `smithy.example#BadGreeting` to "ThisDoesNotWork"; errors cannot be renamed | Service | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will be removed later when AWS SDKs have been verified to support error shape rename.