blob: 9afc889164fc8530de78b9adfe6ec118b6294627 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.internal.jpa.transaction;
import jakarta.persistence.EntityTransaction;
import jakarta.persistence.TransactionRequiredException;
import org.eclipse.persistence.internal.jpa.EntityManagerImpl;
import org.eclipse.persistence.internal.jpa.transaction.EntityTransactionImpl;
import org.eclipse.persistence.internal.localization.ExceptionLocalization;
import org.eclipse.persistence.internal.sessions.UnitOfWorkImpl;
import org.eclipse.persistence.exceptions.TransactionException;
/**
* INTERNAL:
* JDK 1.5 specific version of EntityTransactionWrapper. Differs from the JDK 1.4 version
* in that it implements a different version of the TransactionWrapper interface,
* uses a different EntityManager, and returns a different EntityTransaction version.
*
* @see org.eclipse.persistence.internal.jpa.transaction.EntityTransactionWrapper
*/
public class EntityTransactionWrapper extends TransactionWrapperImpl implements TransactionWrapper {
protected EntityTransactionImpl entityTransaction;
public EntityTransactionWrapper(EntityManagerImpl entityManager) {
super(entityManager);
}
/**
* INTERNAL:
* This method will be used to check for a transaction and throws exception if none exists.
* If this method returns without exception then a transaction exists.
* This method must be called before accessing the localUOW.
*/
@Override
public Object checkForTransaction(boolean validateExistence){
if (entityTransaction != null && entityTransaction.isActive()) {
return entityTransaction;
}
if (validateExistence){
throwCheckTransactionFailedException();
}
return null;
}
public EntityManagerImpl getEntityManager(){
return entityManager;
}
/**
* Lazy initialize the EntityTransaction.
* There can only be one EntityTransaction at a time.
*/
@Override
public EntityTransaction getTransaction(){
if (entityTransaction == null){
entityTransaction = new EntityTransactionImpl(this);
}
return entityTransaction;
}
@Override
public boolean isJoinedToTransaction(UnitOfWorkImpl uow){
return (entityTransaction != null) && entityTransaction.isActive();
}
/**
* Mark the current transaction so that the only possible
* outcome of the transaction is for the transaction to be
* rolled back.
* This is an internal method and if the txn is not active will do nothing
*/
@Override
public void setRollbackOnlyInternal(){
if (this.getTransaction().isActive()){
this.getTransaction().setRollbackOnly();
}
}
protected void throwCheckTransactionFailedException() {
throw new TransactionRequiredException(TransactionException.transactionNotActive().getMessage());
}
@Override
public void registerIfRequired(UnitOfWorkImpl uow){
throw new TransactionRequiredException(ExceptionLocalization.buildMessage("join_trans_called_on_entity_trans"));// no JTA transactions availab
}
}