You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by pb...@apache.org on 2003/12/28 04:58:54 UTC

cvs commit: xml-fop/src/java/org/apache/fop/xml XMLNamespaces.java

pbwest      2003/12/27 19:58:54

  Modified:    src/java/org/apache/fop/xml Tag: FOP_0-20-0_Alt-Design
                        XMLNamespaces.java
  Log:
  Change pre-installed namespace URIs - remove XLink and
  include FOX.
  Define SEQ_BITS as 18 for tracking pool usage. (This and
  related seqMask and getSequence()should probably be
  elsewhere.)
  intern() URI string.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.2   +19 -13    xml-fop/src/java/org/apache/fop/xml/Attic/XMLNamespaces.java
  
  Index: XMLNamespaces.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/xml/Attic/XMLNamespaces.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- XMLNamespaces.java	5 Jul 2003 19:12:36 -0000	1.1.2.1
  +++ XMLNamespaces.java	28 Dec 2003 03:58:54 -0000	1.1.2.2
  @@ -75,13 +75,13 @@
       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 @@
        */
       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 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 @@
               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
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org