Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/lang/Character/UnicodeBlock/OptimalMapSize.java
41153 views
1
/*
2
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/**
25
* @test
26
* @bug 8080535 8191410 8215194 8221431 8239383
27
* @summary Expected size of Character.UnicodeBlock.map is not optimal
28
* @library /test/lib
29
* @modules java.base/java.lang:open
30
* java.base/java.util:open
31
* @build jdk.test.lib.util.OptimalCapacity
32
* @run main OptimalMapSize
33
*/
34
35
import java.lang.reflect.Field;
36
import jdk.test.lib.util.OptimalCapacity;
37
38
// What will be the number of the Unicode blocks in the future.
39
//
40
// According to http://www.unicode.org/versions/Unicode7.0.0/ ,
41
// in Unicode 7 there will be added 32 new blocks (96 with aliases).
42
// According to http://www.unicode.org/versions/beta-8.0.0.html ,
43
// in Unicode 8 there will be added 10 more blocks (30 with aliases).
44
//
45
// After implementing support of Unicode 9 and 10 in Java, there will
46
// be 638 entries in Character.UnicodeBlock.map.
47
//
48
// As of Unicode 11, 667 entries are expected.
49
// As of Unicode 12.1, 676 entries are expected.
50
// As of Unicode 13.0, 684 entries are expected.
51
//
52
// Initialization of the map and this test will have to be adjusted
53
// accordingly then.
54
//
55
// Note that HashMap's implementation aligns the initial capacity to
56
// a power of two size, so it will end up 1024 (and thus succeed) in
57
// cases, such as 638, 667, 676, and 684.
58
59
public class OptimalMapSize {
60
public static void main(String[] args) throws Throwable {
61
// The initial size of Character.UnicodeBlock.map.
62
// See src/java.base/share/classes/java/lang/Character.java
63
Field f = Character.UnicodeBlock.class.getDeclaredField("NUM_ENTITIES");
64
f.setAccessible(true);
65
int num_entities = f.getInt(null);
66
assert num_entities == 684;
67
int initialCapacity = (int)(num_entities / 0.75f + 1.0f);
68
69
OptimalCapacity.ofHashMap(Character.UnicodeBlock.class,
70
"map", initialCapacity);
71
}
72
}
73
74