-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95613e0
commit fa4f969
Showing
12 changed files
with
192 additions
and
10 deletions.
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
85 changes: 85 additions & 0 deletions
85
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,85 @@ | ||
/* | ||
* Copyright 2019 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.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Set; | ||
import java.util.stream.Collectors; | ||
import software.amazon.smithy.aws.traits.protocols.AwsProtocolTrait; | ||
import software.amazon.smithy.model.Model; | ||
import software.amazon.smithy.model.knowledge.NeighborProviderIndex; | ||
import software.amazon.smithy.model.neighbor.Walker; | ||
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; | ||
|
||
public class ErrorRenameValidator extends AbstractValidator { | ||
@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) { | ||
Walker walker = new Walker(NeighborProviderIndex.of(model).getProvider()); | ||
Map<ShapeId, Shape> closure = new HashMap<>(); | ||
walker.iterateShapes(service).forEachRemaining(shape -> closure.put(shape.getId(), shape)); | ||
events.addAll(validateErrorRenames(service, closure)); | ||
} | ||
|
||
private List<ValidationEvent> validateErrorRenames(ServiceShape service, Map<ShapeId, Shape> closure) { | ||
List<ValidationEvent> events = new ArrayList<>(); | ||
|
||
if (service.getRename().isEmpty()) { | ||
return events; | ||
} | ||
|
||
// Collect names of protocols which do not send shape ID on the wire | ||
Set<String> protocolsNotSupportingErrorRename = service.getAllTraits().values().stream() | ||
.filter(trait -> trait instanceof AwsProtocolTrait) | ||
.filter(trait -> ((AwsProtocolTrait) trait).sendErrorShapeNameOverWire()) | ||
.map(trait -> trait.toShapeId().getName()) | ||
.collect(Collectors.toSet()); | ||
|
||
if (protocolsNotSupportingErrorRename.isEmpty()) { | ||
return events; | ||
} | ||
|
||
for (Map.Entry<ShapeId, String> rename : service.getRename().entrySet()) { | ||
ShapeId from = rename.getKey(); | ||
String to = rename.getValue(); | ||
Shape shapeToRename = closure.get(from); | ||
|
||
if (shapeToRename.hasTrait(ErrorTrait.class)) { | ||
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, protocolsNotSupportingErrorRename))); | ||
} | ||
} | ||
|
||
return events; | ||
} | ||
} |
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
1 change: 1 addition & 0 deletions
1
...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 @@ | ||
[ERROR] smithy.example#MyService: Service attempts to rename an error shape from `smithy.example#BadGreeting` to "ThisDoesNotWork"; Service protocols [awsJson1_1] do not support error renaming. | ErrorRename |
33 changes: 33 additions & 0 deletions
33
...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,33 @@ | ||
$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" | ||
} | ||
} | ||
|
||
operation SayHello { | ||
input: SayHelloInput, | ||
output: SayHelloOutput, | ||
errors: [BadGreeting] | ||
} | ||
|
||
@input | ||
structure SayHelloInput {} | ||
|
||
@output | ||
structure SayHelloOutput {} | ||
|
||
@error("client") | ||
structure BadGreeting {} |
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 |
---|---|---|
@@ -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 | ||