1
1
/*
2
- * Copyright (c) 1994, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1994, 2023 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -698,8 +698,13 @@ private String(Charset charset, byte[] bytes, int offset, int length) {
698
698
699
699
/*
700
700
* Throws iae, instead of replacing, if malformed or unmappable.
701
+ *
702
+ * @param noShare
703
+ * {@code true} if the resulting string MUST NOT share the byte array,
704
+ * {@code false} if the byte array can be exclusively used to construct
705
+ * the string and is not modified or used for any other purpose.
701
706
*/
702
- static String newStringUTF8NoRepl (byte [] bytes , int offset , int length ) {
707
+ static String newStringUTF8NoRepl (byte [] bytes , int offset , int length , boolean noShare ) {
703
708
checkBoundsOffCount (offset , length , bytes .length );
704
709
if (length == 0 ) {
705
710
return "" ;
@@ -710,7 +715,11 @@ static String newStringUTF8NoRepl(byte[] bytes, int offset, int length) {
710
715
dp = StringCoding .countPositives (bytes , offset , length );
711
716
int sl = offset + length ;
712
717
if (dp == length ) {
713
- return new String (Arrays .copyOfRange (bytes , offset , offset + length ), LATIN1 );
718
+ if (noShare || length != bytes .length ) {
719
+ return new String (Arrays .copyOfRange (bytes , offset , offset + length ), LATIN1 );
720
+ } else {
721
+ return new String (bytes , LATIN1 );
722
+ }
714
723
}
715
724
dst = new byte [length ];
716
725
System .arraycopy (bytes , offset , dst , 0 , dp );
@@ -778,7 +787,7 @@ private static String newStringNoRepl1(byte[] src, Charset cs) {
778
787
return "" ;
779
788
}
780
789
if (cs == UTF_8 .INSTANCE ) {
781
- return newStringUTF8NoRepl (src , 0 , src .length );
790
+ return newStringUTF8NoRepl (src , 0 , src .length , false );
782
791
}
783
792
if (cs == ISO_8859_1 .INSTANCE ) {
784
793
if (COMPACT_STRINGS )
@@ -800,6 +809,8 @@ private static String newStringNoRepl1(byte[] src, Charset cs) {
800
809
if (cd instanceof ArrayDecoder ad &&
801
810
ad .isASCIICompatible () &&
802
811
!StringCoding .hasNegatives (src , 0 , src .length )) {
812
+ if (COMPACT_STRINGS )
813
+ return new String (src , LATIN1 );
803
814
return new String (src , 0 , src .length , ISO_8859_1 .INSTANCE );
804
815
}
805
816
int en = scale (len , cd .maxCharsPerByte ());
0 commit comments