/*
* JBoss, Home of Professional Open Source.
* Copyright 2006, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.tm;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;
import javax.management.ObjectName;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.Name;
import javax.naming.Reference;
import javax.naming.spi.ObjectFactory;
import javax.transaction.TransactionManager;
import javax.transaction.xa.XAException;
import org.jboss.logging.Logger;
import org.jboss.system.ServiceMBeanSupport;
import org.jboss.tm.integrity.TransactionIntegrityFactory;
/**
* This is a JMX service which manages the TransactionManager.
* The service creates it and binds a Reference to it into JNDI.
*
* @see TxManager
* @author Rickard Öberg
* @author Ole Husgaard
* @author Toby Allsopp
* @author Francisco Reverbel
* @version $Revision: 57208 $
*
* @jmx.mbean extends="org.jboss.system.ServiceMBean"
*/
public class TransactionManagerService
extends ServiceMBeanSupport
implements TransactionManagerServiceMBean, ObjectFactory
{
// Constants -----------------------------------------------------
public static String JNDI_NAME = "java:/TransactionManager";
public static String JNDI_IMPORTER = "java:/TransactionPropagationContextImporter";
public static String JNDI_EXPORTER = "java:/TransactionPropagationContextExporter";
// Attributes ----------------------------------------------------
private boolean globalIdsEnabled = false; // flag duplicated in TM
/** Whether to interrupt threads at transaction timeout */
private boolean interruptThreads = false;
private int timeout = 300; // default tx timeout, dupl. in TM when it exists.
//private String xidClassName = null;
private ObjectName xidFactory;
/** The integrity factory */
private TransactionIntegrityFactory integrityFactory;
private final Map xaExceptionFormatters = new HashMap();
// Static --------------------------------------------------------
static TxManager tm;
// ServiceMBeanSupport overrides ---------------------------------
protected void startService()
throws Exception
{
XidFactoryMBean xidFactoryObj = (XidFactoryMBean) getServer().getAttribute(xidFactory, "Instance");
TransactionImpl.xidFactory = xidFactoryObj;
TransactionImpl.txManagerService = this;
// Get a reference to the TxManager singleton.
tm = TxManager.getInstance();
// Set its default timeout.
tm.setDefaultTransactionTimeout(timeout);
// Initialize its globalIdsEnabled flag.
tm.setGlobalIdsEnabled(globalIdsEnabled);
tm.setInterruptThreads(interruptThreads);
if (integrityFactory != null)
tm.setTransactionIntegrity(integrityFactory.createTransactionIntegrity());
else
tm.setTransactionIntegrity(null);
// Bind reference to TM in JNDI
// Our TM also implement the tx importer and exporter
// interfaces, so we bind it under those names too.
// Other transaction managers may have seperate
// implementations of these objects, so they are
// accessed under seperate names.
bindRef(JNDI_NAME, "org.jboss.tm.TxManager");
bindRef(JNDI_IMPORTER, "org.jboss.tm.TransactionPropagationContextImporter");
bindRef(JNDI_EXPORTER, "org.jboss.tm.TransactionPropagationContextFactory");
}
protected void stopService()
{
try
{
// Remove TM, importer and exporter from JNDI
Context ctx = new InitialContext();
ctx.unbind(JNDI_NAME);
ctx.unbind(JNDI_IMPORTER);
ctx.unbind(JNDI_EXPORTER);
}
catch (Exception e)
{
log.error("Failed to clear JNDI bindings", e);
}
}
/**
* Describe getGlobalIdsEnabled
method here.
*
* @return an boolean
value
* @jmx:managed-attribute
*/
public boolean getGlobalIdsEnabled()
{
return globalIdsEnabled;
}
/**
* Describe setGlobalIdsEnabled
method here.
*
* @param newValue an boolean
value
* @jmx:managed-attribute
*/
public void setGlobalIdsEnabled(boolean newValue)
{
globalIdsEnabled = newValue;
if (tm != null) // Update TM setting
tm.setGlobalIdsEnabled(newValue);
}
/**
* Is thread interruption enabled at transaction timeout
*
* @jmx:managed-attribute
* @return true for interrupt threads, false otherwise
*/
public boolean isInterruptThreads()
{
return interruptThreads;
}
/**
* Enable/disable thread interruption at transaction timeout.
*
* @jmx:managed-attribute
* @param interruptThreads pass true to interrupt threads, false otherwise
*/
public void setInterruptThreads(boolean interruptThreads)
{
this.interruptThreads = interruptThreads;
if (tm != null)
tm.setInterruptThreads(interruptThreads);
}
/**
* Describe getTransactionTimeout
method here.
*
* @return an int
value
* @jmx:managed-attribute
*/
public int getTransactionTimeout()
{
if (tm != null) // Get timeout value from TM (in case it was changed).
timeout = tm.getDefaultTransactionTimeout();
return timeout;
}
/**
* Describe setTransactionTimeout
method here.
*
* @param timeout an int
value
* @jmx:managed-attribute
*/
public void setTransactionTimeout(int timeout)
{
this.timeout = timeout;
if (tm != null) // Update TM default timeout
tm.setDefaultTransactionTimeout(timeout);
}
/**
* Set the Transaction integrity factory
*
* @param factory the factory
*/
public void setTransactionIntegrityFactory(TransactionIntegrityFactory factory)
{
this.integrityFactory = factory;
if (tm != null)
{
if (factory != null)
tm.setTransactionIntegrity(factory.createTransactionIntegrity());
else
tm.setTransactionIntegrity(null);
}
}
/**
* mbean get-set pair for field xidFactory
* Get the value of xidFactory
* @return value of xidFactory
*
* @jmx:managed-attribute
*/
public ObjectName getXidFactory()
{
return xidFactory;
}
/**
* Set the value of xidFactory
* @param xidFactory Value to assign to xidFactory
*
* @jmx:managed-attribute
*/
public void setXidFactory(ObjectName xidFactory)
{
this.xidFactory = xidFactory;
}
/**
* mbean get-set pair for field transactionManager
* Get the value of transactionManager
* @return value of transactionManager
*
* @jmx.managed-attribute description="Returns the TransactionManager managed by this service"
* access="read-only"
*/
public TransactionManager getTransactionManager()
{
return tm;
}
/**
* Get the xa terminator
*
* @jmx.managed-attribute description="Returns the XATerminator managed by this service"
* access="read-only"
* @return the xa terminator
*/
public JBossXATerminator getXATerminator()
{
return tm;
}
/**
* Counts the number of transactions
*
* @return the number of active transactions
*
* @jmx:managed-attribute
*/
public long getTransactionCount()
{
return tm.getTransactionCount();
}
/** The number of commits.
*
* @return the number of transactions that have been committed
*
* @jmx:managed-attribute
*/
public long getCommitCount()
{
return tm.getCommitCount();
}
/** The number of rollbacks.
*
* @return the number of transactions that have been rolled back
*
* @jmx:managed-attribute
*/
public long getRollbackCount()
{
return tm.getRollbackCount();
}
/**
* The registerXAExceptionFormatter
method
*
* @param clazz a Class
value
* @param formatter a XAExceptionFormatter
value
*
* @jmx.managed-operation
*/
public void registerXAExceptionFormatter(Class clazz, XAExceptionFormatter formatter)
{
xaExceptionFormatters.put(clazz, formatter);
}
/**
* The unregisterXAExceptionFormatter
method
*
* @param clazz a Class
value
*
* @jmx.managed-operation
*/
public void unregisterXAExceptionFormatter(Class clazz)
{
xaExceptionFormatters.remove(clazz);
}
void formatXAException(XAException xae, Logger log)
{
Class clazz = xae.getClass();
while (clazz != XAException.class)
{
XAExceptionFormatter formatter = (XAExceptionFormatter) xaExceptionFormatters.get(clazz);
if (formatter != null)
{
formatter.formatXAException(xae, log);
return;
} // end of if ()
clazz = clazz.getSuperclass();
}
}
// ObjectFactory implementation ----------------------------------
public Object getObjectInstance(Object obj, Name name,
Context nameCtx, Hashtable environment)
throws Exception
{
// Return the transaction manager
return tm;
}
// Private -------------------------------------------------------
private void bindRef(String jndiName, String className)
throws Exception
{
Reference ref = new Reference(className, getClass().getName(), null);
new InitialContext().bind(jndiName, ref);
}
}