com.caucho.transaction.UserTransactionProxy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resin-kernel Show documentation
Show all versions of resin-kernel Show documentation
Kernel for Resin Java Application Server
The newest version!
/*
* Copyright (c) 1998-2012 Caucho Technology -- all rights reserved
*
* This file is part of Resin(R) Open Source
*
* Each copy or derived work must preserve the copyright notice and this
* notice unmodified.
*
* Resin Open Source 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.
*
* Resin Open Source 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, or any warranty
* of NON-INFRINGEMENT. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with Resin Open Source; if not, write to the
*
* Free Software Foundation, Inc.
* 59 Temple Place, Suite 330
* Boston, MA 02111-1307 USA
*
* @author Scott Ferguson
*/
package com.caucho.transaction;
import javax.transaction.HeuristicMixedException;
import javax.transaction.HeuristicRollbackException;
import javax.transaction.InvalidTransactionException;
import javax.transaction.NotSupportedException;
import javax.transaction.RollbackException;
import javax.transaction.SystemException;
import javax.transaction.Transaction;
import javax.transaction.TransactionManager;
import javax.transaction.UserTransaction;
import javax.transaction.xa.XAException;
import javax.transaction.xa.XAResource;
import com.caucho.config.inject.SingletonBindingHandle;
/**
* Implementation of the UserTransactionImpl for a thread instance.
*/
@SuppressWarnings("serial")
public class UserTransactionProxy
implements UserTransaction, TransactionManager,
java.io.Serializable
{
/*
private static final EnvironmentLocal _localUT =
new EnvironmentLocal();
*/
private static final UserTransactionProxy _proxy
= new UserTransactionProxy();
private static final ThreadLocal _threadTransaction
= new ThreadLocal();
/**
* Creates the proxy.
*/
private UserTransactionProxy()
{
/*
if (_localUT.getLevel() == null)
_localUT.set(this);
*/
}
/**
* Returns the local UT proxy.
*/
public static UserTransactionProxy getInstance()
{
//return _localUT.get();
return _proxy;
}
/**
* Returns the local UT proxy.
*/
public static UserTransactionProxy getCurrent()
{
//return _localUT.get();
return _proxy;
}
/**
* Gets the thread transaction.
*/
public UserTransactionImpl getUserTransaction()
{
UserTransactionImpl xa = _threadTransaction.get();
if (xa == null) {
xa = new UserTransactionImpl(TransactionManagerImpl.getLocal());
_threadTransaction.set(xa);
}
xa.setInContext(true);
return xa;
}
/**
* Gets the current thread transaction.
*/
public UserTransactionImpl getCurrentUserTransactionImpl()
{
return _threadTransaction.get();
}
/**
* Sets the transaction's timeout.
*/
public void setTransactionTimeout(int seconds)
throws SystemException
{
getUserTransaction().setTransactionTimeout(seconds);
}
/**
* Gets the transaction's status
*/
public int getStatus()
throws SystemException
{
return getUserTransaction().getStatus();
}
/**
* Start the transaction.
*/
public void begin()
throws NotSupportedException, SystemException
{
getUserTransaction().begin();
}
/**
* Marks the transaction as rollback only.
*/
@Override
public void setRollbackOnly()
throws IllegalStateException, SystemException
{
getUserTransaction().setRollbackOnly();
}
/**
* Marks the transaction as rollback only.
*/
public void setRollbackOnly(Exception e)
throws IllegalStateException
{
getUserTransaction().setRollbackOnly(e);
}
/**
* Commits the transaction
*/
public void commit()
throws IllegalStateException, RollbackException, HeuristicMixedException,
HeuristicRollbackException, SecurityException, SystemException
{
getUserTransaction().commit();
}
/**
* Rolls the transaction back
*/
public void rollback()
throws IllegalStateException, SecurityException, SystemException
{
getUserTransaction().rollback();
}
/**
* Finish any transaction.
*/
public void abortTransaction()
throws IllegalStateException
{
UserTransactionImpl xa = _threadTransaction.get();
if (xa == null)
return;
xa.abortTransaction();
}
/**
* Recovers an XAResource
*/
public void recover(XAResource xaRes)
throws XAException
{
TransactionManagerImpl.getLocal().recover(xaRes);
}
//
// TransactionManager compatibility. These should not be used by
// application code.
//
/**
* Returns the current transaction.
*/
public Transaction getTransaction()
throws SystemException
{
return TransactionManagerImpl.getLocal().getTransaction();
}
/**
* Suspends the transaction.
*/
public Transaction suspend()
throws SystemException
{
return TransactionManagerImpl.getLocal().suspend();
}
/**
* Resume a transaction.
*/
public void resume(Transaction transaction)
throws IllegalStateException, InvalidTransactionException, SystemException
{
TransactionManagerImpl.getLocal().resume(transaction);
}
/**
* Serialization handle
*/
private Object writeReplace()
{
return new SingletonBindingHandle(UserTransaction.class);
}
public String toString()
{
return getClass().getSimpleName() + "[]";
}
}