jdk/src/share/classes/javax/swing/text/html/parser/DTD.java
author xdono
Wed, 02 Jul 2008 12:55:45 -0700
changeset 715 f16baef3a20e
parent 438 2ae294e4518c
child 1299 027d966d5658
permissions -rw-r--r--
6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
715
f16baef3a20e 6719955: Update copyright year
xdono
parents: 438
diff changeset
     2
 * Copyright 1998-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.swing.text.html.parser;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.PrintStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.FileInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.FileNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.io.BufferedInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.io.DataInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.Vector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.util.BitSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.StringTokenizer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.util.Properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.net.URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * The representation of an SGML DTD.  DTD describes a document
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * syntax and is used in parsing of HTML documents.  It contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * a list of elements and their attributes as well as a list of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * entities defined in the DTD.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * @see Element
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * @see AttributeList
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @see ContentModel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * @see Parser
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @author Arthur van Hoff
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
class DTD implements DTDConstants {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    public String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    public Vector<Element> elements = new Vector<Element>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    public Hashtable<String,Element> elementHash
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        = new Hashtable<String,Element>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public Hashtable<Object,Entity> entityHash
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        = new Hashtable<Object,Entity>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    public final Element pcdata = getElement("#pcdata");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    public final Element html = getElement("html");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    public final Element meta = getElement("meta");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    public final Element base = getElement("base");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    public final Element isindex = getElement("isindex");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public final Element head = getElement("head");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    public final Element body = getElement("body");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public final Element applet = getElement("applet");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    public final Element param = getElement("param");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public final Element p = getElement("p");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    public final Element title = getElement("title");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    final Element style = getElement("style");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    final Element link = getElement("link");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    final Element script = getElement("script");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    public static final int FILE_VERSION = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * Creates a new DTD with the specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @param name the name, as a <code>String</code> of the new DTD
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    protected DTD(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        defEntity("#RE", GENERAL, '\r');
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        defEntity("#RS", GENERAL, '\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        defEntity("#SPACE", GENERAL, ' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        defineElement("unknown", EMPTY, false, true, null, null, null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Gets the name of the DTD.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @return the name of the DTD
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * Gets an entity by name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @return the <code>Entity</code> corresponding to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *   <code>name</code> <code>String</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public Entity getEntity(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        return (Entity)entityHash.get(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * Gets a character entity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @return the <code>Entity</code> corresponding to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *    <code>ch</code> character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public Entity getEntity(int ch) {
438
2ae294e4518c 6613529: Avoid duplicate object creation within JDK packages
dav
parents: 2
diff changeset
   116
        return (Entity)entityHash.get(Integer.valueOf(ch));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Returns <code>true</code> if the element is part of the DTD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * otherwise returns <code>false</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @param  name the requested <code>String</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @return <code>true</code> if <code>name</code> exists as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *   part of the DTD, otherwise returns <code>false</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    boolean elementExists(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        return !"unknown".equals(name) && (elementHash.get(name) != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * Gets an element by name. A new element is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * created if the element doesn't exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @param name the requested <code>String</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @return the <code>Element</code> corresponding to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *   <code>name</code>, which may be newly created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    public Element getElement(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        Element e = (Element)elementHash.get(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        if (e == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            e = new Element(name, elements.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            elements.addElement(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            elementHash.put(name, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Gets an element by index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @param index the requested index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @return the <code>Element</code> corresponding to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *   <code>index</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public Element getElement(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        return (Element)elements.elementAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * Defines an entity.  If the <code>Entity</code> specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * by <code>name</code>, <code>type</code>, and <code>data</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * exists, it is returned; otherwise a new <code>Entity</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * is created and is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @param name the name of the <code>Entity</code> as a <code>String</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @param type the type of the <code>Entity</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @param data the <code>Entity</code>'s data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @return the <code>Entity</code> requested or a new <code>Entity</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *   if not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    public Entity defineEntity(String name, int type, char data[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        Entity ent = (Entity)entityHash.get(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        if (ent == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            ent = new Entity(name, type, data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            entityHash.put(name, ent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            if (((type & GENERAL) != 0) && (data.length == 1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                switch (type & ~GENERAL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                  case CDATA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                  case SDATA:
438
2ae294e4518c 6613529: Avoid duplicate object creation within JDK packages
dav
parents: 2
diff changeset
   181
                      entityHash.put(Integer.valueOf(data[0]), ent);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        return ent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * Returns the <code>Element</code> which matches the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * specified parameters.  If one doesn't exist, a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * one is created and returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @param name the name of the <code>Element</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @param type the type of the <code>Element</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * @param omitStart <code>true</code> if start should be omitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @param omitEnd  <code>true</code> if end should be omitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @param content  the <code>ContentModel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @param atts the <code>AttributeList</code> specifying the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     *    <code>Element</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @return the <code>Element</code> specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public Element defineElement(String name, int type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                       boolean omitStart, boolean omitEnd, ContentModel content,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
                       BitSet exclusions, BitSet inclusions, AttributeList atts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        Element e = getElement(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        e.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        e.oStart = omitStart;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        e.oEnd = omitEnd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        e.content = content;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        e.exclusions = exclusions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        e.inclusions = inclusions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        e.atts = atts;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * Defines attributes for an {@code Element}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * @param name the name of the <code>Element</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @param atts the <code>AttributeList</code> specifying the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *    <code>Element</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    public void defineAttributes(String name, AttributeList atts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        Element e = getElement(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        e.atts = atts;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Creates and returns a character <code>Entity</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @param name the entity's name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @return the new character <code>Entity</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    public Entity defEntity(String name, int type, int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        char data[] = {(char)ch};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        return defineEntity(name, type, data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * Creates and returns an <code>Entity</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * @param name the entity's name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * @return the new <code>Entity</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    protected Entity defEntity(String name, int type, String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        int len = str.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        char data[] = new char[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        str.getChars(0, len, data, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        return defineEntity(name, type, data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * Creates and returns an <code>Element</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * @param name the element's name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @return the new <code>Element</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    protected Element defElement(String name, int type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                       boolean omitStart, boolean omitEnd, ContentModel content,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                       String[] exclusions, String[] inclusions, AttributeList atts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        BitSet excl = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        if (exclusions != null && exclusions.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            excl = new BitSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            for (int i = 0; i < exclusions.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
                String str = exclusions[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                if (str.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                    excl.set(getElement(str).getIndex());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        BitSet incl = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        if (inclusions != null && inclusions.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            incl = new BitSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            for (int i = 0; i < inclusions.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                String str = inclusions[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                if (str.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                    incl.set(getElement(str).getIndex());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        return defineElement(name, type, omitStart, omitEnd, content, excl, incl, atts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * Creates and returns an <code>AttributeList</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @param name the attribute list's name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * @return the new <code>AttributeList</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    protected AttributeList defAttributeList(String name, int type, int modifier, String value, String values, AttributeList atts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        Vector vals = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        if (values != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            vals = new Vector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            for (StringTokenizer s = new StringTokenizer(values, "|") ; s.hasMoreTokens() ;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                String str = s.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                if (str.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                    vals.addElement(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        return new AttributeList(name, type, modifier, value, vals, atts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * Creates and returns a new content model.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @param type the type of the new content model
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @return the new <code>ContentModel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    protected ContentModel defContentModel(int type, Object obj, ContentModel next) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        return new ContentModel(type, obj, next);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * Returns a string representation of this DTD.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @return the string representation of this DTD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * The hashtable of DTDs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    static Hashtable dtdHash = new Hashtable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
  public static void putDTDHash(String name, DTD dtd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    dtdHash.put(name, dtd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * Returns a DTD with the specified <code>name</code>.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * a DTD with that name doesn't exist, one is created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * and returned.  Any uppercase characters in the name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * are converted to lowercase.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @param name the name of the DTD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @return the DTD which corresponds to <code>name</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    public static DTD getDTD(String name) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        name = name.toLowerCase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        DTD dtd = (DTD)dtdHash.get(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        if (dtd == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
          dtd = new DTD(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        return dtd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * Recreates a DTD from an archived format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @param in  the <code>DataInputStream</code> to read from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public void read(DataInputStream in) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        if (in.readInt() != FILE_VERSION) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        // Read the list of names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        String[] names = new String[in.readShort()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        for (int i = 0; i < names.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            names[i] = in.readUTF();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        // Read the entities
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        int num = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        for (int i = 0; i < num; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            short nameId = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            int type = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            String name = in.readUTF();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
            defEntity(names[nameId], type | GENERAL, name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        // Read the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        num = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        for (int i = 0; i < num; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
            short nameId = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
            int type = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            byte flags = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            ContentModel m = readContentModel(in, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
            String[] exclusions = readNameArray(in, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            String[] inclusions = readNameArray(in, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
            AttributeList atts = readAttributeList(in, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            defElement(names[nameId], type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                       ((flags & 0x01) != 0), ((flags & 0x02) != 0),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                       m, exclusions, inclusions, atts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    private ContentModel readContentModel(DataInputStream in, String[] names)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        byte flag = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        switch(flag) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            case 0:             // null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            case 1: {           // content_c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
                int type = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                ContentModel m = readContentModel(in, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                ContentModel next = readContentModel(in, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                return defContentModel(type, m, next);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            case 2: {           // content_e
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                int type = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                Element el = getElement(names[in.readShort()]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                ContentModel next = readContentModel(in, names);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                return defContentModel(type, el, next);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                throw new IOException("bad bdtd");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    private String[] readNameArray(DataInputStream in, String[] names)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        int num = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        if (num == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        String[] result = new String[num];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        for (int i = 0; i < num; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            result[i] = names[in.readShort()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    private AttributeList readAttributeList(DataInputStream in, String[] names)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                throws IOException  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        AttributeList result = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        for (int num = in.readByte(); num > 0; --num) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            short nameId = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            int type = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            int modifier = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            short valueId = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            String value = (valueId == -1) ? null : names[valueId];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
            Vector values = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            short numValues = in.readShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            if (numValues > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                values = new Vector(numValues);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
                for (int i = 0; i < numValues; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                    values.addElement(names[in.readShort()]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
result = new AttributeList(names[nameId], type, modifier, value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
                                       values, result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
            // We reverse the order of the linked list by doing this, but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            // that order isn't important.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
}