software.amazon.awssdk.v2migration.internal.utils.IdentifierUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of v2-migration Show documentation
Show all versions of v2-migration Show documentation
Contains OpenRewrite recipes to help users migrate from the AWS SDK for Java v1 to the AWS SDK for Java v2
/*
* Copyright 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.awssdk.v2migration.internal.utils;
import java.util.Collections;
import java.util.List;
import org.openrewrite.Tree;
import org.openrewrite.java.tree.J;
import org.openrewrite.java.tree.JavaType;
import org.openrewrite.java.tree.Space;
import org.openrewrite.java.tree.TypeUtils;
import org.openrewrite.marker.Markers;
import software.amazon.awssdk.annotations.SdkInternalApi;
@SdkInternalApi
public final class IdentifierUtils {
private IdentifierUtils() {
}
/**
* Utility method for creating a {@link J.Identifier}.
*/
public static J.Identifier makeId(String simpleName, JavaType type) {
return new J.Identifier(
Tree.randomId(),
Space.EMPTY,
Markers.EMPTY,
Collections.emptyList(),
simpleName,
type,
null
);
}
/**
* Simple method for creating a simple name for a {@link JavaType.Parameterized} instance. This is a naive implementation
* that currently requires all type parameters to be {@link JavaType.FullyQualified}, and does not handle nested
* parameterized types.
*/
public static String simpleName(JavaType.Parameterized parameterized) {
StringBuilder sb = new StringBuilder(parameterized.getClassName())
.append('<');
List typeParams = parameterized.getTypeParameters();
for (int i = 0; i < typeParams.size(); ++i) {
JavaType.FullyQualified fqParamType = TypeUtils.asFullyQualified(typeParams.get(i));
if (fqParamType == null) {
throw new RuntimeException("Encountered non fully qualified type");
}
sb.append(fqParamType.getClassName());
if (i + 1 != typeParams.size()) {
sb.append(", ");
}
}
return sb.append('>').toString();
}
}