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

com.arjuna.wsas.tests.FailureHLS Maven / Gradle / Ivy

Go to download

JBossTS - JBoss Transaction Service. JTA, JTS and XTS (WS-AT, WS-BA)

The newest version!
/*
 * 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: FailureHLS.java,v 1.2 2005/05/19 12:13:19 nmcl Exp $
 */

package com.arjuna.wsas.tests;

import com.arjuna.mw.wsas.context.Context;

import com.arjuna.mw.wsas.UserActivityFactory;

import com.arjuna.mw.wsas.common.GlobalId;

import com.arjuna.mw.wsas.activity.Outcome;
import com.arjuna.mw.wsas.activity.HLS;

import com.arjuna.mw.wsas.completionstatus.CompletionStatus;

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

import java.util.Stack;

/**
 * @author Mark Little ([email protected])
 * @version $Id: FailureHLS.java,v 1.2 2005/05/19 12:13:19 nmcl Exp $
 * @since 1.0.
 */

public class FailureHLS implements HLS
{
    private Stack _id;

    public static final int BEGUN_FAIL = 0;
    public static final int COMPLETE_FAIL = 1;
    public static final int SUSPENDED_FAIL = 2;
    public static final int RESUMED_FAIL = 3;
    public static final int COMPLETED_FAIL = 4;
    public static final int CONTEXT_FAIL = 5;
    public static final int NO_FAIL = 10;
    
    public FailureHLS ()
    {
	this(FailureHLS.NO_FAIL);
    }

    public FailureHLS (int failPoint)
    {
	_failPoint = failPoint;
    _id = new Stack();
    }
    
    /**
     * An activity has begun and is active on the current thread.
     */

    public void begun () throws SystemException
    {
	if (_failPoint == FailureHLS.BEGUN_FAIL)
	    throw new SystemException();
	
	try
	{
	    GlobalId activityId = UserActivityFactory.userActivity().activityId();

        _id.push(activityId);

        System.out.println("FailureHLS.begun "+activityId);
	}
	catch (Exception ex)
	{
	    ex.printStackTrace();
	}
    }

    /**
     * The current activity is completing with the specified completion status.
     *
     * @param cs cs The completion status to use.
     *
     * @return The result of terminating the relationship of this HLS and
     * the current activity.
     */

    public Outcome complete (CompletionStatus cs) throws SystemException
    {
	if (_failPoint == FailureHLS.COMPLETE_FAIL)
	    throw new SystemException();

	try
	{
	    System.out.println("FailureHLS.complete ( "+cs+" ) "+ UserActivityFactory.userActivity().activityId());
	}
	catch (Exception ex)
	{
	    ex.printStackTrace();
	}

	return null;
    }	

    /**
     * The activity has been suspended. How does the HLS know which activity
     * has been suspended? It must remember what its notion of current is.
     */

    public void suspended () throws SystemException
    {
	if (_failPoint == FailureHLS.SUSPENDED_FAIL)
	    throw new SystemException();

	System.out.println("FailureHLS.suspended");
    }	

    /**
     * The activity has been resumed on the current thread.
     */

    public void resumed () throws SystemException
    {
	if (_failPoint == FailureHLS.RESUMED_FAIL)
	    throw new SystemException();

	System.out.println("FailureHLS.resumed");
    }	

    /**
     * The activity has completed and is no longer active on the current
     * thread.
     */

    public void completed () throws SystemException
    {
	if (_failPoint == FailureHLS.COMPLETED_FAIL)
	    throw new SystemException();

	try
	{
	    System.out.println("FailureHLS.completed " + UserActivityFactory.userActivity().activityId());
        if (!_id.isEmpty()) {
            _id.pop();
        }
	}
	catch (NoActivityException ex)
	{
	    ex.printStackTrace();
	}
    }		

    /**
     * The HLS name.
     */

    public String identity () throws SystemException
    {
	return "FailureHLS";
    }

    /**
     * The activity service maintains a priority ordered list of HLS
     * implementations. If an HLS wishes to be ordered based on priority
     * then it can return a non-negative value: the higher the value,
     * the higher the priority and hence the earlier in the list of HLSes
     * it will appear (and be used in).
     *
     * @return a positive value for the priority for this HLS, or zero/negative
     * if the order is not important.
     */

    public int priority () throws SystemException
    {
	return 0;
    }

    /**
     * Return the context augmentation for this HLS, if any on the current
     * activity.
     *
     * @return a context object or null if no augmentation is necessary.
     */

    public Context context () throws SystemException
    {
	if (_failPoint == FailureHLS.CONTEXT_FAIL)
	    throw new SystemException();

    if (_id.isEmpty()) {
        throw new SystemException("request for context when inactive");
    }

    try {
    System.out.println("DemoHLS.context "+ UserActivityFactory.userActivity().activityId());
    } catch (Exception ex) {
        ex.printStackTrace();
    }

	return new DemoSOAPContextImple(identity() + "_" + _id.size());
    }

    private int _failPoint;
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy