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

org.hibernate.hql.spi.id.MultiTableBulkIdStrategy Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.hql.spi.id;

import org.hibernate.boot.spi.MetadataImplementor;
import org.hibernate.boot.spi.SessionFactoryOptions;
import org.hibernate.engine.jdbc.connections.spi.JdbcConnectionAccess;
import org.hibernate.engine.jdbc.spi.JdbcServices;
import org.hibernate.engine.spi.QueryParameters;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.hql.internal.ast.HqlSqlWalker;
import org.hibernate.persister.entity.Queryable;

/**
 * Generalized strategy contract for handling multi-table bulk HQL operations.
 *
 * @author Steve Ebersole
 */
public interface MultiTableBulkIdStrategy {
	/**
	 * Prepare the strategy.  Called as the SessionFactory is being built.  Intended patterns here include:
    *
  • Adding tables to the passed Mappings, to be picked by by "schema management tools"
  • *
  • Manually creating the tables immediately through the passed JDBC Connection access
  • *
* @param jdbcServices The JdbcService object * @param connectionAccess Access to the JDBC Connection * @param metadata Access to the O/RM mapping information * @param sessionFactoryOptions */ void prepare( JdbcServices jdbcServices, JdbcConnectionAccess connectionAccess, MetadataImplementor metadata, SessionFactoryOptions sessionFactoryOptions); /** * Release the strategy. Called as the SessionFactory is being shut down. * * @param jdbcServices The JdbcService object * @param connectionAccess Access to the JDBC Connection */ void release(JdbcServices jdbcServices, JdbcConnectionAccess connectionAccess); /** * Handler for dealing with multi-table HQL bulk update statements. */ interface UpdateHandler { Queryable getTargetedQueryable(); String[] getSqlStatements(); int execute(SharedSessionContractImplementor session, QueryParameters queryParameters); } /** * Build a handler capable of handling the bulk update indicated by the given walker. * * @param factory The SessionFactory * @param walker The AST walker, representing the update query * * @return The handler */ UpdateHandler buildUpdateHandler(SessionFactoryImplementor factory, HqlSqlWalker walker); /** * Handler for dealing with multi-table HQL bulk delete statements. */ interface DeleteHandler { Queryable getTargetedQueryable(); String[] getSqlStatements(); int execute(SharedSessionContractImplementor session, QueryParameters queryParameters); } /** * Build a handler capable of handling the bulk delete indicated by the given walker. * * @param factory The SessionFactory * @param walker The AST walker, representing the delete query * * @return The handler */ DeleteHandler buildDeleteHandler(SessionFactoryImplementor factory, HqlSqlWalker walker); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy