]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Change pre-installed namespace URIs - remove XLink and
authorPeter Bernard West <pbwest@apache.org>
Sun, 28 Dec 2003 03:58:54 +0000 (03:58 +0000)
committerPeter Bernard West <pbwest@apache.org>
Sun, 28 Dec 2003 03:58:54 +0000 (03:58 +0000)
include FOX.
Define SEQ_BITS as 18 for tracking pool usage. (This and
related seqMask and getSequence()should probably be
elsewhere.)
intern() URI string.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197062 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/xml/XMLNamespaces.java

index 0aa77cc327f073f6979701505db80ebeea844db4..f4f533647a1d33f299d7e5814585675d948a0f35 100644 (file)
@@ -75,13 +75,13 @@ public class XMLNamespaces {
     public static final String DefAttrNSpace = "";
     public static final String XSLNamespace =
         "http://www.w3.org/1999/XSL/Format";
+    public static final String FOXNamespace =
+        "http://xml.apache.org/fop/extensions";
     public static final String SVGNamespace = "http://www.w3.org/2000/svg";
-    public static final String XlinkNamespace =
-        "http://www.w3.org/1999/xlink";
     public static final int DefAttrNSIndex = 0;
     public static final int XSLNSpaceIndex = 1;
-    public static final int SVGNSpaceIndex = 2;
-    public static final int XLinkNSpaceIndex = 3;
+    public static final int FOXNSpaceIndex = 2;
+    public static final int SVGNSpaceIndex = 3;
 
     /**
      * A <tt>HashMap</tt> mapping a namespace URI to an <tt>int</tt>
@@ -122,10 +122,16 @@ public class XMLNamespaces {
      */
     private int sequence = 0;
 
+    /**
+     * Number of bits in the sequence mask.  This value will determine
+     * the number of sequence values the pool will track.
+     */
+    private static final int SEQ_BITS = 18;
+
     /** Mask to restrict the range of values within which <i>sequence</i>
      * may cycle.
      */
-    public final int seqMask = (1 << 20) - 1;
+    public final int seqMask = (1 << SEQ_BITS) - 1;
 
     /**
      * The access function for the sequence.
@@ -138,16 +144,16 @@ public class XMLNamespaces {
     }
 
     public XMLNamespaces() {
-        uriIndices = new HashMap(4);
-        uris = new ArrayList(4);
+        uriIndices = new HashMap((int)(6/0.75));
+        uris = new ArrayList(6);
         uriIndices.put(DefAttrNSpace, Ints.consts.get(DefAttrNSIndex));
         uris.add(DefAttrNSIndex, DefAttrNSpace);
         uriIndices.put(XSLNamespace, Ints.consts.get(XSLNSpaceIndex));
         uris.add(XSLNSpaceIndex, XSLNamespace);
+        uriIndices.put(FOXNamespace, Ints.consts.get(FOXNSpaceIndex));
+        uris.add(FOXNSpaceIndex, FOXNamespace);
         uriIndices.put(SVGNamespace, Ints.consts.get(SVGNSpaceIndex));
         uris.add(SVGNSpaceIndex, SVGNamespace);
-        uriIndices.put(XlinkNamespace, Ints.consts.get(XLinkNSpaceIndex));
-        uris.add(XLinkNSpaceIndex, XlinkNamespace);
     }
 
     /**
@@ -171,7 +177,7 @@ public class XMLNamespaces {
             i = uris.size();
             //System.out.println("****Adding namespace " + uri + " " + i);
             uriIndices.put(uri, Ints.consts.get(i));
-            uris.add(i, uri);
+            uris.add(i, uri.intern());
             return i;
         }
         // not null - found the integer