Package org.apache.xalan.xslt

Source Code of org.apache.xalan.xslt.CountersTable

/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 1999 The Apache Software Foundation.  All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the
*    distribution.
*
* 3. The end-user documentation included with the redistribution,
*    if any, must include the following acknowledgment: 
*       "This product includes software developed by the
*        Apache Software Foundation (http://www.apache.org/)."
*    Alternately, this acknowledgment may appear in the software itself,
*    if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xalan" and "Apache Software Foundation" must
*    not be used to endorse or promote products derived from this
*    software without prior written permission. For written
*    permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
*    nor may "Apache" appear in their name, without prior written
*    permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation and was
* originally based on software copyright (c) 1999, Lotus
* Development Corporation., http://www.lotus.com.  For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
package org.apache.xalan.xslt;

import java.util.Hashtable;
import java.util.Vector;
import org.w3c.dom.Node;
import org.apache.xalan.xpath.XPathSupport;
import org.apache.xalan.xpath.XPath;
import org.apache.xalan.xpath.MutableNodeListImpl;
import org.xml.sax.SAXException;

/**
* <meta name="usage" content="internal"/>
* This is a table of counters, keyed by ElemNumber objects, each
* of which has a list of Counter objects.  This really isn't a true
* table, it is more like a list of lists (there must be a technical
* term for that...).
*/
class CountersTable extends Hashtable
  /**
   * Construct a CountersTable.
   */
  CountersTable()
  {
  }
 
  /**
   * Get the list of counters that corresponds to
   * the given ElemNumber object.
   */
  Vector getCounters(ElemNumber numberElem)
  {
    Vector counters = (Vector)this.get(numberElem);
    return (null == counters) ? putElemNumber(numberElem) : counters;
  }
 
  /**
   * Put a counter into the table and create an empty
   * vector as it's value.
   */
  Vector putElemNumber(ElemNumber numberElem)
  {
    Vector counters = new Vector();
    this.put(numberElem, counters);
    return counters;
  }
 
  /**
   * Place to collect new counters.
   */
  private MutableNodeListImpl m_newFound = new MutableNodeListImpl();
 
  /**
   * Add a list of counted nodes that were built in backwards document
   * order, or a list of counted nodes that are in forwards document
   * order.
   */
  void appendBtoFList(MutableNodeListImpl flist, MutableNodeListImpl blist)
  {
    int n = blist.getLength();
    for(int i = (n-1); i >= 0; i--)
    {
      flist.addNode(blist.item(i));
    }
  }
 
  // For diagnostics
  int m_countersMade = 0;
   
  /**
   * Count forward until the given node is found, or until
   * we have looked to the given amount.
   * @node The node to count.
   * @return The node count, or 0 if not found.
   */
  int countNode(XPathSupport support, ElemNumber numberElem, Node node)
    throws SAXException
  {
    int count = 0;
    Vector counters = getCounters(numberElem);
    int nCounters = counters.size();
    XPath countMatchPattern = numberElem.getCountMatchPattern(support, node);
    XPath fromMatchPattern = numberElem.m_fromMatchPattern;
   
    Node target = numberElem.getTargetNode(support, node);
    if(null != target)
    {
      for(int i = 0; i < nCounters; i++)
      {   
        Counter counter = (Counter)counters.elementAt(i);
       
        count = counter.getPreviouslyCounted(support, target);
        if(count > 0)
          return count;
      }
     
      // In the loop below, we collect the nodes in backwards doc order, so
      // we don't have to do inserts, but then we store the nodes in forwards
      // document order, so we don't have to insert nodes into that list,
      // so that's what the appendBtoFList stuff is all about.  In cases
      // of forward counting by one, this will mean a single node copy from
      // the backwards list (m_newFound) to the forwards list (counter.m_countNodes).
      count = 0;
      for(; null != target; target = numberElem.getPreviousNode(support, target))
      {  
        // First time in, we should not have to check for previous counts,
        // since the original target node was already checked in the
        // block above.
        if(0 != count
        {
          for(int i = 0; i < nCounters; i++)
          {   
            Counter counter = (Counter)counters.elementAt(i);
            int cacheLen = counter.m_countNodes.getLength();
            if((cacheLen > 0) && counter.m_countNodes.item(cacheLen-1).equals(target))
            {
              count += (cacheLen+counter.m_countNodesStartCount);
              if(cacheLen > 0)
                appendBtoFList(counter.m_countNodes, m_newFound);
              m_newFound.removeAllElements();
              return count;
            }
          }
        }
        m_newFound.addNode(target);
        count++;
      }
      // If we got to this point, then we didn't find a counter, so make
      // one and add it to the list.
      Counter counter = new Counter(numberElem);
      m_countersMade++; // for diagnostics
      appendBtoFList(counter.m_countNodes, m_newFound);
      m_newFound.removeAllElements();
      counters.addElement(counter);
    }
   
    return count;
  }
 

}
TOP

Related Classes of org.apache.xalan.xslt.CountersTable

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.