All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.xstream.io.path.PathTracker Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2004, 2005, 2006 Joe Walnes.
 * Copyright (C) 2006, 2007, 2009, 2011 XStream Committers.
 * All rights reserved.
 *
 * The software in this package is published under the terms of the BSD
 * style license a copy of which has been included with this distribution in
 * the LICENSE.txt file.
 * 
 * Created on 07. March 2004 by Joe Walnes
 */
package com.feilong.lib.xstream.io.path;

import java.util.HashMap;
import java.util.Map;

/**
 * Maintains the current {@link Path} as a stream is moved through.
 *
 * 

* Can be linked to a {@link com.feilong.lib.xstream.io.HierarchicalStreamWriter} or * {@link com.feilong.lib.xstream.io.HierarchicalStreamReader} by wrapping them with a * {@link PathTrackingWriter} or {@link PathTrackingReader}. *

* *

Example

* *
 * PathTracker tracker = new PathTracker();
 * tracker.pushElement("table");
 * tracker.pushElement("tr");
 * tracker.pushElement("td");
 * tracker.pushElement("form");
 * tracker.popElement("form");
 * tracker.popElement("td");
 * tracker.pushElement("td");
 * tracker.pushElement("div");
 *
 * Path path = tracker.getPath(); // returns "/table/tr/td[2]/div"
 * 
* * @see Path * @see PathTrackingReader * @see PathTrackingWriter * * @author Joe Walnes */ public class PathTracker{ private int pointer; private int capacity; private String[] pathStack; private Map[] indexMapStack; private Path currentPath; public PathTracker(){ this(16); } /** * @param initialCapacity * Size of the initial stack of nodes (one level per depth in the tree). Note that this is * only for optimizations - the stack will resize itself if it exceeds its capacity. If in doubt, * use the other constructor. */ public PathTracker(int initialCapacity){ this.capacity = Math.max(1, initialCapacity); pathStack = new String[capacity]; indexMapStack = new Map[capacity]; } /** * Notify the tracker that the stream has moved into a new element. * * @param name * Name of the element */ public void pushElement(String name){ if (pointer + 1 >= capacity){ resizeStacks(capacity * 2); } pathStack[pointer] = name; Map indexMap = indexMapStack[pointer]; if (indexMap == null){ indexMap = new HashMap(); indexMapStack[pointer] = indexMap; } if (indexMap.containsKey(name)){ indexMap.put(name, new Integer(((Integer) indexMap.get(name)).intValue() + 1)); }else{ indexMap.put(name, new Integer(1)); } pointer++; currentPath = null; } /** * Notify the tracker that the stream has moved out of an element. */ public void popElement(){ indexMapStack[pointer] = null; pathStack[pointer] = null; currentPath = null; pointer--; } /** * Get the last path element from the stack. * * @return the name of the path element * @since 1.4.2 */ public String peekElement(){ return peekElement(0); } /** * Get a path element from the stack. * * @param i * path index * @return the name of the path element * @since 1.4.2 * @throws ArrayIndexOutOfBoundsException * if the index is >= 0 or <= -depth() */ public String peekElement(int i){ if (i < -pointer || i > 0){ throw new ArrayIndexOutOfBoundsException(i); } int idx = pointer + i - 1; final String name; Integer integer = ((Integer) indexMapStack[idx].get(pathStack[idx])); int index = integer.intValue(); if (index > 1){ StringBuffer chunk = new StringBuffer(pathStack[idx].length() + 6); chunk.append(pathStack[idx]).append('[').append(index).append(']'); name = chunk.toString(); }else{ name = pathStack[idx]; } return name; } /** * Get the depth of the stack. * * @return the stack depth * @since 1.4.2 */ public int depth(){ return pointer; } private void resizeStacks(int newCapacity){ String[] newPathStack = new String[newCapacity]; Map[] newIndexMapStack = new Map[newCapacity]; int min = Math.min(capacity, newCapacity); System.arraycopy(pathStack, 0, newPathStack, 0, min); System.arraycopy(indexMapStack, 0, newIndexMapStack, 0, min); pathStack = newPathStack; indexMapStack = newIndexMapStack; capacity = newCapacity; } /** * Current Path in stream. */ public Path getPath(){ if (currentPath == null){ String[] chunks = new String[pointer + 1]; chunks[0] = ""; for (int i = -pointer; ++i <= 0;){ final String name = peekElement(i); chunks[i + pointer] = name; } currentPath = new Path(chunks); } return currentPath; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy