alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

// $Id: StateMachinesHelper.java,v 1.24 2004/08/08 16:31:56 mvw Exp $
// Copyright (c) 1996-2004 The Regents of the University of California. All
// Rights Reserved. Permission to use, copy, modify, and distribute this
// software and its documentation without fee, and without a written
// agreement is hereby granted, provided that the above copyright notice
// and this paragraph appear in all copies.  This software program and
// documentation are copyrighted by The Regents of the University of
// California. The software program and documentation are supplied "AS
// IS", without any accompanying services from The Regents. The Regents
// does not warrant that the operation of the program will be
// uninterrupted or error-free. The end-user understands that the program
// was developed for research purposes and is advised not to rely
// exclusively on the program for any reason.  IN NO EVENT SHALL THE
// UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
// SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
// ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
// THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
// PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
// CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
// UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

package org.argouml.model.uml.behavioralelements.statemachines;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

import org.argouml.model.ModelFacade;
import org.argouml.model.uml.modelmanagement.ModelManagementHelper;

import ru.novosoft.uml.behavior.state_machines.MEvent;
import ru.novosoft.uml.behavior.state_machines.MState;
import ru.novosoft.uml.behavior.state_machines.MStateMachine;
import ru.novosoft.uml.behavior.state_machines.MStateVertex;
import ru.novosoft.uml.behavior.state_machines.MSubmachineState;
import ru.novosoft.uml.behavior.state_machines.MTransition;
import ru.novosoft.uml.foundation.core.MBehavioralFeature;
import ru.novosoft.uml.foundation.core.MClassifier;
import ru.novosoft.uml.foundation.core.MModelElement;

/**
 * Helper class for UML BehavioralElements::StateMachines Package.
 *
 * 
 * @since ARGO0.11.2
 * @author Thierry Lach
 * @stereotype singleton
 */
public class StateMachinesHelper {

    /** Don't allow instantiation.
     */
    private StateMachinesHelper() {
    }

    /**
     * Singleton instance.
     */
    private static StateMachinesHelper singleton = new StateMachinesHelper();

    /** 
     * Singleton instance access method.
     *
     * @return the singleton
     */
    public static StateMachinesHelper getHelper() {
        return singleton;
    }

    /**
     * Returns the source of the given transition. This operation is here to 
     * give a full implementation of all getSource and getDestination methods
     * on the uml helpers.
     *
     * @param trans the given transition
     * @return MStateVertex the source statevertex
     */
    public Object getSource(Object trans) {
        return ((MTransition) trans).getSource();
    }

    /**
     * Returns the destination of the given transition. This operation is here 
     * to give a full implementation of all getSource and getDestination methods
     * on the uml helpers.

* * @param trans the given transition * @return MStateVertex the destination statevertex */ public Object getDestination(Object trans) { return ((MTransition) trans).getTarget(); } /** * Gets the statemachine that contains the given Object * Traverses the state hierarchy of the statemachine * untill the statemachine is reached. To decouple ArgoUML as * much as possible from the NSUML model, the parameter of the * method is of type Object, and the result, too.

* * @param handle The state for which we want to know the * statemachine * @return Object MStateMachine The statemachine the state belongs too or * null if the given parameter is not a state or null itself. */ public Object getStateMachine(Object handle) { if (handle instanceof MStateVertex) { MStateVertex state = (MStateVertex) handle; if (state instanceof MState && ((MState) state).getStateMachine() != null) { return ((MState) state).getStateMachine(); } else return getStateMachine(state.getContainer()); } if (handle instanceof MTransition) { Object sm = ((MTransition) handle).getStateMachine(); if (sm != null) return sm; // the next statement is for internal transitions return getStateMachine(((MTransition) handle).getSource()); } throw new IllegalArgumentException("null argument to " + "getStateMachine()"); } /** * Couples a given event to the given transition as being trigger * event. To decouple ArgoUML as much as possible from the NSUML * model, the parameters of the method are of type Object.

* * @param transition the given transition * @param event the given event */ public void setEventAsTrigger(Object transition, Object event) { if (transition == null || !(transition instanceof MTransition)) { throw new IllegalArgumentException("Transition either null or not " + "an instance of MTransition"); } if (event == null || !(event instanceof MEvent)) { throw new IllegalArgumentException("Event either null or not an " + "instance of MEvent"); } ((MTransition) transition).setTrigger((MEvent) event); } /** * Returns true if a statemachine may be added to the given * context. To decouple ArgoUML as much as possible from the NSUML * model, the parameter of the method is of type Object.

* * @param context the given context * @return boolean true if a statemachine may be added */ public boolean isAddingStatemachineAllowed(Object context) { if (context instanceof MBehavioralFeature || context instanceof MClassifier) { return true; } return false; } /** * Returns true is the given state is the top state. * * @author MVW * @param o CompositeState * @return boolean */ public boolean isTopState(Object o) { if (ModelFacade.isACompositeState(o)) if (ModelFacade.getContainer(o) == null) return true; return false; } /** * Returns all statemachines that can be the statemachine the given * submachinestate represents. To decouple ArgoUML as much as possible from * the NSUML model, the parameter of the method is of type Object. * @param oSubmachineState The submachinestate we are searching the * statemachines for. * @return Collection The collection with found statemachines. */ public Collection getAllPossibleStatemachines(Object oSubmachineState) { if (oSubmachineState instanceof MSubmachineState) { Collection statemachines = ModelManagementHelper.getHelper() .getAllModelElementsOfKind(MStateMachine.class); statemachines.remove(getStateMachine(oSubmachineState)); return statemachines; } return null; } /** * Connects a given statemachine to a submachinestate as being the * statemachine the submachinestate represents. To decouple ArgoUML as much * as possible from the NSUML model, the parameters of the method are of * type Object. * @param oSubmachineState The submachinestate for which we want to set the * property submachine * @param oStatemachine The statemachine */ public void setStatemachineAsSubmachine(Object oSubmachineState, Object oStatemachine) { if (oSubmachineState instanceof MSubmachineState && oStatemachine instanceof MStateMachine) { MSubmachineState mss = (MSubmachineState) oSubmachineState; mss.setSubmachine((MStateMachine) oStatemachine); } } /** * TODO: (MVW) Since this function is also present in the ModelFacade, * why is it here? * * @param sm the given statemachine * @return the top composite state */ public Object getTop(Object sm) { if (!(sm instanceof MStateMachine)) throw new IllegalArgumentException(); if (sm == null) return null; return ((MStateMachine) sm).getTop(); } /** * Gets all statevertices that are a target to transitions * outgoing from the given statevertex.

* * @param ostatevertex the given statevertex * @return Collection all statevertices that are a target */ public Collection getOutgoingStates(Object ostatevertex) { if (ModelFacade.isAStateVertex(ostatevertex)) { MStateVertex statevertex = (MStateVertex) ostatevertex; Collection col = new ArrayList(); Iterator it = statevertex.getOutgoings().iterator(); while (it.hasNext()) { col.add(((MTransition) it.next()).getTarget()); } return col; } return null; } /** * Finds the operation to which a CallEvent refers. * TODO: This function works for the most normal cases, * but needs some testing for rare cases, e.g. internal transitions,... * * @author MVW * @param trans Object of type MTransition * @param opname the name of the operation sought * @return Object The operation with the given name, or null. */ public Object findOperationByName(Object trans, String opname) { if (!(trans instanceof MTransition)) throw new IllegalArgumentException(); Object sm = getStateMachine(trans); Object ns = ModelFacade.getNamespace(sm); if (ModelFacade.isAClassifier(ns)) { Collection c = ModelFacade.getOperations(ns); Iterator i = c.iterator(); while (i.hasNext()) { Object op = i.next(); String on = ((MModelElement) op).getName(); if (on.equals(opname)) return op; } } return null; } /** * Returns all substates some composite state contains. * @param compState the given compositestate * @return all substates */ public Collection getAllSubStates(Object compState) { if (ModelFacade.isACompositeState(compState)) { List retList = new ArrayList(); Iterator it = ModelFacade.getSubvertices(compState).iterator(); while (it.hasNext()) { Object subState = it.next(); if (ModelFacade.isACompositeState(subState)) { retList.addAll(getAllSubStates(subState)); } retList.add(subState); } return retList; } else throw new IllegalArgumentException( "Argument is not a composite state"); } }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.