Skip to content

Commit cac5f3d

Browse files
committed
Convert ByteBuffer to SdkBytes
1 parent c665d11 commit cac5f3d

File tree

5 files changed

+132
-3
lines changed

5 files changed

+132
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "bugfix",
3+
"category": "AWS SDK for Java v2 Migration Tool",
4+
"contributor": "",
5+
"description": "Transform the setter methods on the service model classes that take SdkBytes to take ByteBuffer to be compatible with v1 style setters"
6+
}

test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven/after/src/main/java/foo/bar/SdkBytes.java test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven/after/src/main/java/foo/bar/SdkBytesGetterSetter.java

+11-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,23 @@
1616
package foo.bar;
1717

1818
import java.nio.ByteBuffer;
19+
import java.nio.charset.StandardCharsets;
20+
import software.amazon.awssdk.core.SdkBytes;
1921
import software.amazon.awssdk.services.sqs.model.MessageAttributeValue;
2022

21-
public class SdkBytes {
23+
public class SdkBytesGetterSetter {
24+
25+
void byteBufferSetter() {
26+
ByteBuffer buffer = ByteBuffer.wrap("helloworld".getBytes(StandardCharsets.UTF_8));
27+
MessageAttributeValue messageAttributeValue = MessageAttributeValue.builder()
28+
.binaryValue(SdkBytes.fromByteBuffer(buffer))
29+
.build();
30+
}
2231

2332
void sdkBytesGetters() {
2433
MessageAttributeValue messageAttributeValue = MessageAttributeValue.builder()
2534
.build();
35+
2636
ByteBuffer binaryValue = messageAttributeValue.binaryValue().asByteBuffer();
2737
String binaryString = new String(messageAttributeValue.binaryValue().asByteBuffer().array());
2838
}

test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven/before/src/main/java/foo/bar/SdkBytes.java test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven/before/src/main/java/foo/bar/SdkBytesGetterSetter.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,19 @@
1717

1818
import com.amazonaws.services.sqs.model.MessageAttributeValue;
1919
import java.nio.ByteBuffer;
20+
import java.nio.charset.StandardCharsets;
2021

21-
public class SdkBytes {
22+
public class SdkBytesGetterSetter {
23+
24+
void byteBufferSetter() {
25+
ByteBuffer buffer = ByteBuffer.wrap("helloworld".getBytes(StandardCharsets.UTF_8));
26+
MessageAttributeValue messageAttributeValue = new MessageAttributeValue()
27+
.withBinaryValue(buffer);
28+
}
2229

2330
void sdkBytesGetters() {
2431
MessageAttributeValue messageAttributeValue = new MessageAttributeValue();
32+
2533
ByteBuffer binaryValue = messageAttributeValue.getBinaryValue();
2634
String binaryString = new String(messageAttributeValue.getBinaryValue().array());
2735
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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+
}

v2-migration/src/main/resources/META-INF/rewrite/aws-sdk-java-v1-to-v2.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ recipeList:
3838
- software.amazon.awssdk.v2migration.HttpSettingsToHttpClient
3939
- software.amazon.awssdk.v2migration.WrapSdkClientBuilderRegionStr
4040
- software.amazon.awssdk.v2migration.EnumCasingToV2
41-
- software.amazon.awssdk.v2migration.SdkBytesToByteBuffer
41+
- software.amazon.awssdk.v2migration.SdkBytesToByteBuffer
42+
- software.amazon.awssdk.v2migration.ByteBufferToSdkBytes

0 commit comments

Comments
 (0)