Path: blob/master/test/jdk/java/lang/Character/UnicodeBlock/OptimalMapSize.java
41153 views
/*1* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/**24* @test25* @bug 8080535 8191410 8215194 8221431 823938326* @summary Expected size of Character.UnicodeBlock.map is not optimal27* @library /test/lib28* @modules java.base/java.lang:open29* java.base/java.util:open30* @build jdk.test.lib.util.OptimalCapacity31* @run main OptimalMapSize32*/3334import java.lang.reflect.Field;35import jdk.test.lib.util.OptimalCapacity;3637// What will be the number of the Unicode blocks in the future.38//39// According to http://www.unicode.org/versions/Unicode7.0.0/ ,40// in Unicode 7 there will be added 32 new blocks (96 with aliases).41// According to http://www.unicode.org/versions/beta-8.0.0.html ,42// in Unicode 8 there will be added 10 more blocks (30 with aliases).43//44// After implementing support of Unicode 9 and 10 in Java, there will45// be 638 entries in Character.UnicodeBlock.map.46//47// As of Unicode 11, 667 entries are expected.48// As of Unicode 12.1, 676 entries are expected.49// As of Unicode 13.0, 684 entries are expected.50//51// Initialization of the map and this test will have to be adjusted52// accordingly then.53//54// Note that HashMap's implementation aligns the initial capacity to55// a power of two size, so it will end up 1024 (and thus succeed) in56// cases, such as 638, 667, 676, and 684.5758public class OptimalMapSize {59public static void main(String[] args) throws Throwable {60// The initial size of Character.UnicodeBlock.map.61// See src/java.base/share/classes/java/lang/Character.java62Field f = Character.UnicodeBlock.class.getDeclaredField("NUM_ENTITIES");63f.setAccessible(true);64int num_entities = f.getInt(null);65assert num_entities == 684;66int initialCapacity = (int)(num_entities / 0.75f + 1.0f);6768OptimalCapacity.ofHashMap(Character.UnicodeBlock.class,69"map", initialCapacity);70}71}727374