staxintern.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 167 行

JAVA
167
字号
/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the *   Free SoftwareFoundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package com.caucho.xml.stream;import javax.xml.XMLConstants;import javax.xml.namespace.QName;/** * Interning names */public class StaxIntern {  private static final int SIZE = 203;    private final Entry []_entries = new Entry[SIZE];  private final NamespaceReaderContext _namespaceContext;  StaxIntern(NamespaceReaderContext namespaceContext)  {    _namespaceContext = namespaceContext;  }  Entry add(char []buffer, int offset, int length, int colon,             boolean isAttribute)  {    int hash = 0;    for (int i = length - 1; i >= 0; i--) {      hash = 37 * hash + buffer[offset + i];    }    int bucket = (hash & 0x7fffffff) % SIZE;    Entry entry;    for (entry = _entries[bucket];         entry != null;         entry = entry._next) {      if (entry.match(buffer, offset, length, isAttribute))        return entry;    }    entry = new Entry(_entries[bucket],                      buffer, offset, length,                      colon,                      isAttribute);    _entries[bucket] = entry;    return entry;  }  final class Entry {    final Entry _next;        final char []_buf;    final boolean _isAttribute;    final String _prefix;    final String _localName;    NamespaceBinding _namespace;    int _version;    QName _qName;    Entry(Entry next,          char []buf, int offset, int length,          int colon,          boolean isAttribute)    {      _next = next;      _buf = new char[length];      System.arraycopy(buf, offset, _buf, 0, length);      _isAttribute = isAttribute;      if (colon > 0) {        _prefix = new String(buf, 0, colon);        _localName = new String(buf, colon + 1, length - colon - 1);      }      else {        _prefix = XMLConstants.DEFAULT_NS_PREFIX;        _localName = new String(buf, 0, length);      }      if (_isAttribute)        _namespace = _namespaceContext.getAttributeNamespace(_prefix);      else        _namespace = _namespaceContext.getElementNamespace(_prefix);      fillQName();    }    public final boolean match(char []buf, int offset, int length,                               boolean isAttribute)    {      if (length != _buf.length || _isAttribute != isAttribute)        return false;      char []entryBuf = _buf;      for (length--; length >= 0; length--) {        if (entryBuf[length] != buf[offset + length])          return false;      }      return true;    }    String getLocalName()    {      return _localName;    }    String getPrefix()    {      return _prefix;    }    QName getQName()    {      if (_version != _namespace.getVersion())        fillQName();      return _qName;    }    private void fillQName()    {      _version = _namespace.getVersion();      String prefix = _prefix;      if (prefix == null)        prefix = "";      _qName = new QName(_namespace.getUri(), _localName, prefix);    }  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?