Package org.hibernate.collection.internal

Source Code of org.hibernate.collection.internal.PersistentIndexedElementHolder

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2008-2011, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors.  All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* 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 Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA  02110-1301  USA
*/
package org.hibernate.collection.internal;

import java.io.Serializable;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import org.hibernate.AssertionFailure;
import org.hibernate.HibernateException;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.engine.spi.SessionImplementor;
import org.hibernate.loader.CollectionAliases;
import org.hibernate.persister.collection.CollectionPersister;
import org.hibernate.type.Type;
import org.hibernate.type.XmlRepresentableType;

import org.dom4j.Element;

/**
* A persistent wrapper for an XML element
*
* @author Gavin King
*
* @deprecated To be removed in 5.  Removed as part of removing the notion of DOM entity-mode.  See Jira issues
* <a href="https://hibernate.onjira.com/browse/HHH-7782">HHH-7782</a> and
* <a href="https://hibernate.onjira.com/browse/HHH-7783">HHH-7783</a> for more information.
*/
@Deprecated
public abstract class PersistentIndexedElementHolder extends AbstractPersistentCollection {
  protected Element element;

  /**
   * Constructs a PersistentIndexedElementHolder.
   *
   * @param session The session
   * @param element The DOM element being wrapped
   */
  public PersistentIndexedElementHolder(SessionImplementor session, Element element) {
    super( session );
    this.element = element;
    setInitialized();
  }

  /**
   * Constructs a PersistentIndexedElementHolder.
   *
   * @param session The session
   * @param persister The collection persister
   * @param key The collection key (fk value)@throws HibernateException
   */
  public PersistentIndexedElementHolder(SessionImplementor session, CollectionPersister persister, Serializable key) {
    super( session );
    final Element owner = (Element) session.getPersistenceContext().getCollectionOwner( key, persister );
    if ( owner == null ) {
      throw new AssertionFailure( "null owner" );
    }

    final String nodeName = persister.getNodeName();
    if ( ".".equals( nodeName ) ) {
      element = owner;
    }
    else {
      element = owner.element( nodeName );
      if ( element == null ) {
        element = owner.addElement( nodeName );
      }
    }
  }

  /**
   * A struct representing the index/value pair.
   */
  public static final class IndexedValue {
    final String index;
    final Object value;

    IndexedValue(String index, Object value) {
      this.index = index;
      this.value = value;
    }
  }
 
  protected static String getIndex(Element element, String indexNodeName, int i) {
    if ( indexNodeName != null ) {
      return element.attributeValue( indexNodeName );
    }
    else {
      return Integer.toString( i );
    }
  }
 
  protected static void setIndex(Element element, String indexNodeName, String index) {
    if ( indexNodeName != null ) {
      element.addAttribute( indexNodeName, index );
    }
  }

  protected static String getIndexAttributeName(CollectionPersister persister) {
    final String node = persister.getIndexNodeName();
    return node == null ? null : node.substring( 1 );
  }

  @Override
  @SuppressWarnings({"unchecked", "deprecation"})
  public Serializable getSnapshot(CollectionPersister persister) throws HibernateException {
    final Type elementType = persister.getElementType();
    final String indexNode = getIndexAttributeName( persister );
    final List elements = element.elements( persister.getElementNodeName() );
    final HashMap snapshot = new HashMap( elements.size() );
    for ( int i=0; i<elements.size(); i++ ) {
      final Element elem = (Element) elements.get( i );
      final Object value = elementType.fromXMLNode( elem, persister.getFactory() );
      final Object copy = elementType.deepCopy( value, persister.getFactory() );
      snapshot.put( getIndex( elem, indexNode, i ), copy );
    }
    return snapshot;
   
  }

  @Override
  public Collection getOrphans(Serializable snapshot, String entityName) {
    //orphan delete not supported for EntityMode.DOM4J
    return Collections.EMPTY_LIST;
  }

  @Override
  public boolean isWrapper(Object collection) {
    return element==collection;
  }

  @Override
  @SuppressWarnings("deprecation")
  public boolean equalsSnapshot(CollectionPersister persister) throws HibernateException {
    final Type elementType = persister.getElementType();
    final String indexNode = getIndexAttributeName( persister );
    final HashMap snapshot = (HashMap) getSnapshot();
    final List elements = element.elements( persister.getElementNodeName() );

    if ( snapshot.size() !=  elements.size() ) {
      return false;
    }

    for ( int i=0; i<snapshot.size(); i++ ) {
      final Element elem = (Element) elements.get( i );
      final Object old = snapshot.get( getIndex( elem, indexNode, i ) );
      final Object current = elementType.fromXMLNode( elem, persister.getFactory() );
      if ( elementType.isDirty( old, current, getSession() ) ) {
        return false;
      }
    }
    return true;
  }

  @Override
  public boolean isSnapshotEmpty(Serializable snapshot) {
    return ( (HashMap) snapshot ).isEmpty();
  }

  @Override
  public boolean empty() {
    return !element.elementIterator().hasNext();
  }

  @Override
  @SuppressWarnings({"deprecation", "unchecked"})
  public Object readFrom(ResultSet rs, CollectionPersister persister, CollectionAliases descriptor, Object owner)
      throws HibernateException, SQLException {
    final Object object = persister.readElement( rs, owner, descriptor.getSuffixedElementAliases(), getSession() );
    final Type elementType = persister.getElementType();
    final SessionFactoryImplementor factory = persister.getFactory();
    final String indexNode = getIndexAttributeName( persister );

    final Element elem = element.addElement( persister.getElementNodeName() );
    elementType.setToXMLNode( elem, object, factory );

    final Type indexType = persister.getIndexType();
    final Object indexValue = persister.readIndex( rs, descriptor.getSuffixedIndexAliases(), getSession() );
    final String index = ( (XmlRepresentableType) indexType ).toXMLString( indexValue, factory );
    setIndex( elem, indexNode, index );
    return object;
  }

  @Override
  @SuppressWarnings({"deprecation", "unchecked"})
  public Iterator entries(CollectionPersister persister) {
    final Type elementType = persister.getElementType();
    final String indexNode = getIndexAttributeName( persister );
    final List elements =  element.elements( persister.getElementNodeName() );
    final int length = elements.size();
    final List result = new ArrayList( length );
    for ( int i=0; i<length; i++ ) {
      final Element elem = (Element) elements.get( i );
      final Object object = elementType.fromXMLNode( elem, persister.getFactory() );
      result.add( new IndexedValue( getIndex( elem, indexNode, i ), object ) );
    }
    return result.iterator();
  }

  @Override
  public void beforeInitialize(CollectionPersister persister, int anticipatedSize) {
  }

  @Override
  public boolean isDirectlyAccessible() {
    return true;
  }

  @Override
  public Object getValue() {
    return element;
  }

  @Override
  @SuppressWarnings({"deprecation", "unchecked"})
  public Iterator getDeletes(CollectionPersister persister, boolean indexIsFormula) throws HibernateException {
    final Type indexType = persister.getIndexType();
    final HashMap snapshot = (HashMap) getSnapshot();
    final HashMap deletes = (HashMap) snapshot.clone();
    deletes.keySet().removeAll( ( (HashMap) getSnapshot( persister ) ).keySet() );
    final ArrayList deleteList = new ArrayList( deletes.size() );
    for ( Object o : deletes.entrySet() ) {
      final Map.Entry me = (Map.Entry) o;
      final Object object = indexIsFormula
          ? me.getValue()
          : ( (XmlRepresentableType) indexType ).fromXMLString( (String) me.getKey(), persister.getFactory() );
      if ( object != null ) {
        deleteList.add( object );
      }
    }
    return deleteList.iterator();
  }

  @Override
  public boolean needsInserting(Object entry, int i, Type elementType) throws HibernateException {
    final HashMap snapshot = (HashMap) getSnapshot();
    final IndexedValue iv = (IndexedValue) entry;
    return iv.value!=null && snapshot.get( iv.index )==null;
  }

  @Override
  public boolean needsUpdating(Object entry, int i, Type elementType) throws HibernateException {
    final HashMap snapshot = (HashMap) getSnapshot();
    final IndexedValue iv = (IndexedValue) entry;
    final Object old = snapshot.get( iv.index );
    return old!=null && elementType.isDirty( old, iv.value, getSession() );
  }

  @Override
  @SuppressWarnings("deprecation")
  public Object getIndex(Object entry, int i, CollectionPersister persister) {
    final String index = ( (IndexedValue) entry ).index;
    final Type indexType = persister.getIndexType();
    return ( (XmlRepresentableType) indexType ).fromXMLString( index, persister.getFactory() );
  }

  @Override
  public Object getElement(Object entry) {
    return ( (IndexedValue) entry ).value;
  }

  @Override
  public Object getSnapshotElement(Object entry, int i) {
    return ( (HashMap) getSnapshot() ).get( ( (IndexedValue) entry ).index );
  }

  @Override
  public boolean entryExists(Object entry, int i) {
    return entry!=null;
  }

}
TOP

Related Classes of org.hibernate.collection.internal.PersistentIndexedElementHolder

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.