|
| 1 | +/* |
| 2 | + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"). |
| 5 | + * You may not use this file except in compliance with the License. |
| 6 | + * A copy of the License is located at |
| 7 | + * |
| 8 | + * http://aws.amazon.com/apache2.0 |
| 9 | + * |
| 10 | + * or in the "license" file accompanying this file. This file is distributed |
| 11 | + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| 12 | + * express or implied. See the License for the specific language governing |
| 13 | + * permissions and limitations under the License. |
| 14 | + */ |
| 15 | + |
| 16 | +package software.amazon.awssdk.v2migration; |
| 17 | + |
| 18 | +import java.nio.ByteBuffer; |
| 19 | +import java.util.List; |
| 20 | +import java.util.regex.Pattern; |
| 21 | +import org.openrewrite.ExecutionContext; |
| 22 | +import org.openrewrite.NlsRewrite; |
| 23 | +import org.openrewrite.Recipe; |
| 24 | +import org.openrewrite.TreeVisitor; |
| 25 | +import org.openrewrite.java.JavaIsoVisitor; |
| 26 | +import org.openrewrite.java.JavaTemplate; |
| 27 | +import org.openrewrite.java.tree.J; |
| 28 | +import org.openrewrite.java.tree.JavaType; |
| 29 | +import org.openrewrite.java.tree.JavaType.FullyQualified; |
| 30 | +import org.openrewrite.java.tree.JavaType.Method; |
| 31 | +import software.amazon.awssdk.annotations.SdkInternalApi; |
| 32 | +import software.amazon.awssdk.core.SdkBytes; |
| 33 | +import software.amazon.awssdk.v2migration.internal.utils.SdkTypeUtils; |
| 34 | + |
| 35 | +@SdkInternalApi |
| 36 | +public class ByteBufferToSdkBytes extends Recipe { |
| 37 | + private static final Pattern BYTE_BUFFER_PATTERN = Pattern.compile(ByteBuffer.class.getCanonicalName()); |
| 38 | + |
| 39 | + @Override |
| 40 | + public @NlsRewrite.DisplayName String getDisplayName() { |
| 41 | + return "Convert ByteBuffer to SdkBytes"; |
| 42 | + } |
| 43 | + |
| 44 | + @Override |
| 45 | + public @NlsRewrite.Description String getDescription() { |
| 46 | + return "Convert ByteBuffer to SdkBytes by calling SdkBytes#fromByteBuffer"; |
| 47 | + } |
| 48 | + |
| 49 | + @Override |
| 50 | + public TreeVisitor<?, ExecutionContext> getVisitor() { |
| 51 | + return new SdkBytesToBufferVisitor(); |
| 52 | + } |
| 53 | + |
| 54 | + private static final class SdkBytesToBufferVisitor extends JavaIsoVisitor<ExecutionContext> { |
| 55 | + @Override |
| 56 | + public J.MethodInvocation visitMethodInvocation(J.MethodInvocation originalMethod, |
| 57 | + ExecutionContext executionContext) { |
| 58 | + J.MethodInvocation method = |
| 59 | + super.visitMethodInvocation(originalMethod, executionContext); |
| 60 | + if (!isV2ModelSetterWithByteBufferParam(method)) { |
| 61 | + return method; |
| 62 | + } |
| 63 | + |
| 64 | + String methodName = method.getSimpleName(); |
| 65 | + JavaTemplate template = JavaTemplate |
| 66 | + .builder("SdkBytes.fromByteBuffer(#{any()})") |
| 67 | + .contextSensitive() |
| 68 | + .imports(SdkBytes.class.getCanonicalName()) |
| 69 | + .build(); |
| 70 | + |
| 71 | + method = template.apply( |
| 72 | + updateCursor(method), |
| 73 | + method.getCoordinates().replaceArguments(), |
| 74 | + method.getArguments().toArray() |
| 75 | + ); |
| 76 | + |
| 77 | + maybeAddImport(SdkBytes.class.getCanonicalName(), false); |
| 78 | + return method; |
| 79 | + } |
| 80 | + |
| 81 | + private static boolean isV2ModelSetterWithByteBufferParam(J.MethodInvocation method) { |
| 82 | + Method mt = method.getMethodType(); |
| 83 | + |
| 84 | + if (mt != null) { |
| 85 | + FullyQualified declaringType = mt.getDeclaringType(); |
| 86 | + List<JavaType> parameterTypes = mt.getParameterTypes(); |
| 87 | + if (parameterTypes.size() != 1) { |
| 88 | + return false; |
| 89 | + } |
| 90 | + |
| 91 | + JavaType javaType = parameterTypes.get(0); |
| 92 | + if (javaType == null) { |
| 93 | + return false; |
| 94 | + } |
| 95 | + |
| 96 | + boolean isByteBufferParam = javaType.isAssignableFrom(BYTE_BUFFER_PATTERN); |
| 97 | + if (SdkTypeUtils.isV2ModelBuilder(declaringType) && isByteBufferParam) { |
| 98 | + return true; |
| 99 | + } |
| 100 | + } |
| 101 | + return false; |
| 102 | + } |
| 103 | + } |
| 104 | +} |
0 commit comments