Package com.arjuna.mw.wstx11

Source Code of com.arjuna.mw.wstx11.TransactionManagerFactory

/*
* 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 in the distribution for a full listing
* of individual contributors.
* 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, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* 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,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA  02110-1301, USA.
*
* (C) 2005-2006,
* @author JBoss Inc.
*/
/*
* Copyright (C) 2002,
*
* Arjuna Technologies Limited,
* Newcastle upon Tyne,
* Tyne and Wear,
* UK.
*
* $Id: TransactionManagerFactory.java,v 1.5 2005/03/10 15:37:12 nmcl Exp $
*/

package com.arjuna.mw.wstx11;

import com.arjuna.mw.wstx.logging.wstxLogger;

import com.arjuna.mw.wstx.common.TransactionXSD;
import com.arjuna.mw.wstx.TransactionManager;

import com.arjuna.mw.wscf11.protocols.*;
import com.arjuna.mw.wscf.utils.*;

import com.arjuna.mw.wscf.exceptions.ProtocolNotRegisteredException;

import com.arjuna.mwlabs.wscf.utils.ProtocolLocator;
import com.arjuna.mwlabs.wstx11.model.as.twophase.TwoPhaseTxManager;

import com.arjuna.mw.wsas.exceptions.SystemException;

import java.util.HashMap;

/**
* This class is used to obtain the TransactionManager implementation to
* use.
*
* @author Mark Little (mark.little@arjuna.com)
* @version $Id: TransactionManagerFactory.java,v 1.5 2005/03/10 15:37:12 nmcl Exp $
* @since 1.0.
*/

public class TransactionManagerFactory
{

    /**
     * @exception com.arjuna.mw.wscf.exceptions.ProtocolNotRegisteredException Thrown if the default
     * protocol is not available.
     *
     * @return the UserCoordinator implementation to use. The default
     * coordination protocol is used (two-phase commit) with its
     * associated implementation.
     *
     * @message com.arjuna.mw.wstx11.TransactionManagerFactory_1 [com.arjuna.mw.wstx11.TransactionManagerFactory_1] - Failed to create document:
     */

    public static TransactionManager transactionManager () throws ProtocolNotRegisteredException, SystemException
    {
  try
  {
      ProtocolLocator pl = new ProtocolLocator(TwoPhaseTxManager.class);
      org.w3c.dom.Document doc = pl.getProtocol();

      if (doc == null)
      {
    wstxLogger.arjLoggerI18N.warn("com.arjuna.mw.wstx11.TransactionManagerFactory_1",
                new Object[]{TwoPhaseTxManager.class.getName()});
      }
      else
      {
    if (!_protocolManager.present(doc))
        _protocolManager.addProtocol(doc, TwoPhaseTxManager.class.getName());

    return transactionManager(doc);
      }
  }
  catch (Exception ex)
  {
      ex.printStackTrace();

      throw new SystemException(ex.toString());
  }

  return null;
    }

    /**
     * Obtain a reference to a coordinator that implements the specified
     * protocol.
     *
     * @param protocol The XML definition of the type of
     * coordination protocol required.
     *
     * @exception com.arjuna.mw.wscf.exceptions.ProtocolNotRegisteredException Thrown if the requested
     * protocol is not available.
     *
     * @return the UserCoordinator implementation to use.
     */

    /*
     * Have the type specified in XML. More data may be specified, which
     * can be passed to the implementation in the same way ObjectName was.
     */

    public static TransactionManager transactionManager (org.w3c.dom.Document protocol) throws ProtocolNotRegisteredException, SystemException
    {
  try
  {
      synchronized (_implementations)
      {
    org.w3c.dom.Text child = DomUtil.getTextNode(protocol, TransactionXSD.transactionType);
    String protocolType = child.getNodeValue();
    TransactionManager tx = (TransactionManager) _implementations.get(protocolType);

    if (tx == null)
    {
        Object implementation = _protocolManager.getProtocolImplementation(protocol);

        if (implementation instanceof String)
        {
      Class txImpl = Class.forName((String) implementation);

      tx = (TransactionManager) txImpl.newInstance();
        }
        else
      tx = (TransactionManager) implementation;

        _implementations.put(protocolType, tx);
    }

    return tx;
      }
  }
  catch (ProtocolNotRegisteredException ex)
  {
      throw ex;
  }
  catch (Exception ex)
  {
      ex.printStackTrace();

      throw new SystemException(ex.toString());
  }
    }

    private static ProtocolManager _protocolManager = ProtocolRegistry.sharedManager();
    private static HashMap         _implementations = new HashMap();

}
TOP

Related Classes of com.arjuna.mw.wstx11.TransactionManagerFactory

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.