-
Notifications
You must be signed in to change notification settings - Fork 639
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically filter streaming operations
This adds an integration that strips out streaming operations, with the intent that it will be removed once event streams are supported.
- Loading branch information
1 parent
472c933
commit 1ea978e
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
...odegen/src/main/java/software/amazon/smithy/aws/go/codegen/FilterStreamingOperations.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,49 @@ | ||
/* | ||
* Copyright 2020 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.go.codegen; | ||
|
||
import java.util.Set; | ||
import java.util.logging.Logger; | ||
import java.util.stream.Collectors; | ||
import software.amazon.smithy.go.codegen.GoSettings; | ||
import software.amazon.smithy.go.codegen.integration.GoIntegration; | ||
import software.amazon.smithy.model.Model; | ||
import software.amazon.smithy.model.knowledge.EventStreamIndex; | ||
import software.amazon.smithy.model.shapes.OperationShape; | ||
import software.amazon.smithy.model.shapes.Shape; | ||
import software.amazon.smithy.model.transform.ModelTransformer; | ||
|
||
/** | ||
* Filters out event stream operations. | ||
* TODO: implement event streams | ||
*/ | ||
public final class FilterStreamingOperations implements GoIntegration { | ||
private static final Logger LOGGER = Logger.getLogger(FilterStreamingOperations.class.getName()); | ||
|
||
public FilterStreamingOperations() {} | ||
|
||
@Override | ||
public Model preprocessModel(Model model, GoSettings settings) { | ||
EventStreamIndex index = EventStreamIndex.of(model); | ||
Set<Shape> streamingOperations = model.shapes(OperationShape.class) | ||
.filter(op -> index.getOutputInfo(op).isPresent() || index.getInputInfo(op).isPresent()) | ||
.peek(op -> LOGGER.warning(String.format( | ||
"Filtering out unsupported event stream operation: %s", op.getId().toString()))) | ||
.collect(Collectors.toSet()); | ||
ModelTransformer transformer = ModelTransformer.create(); | ||
return transformer.removeUnreferencedShapes(transformer.removeShapes(model, streamingOperations)); | ||
} | ||
} |
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