Package org.hibernate.envers.configuration.internal.metadata

Source Code of org.hibernate.envers.configuration.internal.metadata.QueryGeneratorBuilder

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2008, 2013, 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.envers.configuration.internal.metadata;

import java.util.ArrayList;
import java.util.List;

import org.hibernate.MappingException;
import org.hibernate.envers.configuration.internal.AuditEntitiesConfiguration;
import org.hibernate.envers.configuration.internal.GlobalConfiguration;
import org.hibernate.envers.internal.entities.mapper.relation.MiddleComponentData;
import org.hibernate.envers.internal.entities.mapper.relation.MiddleIdData;
import org.hibernate.envers.internal.entities.mapper.relation.query.OneEntityQueryGenerator;
import org.hibernate.envers.internal.entities.mapper.relation.query.RelationQueryGenerator;
import org.hibernate.envers.internal.entities.mapper.relation.query.ThreeEntityQueryGenerator;
import org.hibernate.envers.internal.entities.mapper.relation.query.TwoEntityOneAuditedQueryGenerator;
import org.hibernate.envers.internal.entities.mapper.relation.query.TwoEntityQueryGenerator;
import org.hibernate.envers.strategy.AuditStrategy;

/**
* Builds query generators, for reading collection middle tables, along with any related entities.
* The related entities information can be added gradually, and when complete, the query generator can be built.
*
* @author Adam Warski (adam at warski dot org)
*/
public final class QueryGeneratorBuilder {
  private final GlobalConfiguration globalCfg;
  private final AuditEntitiesConfiguration verEntCfg;
  private final AuditStrategy auditStrategy;
  private final MiddleIdData referencingIdData;
  private final String auditMiddleEntityName;
  private final List<MiddleIdData> idDatas;
  private final boolean revisionTypeInId;

  QueryGeneratorBuilder(
      GlobalConfiguration globalCfg,
      AuditEntitiesConfiguration verEntCfg,
      AuditStrategy auditStrategy,
      MiddleIdData referencingIdData,
      String auditMiddleEntityName,
      boolean revisionTypeInId) {
    this.globalCfg = globalCfg;
    this.verEntCfg = verEntCfg;
    this.auditStrategy = auditStrategy;
    this.referencingIdData = referencingIdData;
    this.auditMiddleEntityName = auditMiddleEntityName;
    this.revisionTypeInId = revisionTypeInId;

    idDatas = new ArrayList<MiddleIdData>();
  }

  void addRelation(MiddleIdData idData) {
    idDatas.add( idData );
  }

  RelationQueryGenerator build(MiddleComponentData... componentDatas) {
    if ( idDatas.size() == 0 ) {
      return new OneEntityQueryGenerator(
          verEntCfg, auditStrategy, auditMiddleEntityName, referencingIdData,
          revisionTypeInId, componentDatas
      );
    }
    else if ( idDatas.size() == 1 ) {
      if ( idDatas.get( 0 ).isAudited() ) {
        return new TwoEntityQueryGenerator(
            globalCfg, verEntCfg, auditStrategy, auditMiddleEntityName, referencingIdData,
            idDatas.get( 0 ), revisionTypeInId, componentDatas
        );
      }
      else {
        return new TwoEntityOneAuditedQueryGenerator(
            verEntCfg, auditStrategy, auditMiddleEntityName, referencingIdData,
            idDatas.get( 0 ), revisionTypeInId, componentDatas
        );
      }
    }
    else if ( idDatas.size() == 2 ) {
      // All entities must be audited.
      if ( !idDatas.get( 0 ).isAudited() || !idDatas.get( 1 ).isAudited() ) {
        throw new MappingException(
            "Ternary relations using @Audited(targetAuditMode = NOT_AUDITED) are not supported."
        );
      }

      return new ThreeEntityQueryGenerator(
          globalCfg, verEntCfg, auditStrategy, auditMiddleEntityName, referencingIdData,
          idDatas.get( 0 ), idDatas.get( 1 ), revisionTypeInId, componentDatas
      );
    }
    else {
      throw new IllegalStateException( "Illegal number of related entities." );
    }
  }

  /**
   * @return Current index of data in the array, which will be the element of a list, returned when executing a query
   *         generated by the built query generator.
   */
  int getCurrentIndex() {
    return idDatas.size();
  }
}
TOP

Related Classes of org.hibernate.envers.configuration.internal.metadata.QueryGeneratorBuilder

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.