⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smcstate.java

📁 SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming l
💻 JAVA
字号:
//// The contents of this file are subject to the Mozilla Public// License Version 1.1 (the "License"); you may not use this file// except in compliance with the License. You may obtain a copy// of the License at http://www.mozilla.org/MPL/// // Software distributed under the License is distributed on an// "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or// implied. See the License for the specific language governing// rights and limitations under the License.// // The Original Code is State Machine Compiler (SMC).// // The Initial Developer of the Original Code is Charles W. Rapp.// Portions created by Charles W. Rapp are// Copyright (C) 2000 - 2005. Charles W. Rapp.// All Rights Reserved.// // Contributor(s)://   Eitan Suez contributed examples/Ant.//   (Name withheld) contributed the C# code generation and//   examples/C#.//   Francois Perrad contributed the Python code generation and//   examples/Python.//   Chris Liscio contributed the Objective-C code generation//   and examples/ObjC.//// RCS ID// $Id: SmcState.java,v 1.9 2007/02/21 13:56:44 cwrapp Exp $//// CHANGE LOG// (See the bottom of this file.)//package net.sf.smc;import java.io.PrintStream;import java.text.ParseException;import java.util.ArrayList;import java.util.Iterator;import java.util.List;public final class SmcState    extends SmcElement{//---------------------------------------------------------------// Member methods//    public SmcState(String name, int lineNumber, SmcMap map)    {        super (name, lineNumber);        _map = map;        if (name.compareToIgnoreCase("Default") == 0)        {            _instanceName = "DefaultState";        }        else        {            _instanceName = name;        }        // Make sure the first character in the class name is        // upper case.        String firstLetter = name.substring(0, 1);        String remainder = name.substring(1);        _className = firstLetter.toUpperCase() + remainder;        _entryActions = null;        _exitActions = null;        _transitions = new ArrayList<SmcTransition>();    }    public SmcMap getMap()    {        return (_map);    }    public String getName()    {        return(_className + "." + _instanceName);    }    public String getClassName()    {        return(_className);    }    public String getInstanceName()    {        return(_instanceName);    }    public List<SmcAction> getEntryActions()    {        return(_entryActions);    }    public void setEntryActions(List<SmcAction> actions)    {        _entryActions = new ArrayList<SmcAction>(actions);        return;    }    public List<SmcAction> getExitActions()    {        return(_exitActions);    }    public void setExitActions(List<SmcAction> actions)    {        _exitActions = new ArrayList<SmcAction>(actions);        return;    }    public List<SmcTransition> getTransitions()    {        return(_transitions);    }    public SmcTransition        findTransition(String name,                       List<SmcParameter> parameters)    {        Iterator<SmcTransition> transIt;        SmcTransition transition;        SmcTransition retval;        for (transIt = _transitions.iterator(), retval = null;             transIt.hasNext() == true && retval == null;            )        {            transition = transIt.next();            if (name.equals(transition.getName()) == true &&                transition.compareTo(name, parameters) == 0)            {                retval = transition;            }        }        return (retval);    }    public void addTransition(SmcTransition transition)    {        // Add the transition only if it is not already in the        // list.        if (_transitions.contains(transition) == false)        {            _transitions.add(transition);        }        return;    }    public String toString()    {        StringBuffer retval = new StringBuffer(512);        retval.append(_instanceName);        if (_entryActions != null && _entryActions.size() > 0)        {            retval.append("\n\tEntry {");            for (SmcAction action: _entryActions)            {                retval.append(action);                retval.append('\n');            }            retval.append("}");        }        if (_exitActions != null && _exitActions.size() > 0)        {            retval.append("\n\tExit {");            for (SmcAction action: _exitActions)            {                retval.append(action);                retval.append('\n');            }            retval.append("}");        }        for (SmcTransition transition: _transitions)        {            retval.append("\n");            retval.append(transition);        }        return (retval.toString());    }    //-----------------------------------------------------------    // SmcElement Abstract Methods.    //    public void accept(SmcVisitor visitor)    {        visitor.visit(this);        return;    }    //    // end of SmcElement Abstract Methods.    //-----------------------------------------------------------//---------------------------------------------------------------// Member data//    private SmcMap _map;    private String _className;    private String _instanceName;    private List<SmcAction> _entryActions;    private List<SmcAction> _exitActions;    private List<SmcTransition> _transitions;}//// CHANGE LOG// $Log: SmcState.java,v $// Revision 1.9  2007/02/21 13:56:44  cwrapp// Moved Java code to release 1.5.0//// Revision 1.8  2007/01/15 00:23:52  cwrapp// Release 4.4.0 initial commit.//// Revision 1.7  2006/09/16 15:04:29  cwrapp// Initial v. 4.3.3 check-in.//// Revision 1.6  2005/11/07 19:34:54  cwrapp// Changes in release 4.3.0:// New features://// + Added -reflect option for Java, C#, VB.Net and Tcl code//   generation. When used, allows applications to query a state//   about its supported transitions. Returns a list of transition//   names. This feature is useful to GUI developers who want to//   enable/disable features based on the current state. See//   Programmer's Manual section 11: On Reflection for more//   information.//// + Updated LICENSE.txt with a missing final paragraph which allows//   MPL 1.1 covered code to work with the GNU GPL.//// + Added a Maven plug-in and an ant task to a new tools directory.//   Added Eiten Suez's SMC tutorial (in PDF) to a new docs//   directory.//// Fixed the following bugs://// + (GraphViz) DOT file generation did not properly escape//   double quotes appearing in transition guards. This has been//   corrected.//// + A note: the SMC FAQ incorrectly stated that C/C++ generated//   code is thread safe. This is wrong. C/C++ generated is//   certainly *not* thread safe. Multi-threaded C/C++ applications//   are required to synchronize access to the FSM to allow for//   correct performance.//// + (Java) The generated getState() method is now public.//// Revision 1.5  2005/05/28 19:28:42  cwrapp// Moved to visitor pattern.//// Revision 1.6  2005/02/21 15:38:04  charlesr// Added Francois Perrad to Contributors section for Python work.//// Revision 1.5  2005/02/03 16:49:43  charlesr// In implementing the Visitor pattern, the generateCode()// methods have been moved to the appropriate Visitor// subclasses (e.g. SmcJavaGenerator). This class now extends// SmcElement.//// Revision 1.4  2004/10/30 16:07:55  charlesr// Added Graphviz DOT file generation.//// Revision 1.3  2004/10/08 18:55:41  charlesr// Fixed C# exit action generation.//// Revision 1.2  2004/09/06 16:41:40  charlesr// Added C# support.//// Revision 1.1  2004/05/31 13:57:04  charlesr// Added support for VB.net code generation.//// Revision 1.0  2003/12/14 21:06:45  charlesr// Initial revision//

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -