src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/LocalNameQualifiedNamesMap.java

Thu, 12 Oct 2017 19:44:07 +0800

author
aoqi
date
Thu, 12 Oct 2017 19:44:07 +0800
changeset 760
e530533619ec
parent 0
373ffda63c9a
permissions
-rw-r--r--

merge

     1 /*
     2  * Copyright (c) 2004, 2011, 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.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  *
    25  * THIS FILE WAS MODIFIED BY SUN MICROSYSTEMS, INC.
    26  */
    28 package com.sun.xml.internal.fastinfoset.util;
    30 import com.sun.xml.internal.fastinfoset.QualifiedName;
    31 import com.sun.xml.internal.fastinfoset.CommonResourceBundle;
    33 public class LocalNameQualifiedNamesMap extends KeyIntMap {
    35     private LocalNameQualifiedNamesMap _readOnlyMap;
    37     private int _index;
    39     public static class Entry {
    40         final String _key;
    41         final int _hash;
    42         public QualifiedName[] _value;
    43         public int _valueIndex;
    44         Entry _next;
    46         public Entry(String key, int hash, Entry next) {
    47             _key = key;
    48             _hash = hash;
    49             _next = next;
    50             _value = new QualifiedName[1];
    51         }
    53         public void addQualifiedName(QualifiedName name) {
    54             if (_valueIndex < _value.length) {
    55                 _value[_valueIndex++] = name;
    56             } else if (_valueIndex == _value.length) {
    57                 QualifiedName[] newValue = new QualifiedName[_valueIndex * 3 / 2 + 1];
    58                 System.arraycopy(_value, 0, newValue, 0, _valueIndex);
    59                 _value = newValue;
    60                 _value[_valueIndex++] = name;
    61             }
    62         }
    63     }
    65     private Entry[] _table;
    67     public LocalNameQualifiedNamesMap(int initialCapacity, float loadFactor) {
    68         super(initialCapacity, loadFactor);
    70         _table = new Entry[_capacity];
    71     }
    73     public LocalNameQualifiedNamesMap(int initialCapacity) {
    74         this(initialCapacity, DEFAULT_LOAD_FACTOR);
    75     }
    77     public LocalNameQualifiedNamesMap() {
    78         this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
    79     }
    81     public final void clear() {
    82         for (int i = 0; i < _table.length; i++) {
    83             _table[i] = null;
    84         }
    85         _size = 0;
    87         if (_readOnlyMap != null) {
    88             _index = _readOnlyMap.getIndex();
    89         } else {
    90             _index = 0;
    91         }
    92     }
    94     public final void setReadOnlyMap(KeyIntMap readOnlyMap, boolean clear) {
    95         if (!(readOnlyMap instanceof LocalNameQualifiedNamesMap)) {
    96             throw new IllegalArgumentException(CommonResourceBundle.getInstance().
    97                     getString("message.illegalClass", new Object[]{readOnlyMap}));
    98         }
   100         setReadOnlyMap((LocalNameQualifiedNamesMap)readOnlyMap, clear);
   101     }
   103     public final void setReadOnlyMap(LocalNameQualifiedNamesMap readOnlyMap, boolean clear) {
   104         _readOnlyMap = readOnlyMap;
   105         if (_readOnlyMap != null) {
   106             _readOnlyMapSize = _readOnlyMap.size();
   107             _index = _readOnlyMap.getIndex();
   108             if (clear) {
   109                 clear();
   110             }
   111         }  else {
   112             _readOnlyMapSize = 0;
   113             _index = 0;
   114         }
   115     }
   117     public final boolean isQNameFromReadOnlyMap(QualifiedName name) {
   118         return (_readOnlyMap != null && name.index <= _readOnlyMap.getIndex());
   119     }
   121     public final int getNextIndex() {
   122         return _index++;
   123     }
   125     public final int getIndex() {
   126         return _index;
   127     }
   129     public final Entry obtainEntry(String key) {
   130         final int hash = hashHash(key.hashCode());
   132         if (_readOnlyMap != null) {
   133             final Entry entry = _readOnlyMap.getEntry(key, hash);
   134             if (entry != null) {
   135                 return entry;
   136             }
   137         }
   139         final int tableIndex = indexFor(hash, _table.length);
   140         for (Entry e = _table[tableIndex]; e != null; e = e._next) {
   141             if (e._hash == hash && eq(key, e._key)) {
   142                 return e;
   143             }
   144         }
   146         return addEntry(key, hash, tableIndex);
   147     }
   149     public final Entry obtainDynamicEntry(String key) {
   150         final int hash = hashHash(key.hashCode());
   152         final int tableIndex = indexFor(hash, _table.length);
   153         for (Entry e = _table[tableIndex]; e != null; e = e._next) {
   154             if (e._hash == hash && eq(key, e._key)) {
   155                 return e;
   156             }
   157         }
   159         return addEntry(key, hash, tableIndex);
   160     }
   162     private final Entry getEntry(String key, int hash) {
   163         if (_readOnlyMap != null) {
   164             final Entry entry = _readOnlyMap.getEntry(key, hash);
   165             if (entry != null) {
   166                 return entry;
   167             }
   168         }
   170         final int tableIndex = indexFor(hash, _table.length);
   171         for (Entry e = _table[tableIndex]; e != null; e = e._next) {
   172             if (e._hash == hash && eq(key, e._key)) {
   173                 return e;
   174             }
   175         }
   177         return null;
   178     }
   181     private final Entry addEntry(String key, int hash, int bucketIndex) {
   182         Entry e = _table[bucketIndex];
   183         _table[bucketIndex] = new Entry(key, hash, e);
   184         e = _table[bucketIndex];
   185         if (_size++ >= _threshold) {
   186             resize(2 * _table.length);
   187         }
   189         return e;
   190     }
   192     private final void resize(int newCapacity) {
   193         _capacity = newCapacity;
   194         Entry[] oldTable = _table;
   195         int oldCapacity = oldTable.length;
   196         if (oldCapacity == MAXIMUM_CAPACITY) {
   197             _threshold = Integer.MAX_VALUE;
   198             return;
   199         }
   201         Entry[] newTable = new Entry[_capacity];
   202         transfer(newTable);
   203         _table = newTable;
   204         _threshold = (int)(_capacity * _loadFactor);
   205     }
   207     private final void transfer(Entry[] newTable) {
   208         Entry[] src = _table;
   209         int newCapacity = newTable.length;
   210         for (int j = 0; j < src.length; j++) {
   211             Entry e = src[j];
   212             if (e != null) {
   213                 src[j] = null;
   214                 do {
   215                     Entry next = e._next;
   216                     int i = indexFor(e._hash, newCapacity);
   217                     e._next = newTable[i];
   218                     newTable[i] = e;
   219                     e = next;
   220                 } while (e != null);
   221             }
   222         }
   223     }
   225     private final boolean eq(String x, String y) {
   226         return x == y || x.equals(y);
   227     }
   229 }

mercurial