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

com.ximpleware.extended.BookMarkHuge Maven / Gradle / Ivy

Go to download

XimpleWare's VTD-XML is, far and away, the industry's most advanced and powerful XML processing model for SOA and Cloud Computing

The newest version!
/* 
 * Copyright (C) 2002-2016 XimpleWare, [email protected]
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
/*VTD-XML is protected by US patent 7133857, 7260652, an 7761459*/
/* BookMarkHuge is based on (and inspired by) the concept and 
 * implementation contributed by Rodrigo Cunha. It corresponds 
 * to a single node position of VTDNavHuge's cursor. It is adapted to
 * supported extended VTD (256 GB file size) 
 * 
 * setCursorPosition(VTDNavHuge vn) sets the node position of vn. 
 * setCursorPosition() sets the node position of the BookMark object's embedded 
 * VTDNavHuge object
 * 
 * recordCursorPosition(VTDNavHuge vn) records the node position of the VTDNavHuge
 * Object.
 * 
 * recordCursorPosition() records the node position of the BookMarkHuge object's 
 * embedded VTDNavHuge object
 * 
 * BookMarkHuge(VTDNavHuge vn) implicitly sets the node position for 
 * the created BookMark instance.
 */
package com.ximpleware.extended;
/**
 * BookmarkHue is a single instance of a node position.
 * You can save the cursor's position into a BookMarkHuge instance
 * You can also point the cursor to the node position of  previously 
 * saved BookMarkHuge instance. 
 * 
 */
public class BookMarkHuge {
    VTDNavHuge vn1; // the reference to the corresponding VTDNav object
    int ba[];
    /**
     * Constructor for BookMarkHuge
     * Take no argument
     * 
     */
    public BookMarkHuge(){
        ba = null;
        vn1 = null;
    }
    
    /**
     * separate a bookMark object apart from its embedded
     * VTDNavHuge instance 
     *
     */
    public void unbind(){
        vn1 = null;
    }
    
    /**
     * bind a BookMarkHuge object to a VTDNavHuge object
     * the cursor position is set to an invalid state
     * @param vn
     *
     */
    public void bind(VTDNavHuge vn){
        if (vn==null)
            throw new IllegalArgumentException("vn can't be null");
        vn1 = vn;
        if (ba == null || vn.nestingLevel+8 != ba.length)
            ba = new int[vn.nestingLevel + 8];    
        ba[0]= -2 ; // this would never happen in a VTDNav obj's context
    }
    
    /**
     * This method returns the embedded VTDNavHuge Object 
     * @return VTDNavHuge
     *
     */
    public VTDNavHuge getNav(){
        return vn1;
    }
    
    /**
     * BookMarkHuge constructor with an instance of vn
     * as input
     * @param vn
     */
    public BookMarkHuge(VTDNavHuge vn){
       bind(vn);
       recordCursorPosition(vn);
    }
    
    /**
     * set cursor position
     * This method can only set the cursor position
     * of an VTDNavHuge object identical to its internal copy 
     * @param vn
     * @return
     *
     */
    public boolean setCursorPosition(VTDNavHuge vn){
        if (vn1 != vn || ba == null || ba[0] == -2)
            return false;
        for (int i = 0; i < vn.nestingLevel; i++) {
			vn.context[i] = ba[i];
		}

		vn.l1index = ba[vn.nestingLevel];
		vn.l2index = ba[vn.nestingLevel + 1];
		vn.l3index = ba[vn.nestingLevel + 2];
		vn.l2lower = ba[vn.nestingLevel + 3];
		vn.l2upper = ba[vn.nestingLevel + 4];
		vn.l3lower = ba[vn.nestingLevel + 5];
		vn.l3upper = ba[vn.nestingLevel + 6];
		if (ba[vn.nestingLevel+7] < 0){
		    vn.atTerminal = true;		    
		} else
		    vn.atTerminal = false;
		
		vn.LN = ba[vn.nestingLevel+7] & 0x7fffffff;
		return true;
    }
    
    /**
     * Set the cursor position of VTDNavHuge object corresponding to the internal reference
     * position of the embedded VTDNavHuge object 
     * @return
     *
     */
    public boolean setCursorPosition(){
        return setCursorPosition(vn1);
    }
    /**
     * Record the cursor position
     * This method is implemented to be lenient on loading in
     * that it can load nodes from any VTDNavHuge object
     * if vn is null, return false
     * 
     * @param vn
     * @return
     *
     */
    public boolean recordCursorPosition(VTDNavHuge vn){
        if (vn == null)
            return false;
        if (vn== vn1){
            
        }else {
            bind(vn);
        }
        for (int i = 0; i < vn.nestingLevel; i++) {
            ba[i] = vn1.context[i];
		}

		ba[vn.nestingLevel]= vn.l1index ;
		ba[vn.nestingLevel + 1]= vn.l2index ;
		ba[vn.nestingLevel + 2]= vn.l3index ;
		ba[vn.nestingLevel + 3]= vn.l2lower ;
		ba[vn.nestingLevel + 4]= vn.l2upper ;
		ba[vn.nestingLevel + 5]= vn.l3lower ;
		ba[vn.nestingLevel + 6]= vn.l3upper ;
		//ba[vn.nestingLevel + 7]=(vn.atTerminal == true)?1:0;
		ba[vn.nestingLevel + 7]= 
		    (vn.atTerminal == true)? 
		        (vn.LN | 0x80000000) : vn.LN ;
        return true;
    }
    /**
     * Record cursor position of the VTDNavHuge object as embedded in the
     * bookmark
     *   
     * @return
     *
     */
    public boolean recordCursorPosition(){
        return recordCursorPosition(vn1);
    }
    
    /**
     * Compare the bookmarks to ensure they represent the same
     * node in the same VTDNavHuge instance
     * @param bm2
     * @return
     */
    public final boolean deepEquals(BookMarkHuge bm2) {
        if (bm2.vn1 == this.vn1){
            if (bm2.ba[bm2.ba[0]]==this.ba[this.ba[0]]){
            	if (this.ba[this.vn1.nestingLevel+7] < 0){
            		if (this.ba[this.vn1.nestingLevel+7]
            		            != bm2.ba[this.vn1.nestingLevel+7])
            			return false;
            	}
                return true;
            }
        }
        return false;
    }

    /**
     * Compare the bookmarks to ensure they represent the same
     * node in the same VTDNavHuge instance
     * @param bm2
     * @return
     */
    public final boolean equals(BookMarkHuge bm2) {
        if (this == bm2)
            return true;
        return deepEquals(bm2);
    }

    /**
     * Compare two bookmarks to ensure they represent the same
     * node in the same VTDNavHuge instance
     */
    public final boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (!(obj instanceof BookMarkHuge))
            return false;
        return deepEquals((BookMarkHuge) obj);
    }
    
    /**
     * Returns the hash code which is a unique integer for every node
     */
    public final int hashCode(){
        if (ba == null || vn1==null || ba[0]==-2)
            return -2;
        if (vn1.atTerminal)
        	return vn1.LN;
        if (ba[0]==1)
            return vn1.rootIndex;
        return ba[ba[0]];
    }
    
       /**
     * Compare the node positions of two bookMarkHuge objects
     * @param bm1
     * @return
     */
    public boolean compare(BookMarkHuge bm1){
    	
    	/*for (int i = 0; i < vn1.nestingLevel; i++) {
            ba[i] = bm1.ba[i];
		}    	
    	if (vn1.getCurrentDepth()>)*/
    	for (int i = 0; i < vn1.nestingLevel+6; i++) {
           if(ba[i] != bm1.ba[i])
        	   return false;
		}
		
    	return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy