Skip to content

Commit 3c83057

Browse files
committed
Allocate memorysegment for string with native charset for printf downcall
When making a downcall to standard printf function, use a memorysegment allocated with native charset for strings. Signed-off-by: Rahil Shah <[email protected]>
1 parent 026c6f8 commit 3c83057

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

test/jdk/java/foreign/StdLibTest.java

+11-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
* questions.
2222
*/
2323

24+
/*
25+
* ===========================================================================
26+
* (c) Copyright IBM Corp. 2024, 2024 All Rights Reserved
27+
* ===========================================================================
28+
*/
29+
2430
/*
2531
* @test
2632
* @run testng/othervm --enable-native-access=ALL-UNNAMED StdLibTest
@@ -29,6 +35,7 @@
2935
import java.lang.invoke.MethodHandle;
3036
import java.lang.invoke.MethodHandles;
3137
import java.lang.invoke.MethodType;
38+
import java.nio.charset.Charset;
3239
import java.time.Instant;
3340
import java.time.LocalDateTime;
3441
import java.time.ZoneOffset;
@@ -53,6 +60,8 @@ public class StdLibTest extends NativeTestHelper {
5360

5461
final static Linker abi = Linker.nativeLinker();
5562

63+
final static Charset charSetNative = Charset.forName(System.getProperty("native.encoding"));
64+
5665
private StdLibHelper stdLibHelper = new StdLibHelper();
5766

5867
@Test(dataProvider = "stringPairs")
@@ -306,7 +315,7 @@ int rand() throws Throwable {
306315

307316
int printf(String format, List<PrintfArg> args) throws Throwable {
308317
try (var arena = Arena.ofConfined()) {
309-
MemorySegment formatStr = arena.allocateFrom(format);
318+
MemorySegment formatStr = arena.allocateFrom(format, charSetNative);
310319
return (int)specializedPrintf(args).invokeExact(formatStr,
311320
args.stream().map(a -> a.nativeValue(arena)).toArray());
312321
}
@@ -387,7 +396,7 @@ enum PrintfArg {
387396
INT(int.class, C_INT, "%d", "%d", arena -> 42, 42),
388397
LONG(long.class, C_LONG_LONG, "%lld", "%d", arena -> 84L, 84L),
389398
DOUBLE(double.class, C_DOUBLE, "%.4f", "%.4f", arena -> 1.2345d, 1.2345d),
390-
STRING(MemorySegment.class, C_POINTER, "%s", "%s", arena -> arena.allocateFrom("str"), "str");
399+
STRING(MemorySegment.class, C_POINTER, "%s", "%s", arena -> arena.allocateFrom("str", charSetNative), "str");
391400

392401
final Class<?> carrier;
393402
final ValueLayout layout;

0 commit comments

Comments
 (0)