Title of Invention

APPARATUS AND METHOD IMPLEMENTING HIERARCHICAL STATE CHARTS

Abstract 1. Appararus Imp1emennng merarcmcal slale cnans ana comprIsIng: a slale macnme engine (SME) operative to carry out repertoires of behaviors of a system; a state chart encoder operative to replicate, in computer code form, a user-defined hierarchical state chart describing a repertoire of behaviors of said system, said encoder being operative to preserve said state chart's hierarchical structure intact in a first data structure; an event list generator operative to generate, for each individual event from among a plurality of events within the repertoire, a list of at least one transition between states of said state chart which are associated with said individual event, said event list generator being operative to preserve said list in a second data structure; and a behavior implementer operative to activate said system to carry out each of the behaviors in its repertoire, wherein the state machine engine is operative to carry out repertoires by dynamically computing at least one new state in response to an event, without generating a static representation of all possible states and transitions in the user-defined hierarchical state chart.
Full Text

FIELD OF THE INVENTION
The present invention relates to computer code and to apparatus and methods for computer code generation.
BACKGROUND OF THE INVENTION
Hierarchical state charts are described in "Statecharts, a visual approach to complex systems", David Harel, Science of Computer Programming, 1987.
The disclosures of all publications mentioned in the specification and of the publications cited therein are hereby incorporated by reference.

SUMMARY OF THE INVENTION
The present invention seeks to provide improved computer code and improved apparatus and methods for computer code generation.
There is thus provided in accordance with a preferred embodiment of the present invention apparatus implementing hierarchical state charts and including a state machine engine (SME) operative to carry out repertoires of behaviors of a system, a state chart encoder operative to replicate, in computer code form, a user-defined hierarchical state chart describing a repertoire of behaviors of the system, the encoder being operative to preserve the state chart's hierarchical structure intact in a first data structure, an event list generator operative to generate, for each individual event from among a plurality of events within the repertoire, a list of at least one transition between states of the state chart which are associated with the individual event, the event list generator being operative to preserve the list in a second data structure, and a behavior implementer operative to activate the system to carry out each of the behaviors in its repertoire.
Further in accordance with a preferred embodiment of the present invention the system includes at least one of hardware and software.
Still further in accordance with a preferred embodiment of the present invention the first data structure's size increases linearly in direct proportion to the number of branches in the hierarchical structure.
Additionally in accordance with a preferred embodiment of the present invention the second data structure's size increases linearly in direct proportion to the number of transitions in the list of at least one transition.
Moreover in accordance with a preferred embodiment of the present invention the order of the at least one transition of each of the lists corresponds to the order of evaluation of the transitions as defined by the hierarchical state chart.
Further in accordance with a preferred embodiment of the present invention the plurality of events for which the event list generator generates lists includes at least one external input event.
Still further in accordance with a preferred embodiment of the present invention the plurality of events for which the event list generator generates lists includes at least one internal data value change event, the apparatus also including a data value change event notifier operative to generate a notification to th6 state machine engine of each data value change event.
There is additionally provided in accordance with a preferred embodiment of the present invention a method implementing hierarchical state charts, the method including providing a state

machine engine (SME) operative to cany out repertoires of behaviors of a system replicating, in i
computer code form, a user-defined hierarchical state chart describing a repertoire of behaviors of the system, the replicating step being operative to preserve the state chart's hierarchical structure intact, generating, for each individual event from among a plurality of events within the repertoire, a list of at least one transition between states of the state chart which are associated with the individual event, and activating the system to carry out each of the behaviors in its repertoire.
There is additionally provided in accordance with a preferred embodiment of the present invention an automatic code generation method including automatically generating code which forms, in memory, a replica of a hierarchical state chart which preserves the chart's hierarchical structure, automatically generating code which forms, for each of a first plurality of input events, a list of transitions affected by that input event, automatically generating code which forms, for each of a second plurality of internal data variables, a list of transitions affected by changes in that internal data variable, automatically generating code which notifies the state machine engine of changes in internal data variables, and automatically generating code which evaluates conditions and implements actions and activities.
Further in accordance with a preferred embodiment of the present invention the method includes the step of providing a state machine engine operative, upon receipt of notification regarding occurrence of an event, to evaluate a list of transitions affected by the event so as to select transitions to be performed, and to perform the transitions.
There is additionally provided in accordance with a preferred embodiment of the present invention a method for computing a state for a hierarchical state machine, the method including providing a state machine engine operative to receive notification regarding occurrence of at least one event, providing a hierarchical state chart describing a repertoire of behaviors of a system, providing a list of at least one transition between states of the state chart for each of the events with which the at least one transition is associated, evaluating the list of at least one transition so as to select a transition to be performed in response to the at least one event, and evaluating the hierarchical state chart to compute the state that corresponds to the selected transition.

BRIEF DESCRIPTION OF THE DRAWINGS
The present invention will be understood and appreciated from the following detailed description, taken in conjunction with the drawings in which:
Fig. 1 is a simplified block diagram of a software system constructed and operative in accordance with a preferred embodiment of the present invention which includes automatically generated code which interfaces with a state machine engine (SME);
Fig. 2 is a simplified flowchart illustration of a preferred method of operation for the state machine engine of Fig. 1;
Fig. 3 is a simplified flowchart illustration of a preferred method for generating high level computer code from hierarchical state charts;
Fig. 4 is a pictorial illustration of a computer screen generated in the course of automatically generating computer code from hierarchical state charts in a particular example;
Fig. 5 is a pictorial illustration of a computer screen, generated in the course of processing the example of Fig. 4, which shows all modes making up the state chart of the example;
Fig. 6 is a pictorial illustration of a computer screen, generated in the course of processing the example of Fig. 4, which shows an alternative presentation of the state chart of Fig. 5; and
Fig. 7 is a simplified flowchart illustration of an automatic code generation technique operative in accordance with a preferred embodiment of the present invention.

DETAILED DESCRIPTION OF PREFERRED EMBODIMENTS
Reference is now made to Fig. 1 which is a simplified block diagram of a software system constructed and operative in accordance with a preferred embodiment of the present invention which includes automatically generated code 10 which interfaces with a state machine engine (SME) 20. An optional interface 30 to underlying hardware (not shown) is also provided.
The state machine engine 20 is a pre-built object code module that is linked, either dynamically or statically, to the automatically generated code and the interface library.
The state machine engine implements the behavior of the software system preferably as defined solely by the automatically generated code that is linked with it. That being the case, the state machine engine code is typically provided only once in object code form, and does not need to be changed per software system.
The state machine implements this behavior by converting input events and changes of data values into transitions within the hierarchical state chart, and then implementing these transitions. It does this by computing the new state associated with this transition, deactivates the relevant parts of the old state and finally activates the relevant parts of the new state.
A preferred method of operation for the state machine engine (SME) 20 is described by the flow chart of Fig. 2.
The SME begins operation by building initial data structures based on data provided by the automatically generated code 30. These data structures typically include:
• a data structure that is a one to one representation of the hierarchical state chart,
• a data structure that couples together any input events with the transitions that are triggered by these input events,
• a data structure that couples together any data variables in the application with transitions that are triggered by changes in the value or state of these data variables, and with any expressions that must be evaluated when these data variables change, and
• a pointer to all logic and activity functions within the automatically generated code.
The SME then enters its normal operating state, which is to wait for any input events or any changes in data values. It is appreciated that input events may originate from a hardware device, such as a lamp as described in greater detail hereinbelow with reference to Fig. 4, or from a software process, such as an interprocess message.
When an input event notification arrives or a data change notification arrives from the automatically generated code, SME 20 checks if the event or data structure that triggered the notification has a list of transitions or logic expressions associated with it. If not it discards the

notification and returns to its normal operating state.
If the source of the notification does have such a list associated with it, the SME then checks each entry in the list and selects those entries that belong to a state that is currently active. All
other entries are icnored.
*>>
The SME then iterates over the selected list and checks each entry.
If an entry is a transition, and the source state of that transition is still active, the SME performs the transition by computing the new state associated with the transition, deactivating those parts of the current state that will no longer be active in. the new state, and then activating all those elements in the new state that were not active in the current state. The new state then becomes the current state.
If the entry is a logic expression, rather than a transition, the SME evaluates this expression by calling the corresponding functions in the generated code.
Once the SME has processed all entries in the list, it returns to its normal operating mode to await the next notification.
Referring back to Fig. 1, the'automatically generated code 10 is a translation of a hierarchical state chart description of a system, in addition to all data elements in the system, which, when compiled and run together with the SME and the interface library, implements the behavior of the original system.
The automatically generated code 10 typically comprises some or all of the following components:
• code to generate in memory, on a one to one basis, a replica of the original state chart, including the transitions and activities as defined,
• code to generate the lists that link sources of input events with the transitions to be evaluated when notification of these events are received by the SME,
• code to generate the lists that link data variables with the transitions and the logical expressions to be evaluated when notification of changes to these data variables are received by the SME,
• code to generate the notifications to the SME whenever a data variable changes,
• code to evaluate the conditions and to implement actions and activities that describe the behavior of the system described by the original state chart, including code to activate elements of hardware or software as specified by the state chart,
• code to deliver to the SME any of the above as is needed by it.
The object code; interface library 30 to the underlying hardware is optional pre-built object code that allows one or both of the state machine and the automatically generated code to interact with the hardware on which these elements operate.

This obiect code interface library is specific to the hardware on which the system is to oe run.
Conventional technology for generating high level code from state charts has entailed generating a static representation of all the possible transitions and states as described by the state chart, as well as generating code for the state machine that activates these various states. In general, the state and the state machine are inseparable in such generated code.
The two main techniques available for accomplishing this have been: state machines built of nested branch statements and state machines built around state transition tables.
In the first technique, code generation using branch statements, the state chart formalism is converted into a large number of typically deeply nested branch statements, where each branch statement represents one of the possible transitions. The depth of nesting is at least as deep as the deepest hierarchy in the state chart and increases non-linearly as a function of the depth of all branches in the state chart, the width of the branches and the number of possible input events. Branch statements are statements of the type "if-else" or "switch-case". For simple programs this may be adequate, but in general, because of the large amount of code needed to code the nested branch statements, this technique produces overly large programs.
Every possible input event is typically represented by some sort of flag. When an input event occurs, the corresponding flag is set to indicate this. The state machine mechanism involves continuously cycling through all the branch statements in the search for any branches that involve flags which may have been set before the current cycle as well as any condition statements that may have become true due to a variable changing value. This has the inevitable result that such code is very slow, especially since every cycle has to go through the deeply nested branch points that make up the code. This makes this type of code big and too slow for any application that requires a fast response time or modest memory requirements.
In the second technique, code generation using state transition tables, a procedure or function is generated for every possible transition and state, together with a state transition table that is used by the generated state machine for choosing which procedure to call for every possible external input. This state transition table is, in effect, a two-dimensional array whose indices are "input event" and "current state" and whose value is the new state.
The state here is not a hierarchical state, but rather a state in a normal linear state diagram, which is derived from the state chart by "flattening out" the original state chart.
When an input event arrives at the state machine, the state machine uses it, together with the current state to look up the next state. This use of tables results in much better response times than the nested branch statements to input. On the other hand, condition statements must still be

evaluated by .cycling through all such statements in search of any that evaluates to "true." This, of course, is still very slow.
In addition, because of the need to "flatten out" or linearize the original state chart, the size of the table explodes exponentially as a function of the number of possible input events, of depth of the state chart and the width of each branch. Hence, programs generated this way are normally so large as to make the generated code impractical for commercial products.
In contrast, the code generation technique of the present invention preferably has some or all of the following features:
• It does not try to reproduce the hierarchical state machine in the generated code, but rather generates code that, after compilation and linkage, is run by a pre-built, optimized state machine engine.
• It does not generate a static representation of all possible states and the transitions in the state chart, but rather generates code that reproduces the actual hierarchical state structure of the original state chart. The pre-built state machine engine then dynamically computes the required new state in response to every input event, or change in conditions.
• It is completely event driven, even in the case of conditions. Every source of events and every variable can have a list of logic associated with it. This list points to any statement that must be evaluated if and when that event is triggered or that variable changes value. In general, the statements in the list represent transitions, and the order of the statements expresses the order of evaluation of these transitions. As soon as an input event arrives, or a variable changes value, the transition dependent upon it is immediately identified and evaluated.
• The size of the generated code is linear in the number of branches and the number of transitions between the branches. The size is independent of the width of the branches and the number of possible input events.
The code generation technique of the present invention and the code structure of the present invention preferably has some or all of the following advantages:
• The resultant generated code, together with the pre-built state machine engine, is very small, and has memory requirements which are comparable to equivalent code developed manually by programmers.
• Whereas response time of the generated code to input events is as good as conventional automatically generated code, the response time to changes in variables is better than that for automatically generated code, and in fact, is similar to that for input events.
• The code generated is guaranteed to reflect the state chart from which it was derived, rather than being a transformed version of it. As a result, the generated code behaves as described by

. the original state chart. In addition, because of the clarity of the state chart formalism itself, the generated code is more likely to behave as required, compared to the equivalent manually developed code.
EXAMPLE: Fig. 3 illustrates incorporation of a system for generating me code snow and described herein into the Rapid S/W tool, commercially available from Emultek Ltd., Misgav 20179, Israel.
The steps of Fig. 3 are now described:
Build Interface Library: The interface library is used by the automatically generated code to interact with the hardware on which the system to be developed runs. For example, the library code may be used to request memory allocation from the operating system, or, if the hardware controls a device such as a lamp, the library might contain the code to switch the lamp on and off, e.g., by accessing certain addresses on the hardware. The library can be written in any convenient language and is preferably pre-tested before development with Rapid begins.
Map Components to Simulation Objects: In Rapid, applications are built by assembling simulations of the hardware and/or software components on the screen and building logical expressions from functions supplied with the object simulations. These supplied functions animate the behavior of the object simulations. For example in the case of a Lamp object, the function "switchOn" would cause the simulated lamp on the screen to change to the "on" color. In order for the logical expressions be able to interact with the actual components, a mapping between the supplied functions and interface library is provided. This mapping may be hard coded into the simulated objects code. Alternatively, an external textual mapping file may be used.
Open a New Rapid Application: This is the first step in building Rapid applications,
» providing a "clean slate" on which to build the application.
Build Simulation of the System: The simulation is built by dragging objects from a tool palette in the Layout Editor and positioning them as required on the graphic representation of the device being simulated. Each object can be graphically customized and, to some extent, functionally customized.
Rapid State Charts: The logic in a Rapid application is described by a state chart. State charts in Rapid are built from units called "modes". A mode is a functional state of the system and any mode can be hierarchically nested within any other mode. Therefore, the modes describe a hierarchical tree. Modes come in two "flavors": exclusive and concurrent. For exclusive modes, only one sibling can be in the active state at any given time, while for concurrent modes all siblings must be active together. When a particular mode is active, this implies that all its ancestors are active. If the mode's children are exclusive modes, this also implies that at least one of its children are active,

while if.the mode's children are concurrent modes, this implies that all of the children are active. A state in a state chart is the list of all currently active modes. A mode can have lists of activities and transitions. Activities describe what the system does when it is a particular state. Activities can be entry activities, exit activities or mode activities. Entry activities are activities that are performed when the mode that contains them becomes activate. Exit activities are activities that are performed when the mode that contains them becomes inactive. Mode actixities are activities that are performed when the mode becomes active and that, as long as the mode is still active, are automatically re-evaluated whenever data variables that describe them change value. Transitions define how the system evolves from one state to another. Transitions typically have a destination mode. Transitions must also have a list of input events, or a condition expression or both. Transitions may also have a list of actions. If notification of one of the input events held by a transition is received, and that transition belongs to a currently active mode, and the condition expression, if any evaluates to true, then the mode belonging to the transition is deactivated (together with its children and any relevant ancestors) and the destination mode of the transition is activated (together with its children etc.). Between the deactivation of the original mode and the activation of the destination mode, any actions in the transition are performed.
Build the State Chart: The simulation is typically built using two tools in Rapid: the Mode Tree Editor and the Logic Editor. The Mode Tree Editor allows the user to define and add modes to the hierarchical tree of modes by selecting the parent of the new mode, specifying the type of the new mode, and giving a name to the new mode. During this process, the transitions and activities can be added and edited using the Logic Editor. As each logic expression is added to the state chart it is compiled into byte codes for a virtual machine that is used to run a simulation of the system.
Run Simulation: At any time during the development process, the simulation of the system under development can preferably be run. This allows incremental development of the system and verification that the system behaves as desired.
Generate Code: Once the developer is satisfied with the system, Rapid automatically generates C++ code for that system having the characteristics described above. It is appreciated that programming languages other than C++ may be used for the automatically generated code.
Compile the Generated Code: The automatically generated code can be compiled to produce object code.
Link with State Machine and Interface Library: The object code produced by compiling the automatically generated code is then linked with the SME object code and the interface library to produce executable code for the target system.

This executable code can oe downloaded and run on the target system. Sample Application:
The following is a sample application in Rapid and the code automatically generated for it:
Fig. 4 is a screen capture of the application in the Layout Editor, showing the object layout. As can be seen the application contains five lamps, and five push buttons:
Objects
RAPED APPLICATION: TRANSITN 12/12/96 16:09:08 OBJECT DATA REPORT
Parameters: Scope: Subtree. Order: Hierarchy. Content: Active objects, Nongraphic objects, Object parameters, Object properties.
1. OBJECT: transitn
Parent: none Type: Root Object
Parameters:
Position (pxl): '0 @ 0' Size (pxl): '393 @ 403' Dynamic: 'false' Drag fn Drop: 'false'
2. OBJECT: LampH
Parent: transitn Type: Round Lamp
Parameters:
Center (pxl): '300 @ 139' Radius (pxl): '15 @ 15' Dynamic: 'false' Drag 'n Drop: 'false'
Properties:
2.1. Name: blinkPeriod Type: Data

Parameters:
Value: 500
3. OBJECT: LampG
Parent: transitn Type: Round Lamp
Parameters:
Center (pxl): '243 @ 139' Radius (pxl): *15 @ 15' Dynamic: 'false' Drag 'n Drop: 'false'
Properties:
3.1. Name: blinkPeriod Type: Data Parameters: Value: 500
4. OBJECT: LampA
Parent: transitn Type: Round Lamp
Parameters:
Center (pxl): 72 @ 140' Radius (pxl): !15 @ 15* Dynamic: 'false' Drag'n Drop:'false1
Properties;
4,1. Name; blinkPeriod Type: Data Parameters: Value: 500
5. OBJECT: LampE
Parent; transitn :Type: Round Lamp
Parameters:

renter (pxl): '129 @ 139' Radius (pxl): '15 @ 15' Dynamic: 'false Drag 'n Drop: 'false1
Properties:
5.1. Name: blinkPeriod Type: Data Parameters: Value: 500
6. OBJECT: LampF
Parent: transitn Type: Round Lamp
Parameters:
Center (pxl): '186 @ 139' Radius (pxl): '15 @ 15' Dynamic: 'false' Drag'n Drop: 'false*
Properties:
6.1. Name: blinkPeriod Type: Data Parameters: Value: 500
7. OBJECT: BToA
Parent: transitn Type: Flat Pushbutton
Parameters:
Position (pxl): '57 @ 199' Size (pxl): '40 @ 40' Dynamic: false1 Drag 'n Drop: 'false* Momentary: 'true' Autorepeat: 'false' Autorepeat period: 500
8. OBJECT: Default
Parent: transitn '. Type: Flat Pushbutton

' Posrtion (pxl): '131 @ 199* Size (pxl): '40 @ 40' Dynamic: 'false' Drag !n Drop: Talse' Momentary: rtrue' Autorepeat: 'false1 Autorepeat period: 500
9. OBJECT: History
Parent: transitn Type: Flat Pushbutton
Parameters:
Position (pxl): '206 @ 199' Size (pxl): '40 @ 40' Dynamic: 'false' Drag 'n Drop: 'false' Momentary: 'true' Autorepeat: 'false' Autorepeat period: 500
10. OBJECT: DeepHistory
Parent: transitn Type: Flat Pushbutton
Parameters:
Position (pxl): '276 @ 199' Size (pxl): '40 @ 40' Dynamic: 'false' Drag 'n Drop: 'false' Momentary: true' Autorepeat: 'false1 Autorepeat period: 500
11. OBJECT: History
Parent: transitn Type: Label
Parameters:
Position (pxl): '198 @ 244' Size (pxl): '58 @ 15' Dynamic: 'false' Drag 'n Drop: 'false1 Text: ^History' Orientation: 'Horizontal' Font: 'Fixedsys' Line width: 1
12. OBJECT: Next
Parent: transitn Type: Flat Pushbutton
Parameters:
Position (pxl):'167 @ 282' Size (pxl):'40 @ 40' Dynamic:'false' Drag 'n Drop: 'false' Momentary: 'true' Autorepeat: 'false'

Autorepeat period: 500
Fig. 5 is a screen capture of the Mode Tree Editor showing all the modes that make up the state chart of this sample application. As can be seen there are nine modes in this application.
An alternative view of the state chart can be seen in the screen capture of the Logic Chart tool shown in Fig. 6. Fig. 6 shows each mode as a rectangle and each transition as an arc. Tiie hierarchical nature of the state is clearly seen.
Reference is now made to Fig. 7 which is a simplified flowchart illustration of a automatic code generation technique operative in accordance with a preferred embodiment of the present invention. The resulting code is useful in conjunction with a state machine engine which performs the following functions, inter alia:
a. Upon receipt of notification that an input event has occurred, the SME accesses the list
formed for that input event and evaluates each transition on that list to determine, depending on the
current state, which transitions are to be performed.
b. Upon receipt of notification that an internal data variable has been changed, the SME
accesses the list formed for that internal data variable and evaluates each transition on that list to
determine, depending on the current state, which transitions are to be performed.
To perform a transition, the SME computes the new state associated with the transition by going to the destination of the transition and looking up and activating all ancestors. All children are also looked up and activated as appropriate, e.g. in accordance with predefined defaults. Those portions of the current state that are no longer active in the new state are deactivated. Elements in the new state that were not active in the current state are activated. The new state then becomes the current state and is stored in the SME.
Alternatively, one or both of the above lists may not be provided. For example, the system may poll periodically for internal events rather than being driven thereby. Alternatively or in addition, the system may poll periodically for external events rather than being driven thereby.
Logic in State Chart
RAPID APPLICATION: TRANSITN 12/12/96 16:07:32 MODE DATA REPORT
Parameters:
Scope: Subtree.

Order: Hierarchy.
Includes: User Functions, Activities, Transitions, Triggers, Actions.
USER FUNCTIONS
1. MODE: transitn Parent: none Type: root Note:
2. MODE: A
Parent: transitn Type: exclusive
Entry Activities: a. LampA on
Exit Activities: a. LampA off
Transitions:
a. Destination: B Entry type: Default
al. Trigger: Default in &
b. Destination: B Entry type: History
bl. Trigger: History in &
c. Destination: B Entry type: Deep history
cl. Trigger: DeepHistory in &
3. MODE:B
Parent: transitn Type: exclusive
Transitions: a. Destination: A Entry type: Default al. Triscer: BToA in &
4. MODE: C

, Parent: B Type; exclusive
5. MODE E
Parent: C Type: exclusive
Entry Activities: a. LampE on
Exit Activities: a. LampE off
Transitions: a. Destination: F Entry type: Default
al. Trigger: Next in &
6. MODE:F
Parent: C Type: exclusive
Entry Activities: a. LampF on
Exit Activities: a. LampF off
Transitions: a. Destination: G Entry type: Default al. Trigger: Next in &
7. MODE:D
Parent: B Type: exclusive
8. MODE: G
Parent: D Type: exclusive

Entrv Activities: a. LampG on
Exit Activities: a. LampG off
Transitions: a. Destination: H Entry type: Default al. Trigger: Next in &
9. MODE: H
Parent: D Type: exclusive
Entry Activities: a. LampH on
Exit Activities: a. LampH off
Transitions:
a. Destination: E Entry type: Default al. Trigger: Next in &
Generated Code
Header File
#ifhdef include_transitn
#define include_transitn
#include "applic.h" #include "task.h" #include "object.h" #include "mode.h"

class Application; class myApplication;
typedef bool (myApplication:: *MyApplicationMethod)();
#define cNumberDependencies 8
#define cNumberDependencylndices 6
#define cNumberChildren 18
#define cNumberObjects 20
#define cNumberTriggers 5
#define cNumberTransitions 8
#d'efine cNumberModes 9
#define cNumberActivities 10
class myApplication: public Application
{
private: // Objects enum objectID
{
cOB_RootObject = 0, //PushButtons
cOBJDefault, III
cOB_History, 111
cOB_DeepHistory, 1/3
cOB_BToA, HA
cOB_Next, IIS
//Lamps
cOB_LampA, 1/6
cOB_LampE, 111
cOB_LampF, //8
cOB_LampG, 119
cOB_LampH, //10
//Modes







// Each object has a list of dependency records, sorted
*
// by property and event, and referencing pairs of
// (modes, activity/condition, index), or a transition index
static DependencyRecord dependencies[cNumberDependencies];
// For each object/property pair, there is a dependency index record
// that includes the first & last dependency record pertaining to the
// object/property pair.
static DependencylndexRecord dependencyIndicies[cNumberDependencyIndices];
// Each transition has an index and an associated record that includes // the indices of the source and destination, type, condition, and action static TransitionRecord transitionRecords[cNumberTransitions];
// Each transition has an index and an associated record that includes // the indices of the source and destination, type, condition, and action static TriggerRecord triggerRecords[cNumberTriggers];
// Activity methods are indexed through the following array
// subroutine methods are NOT indexed here.
static MyApplicationMethod activityRecords[cNumber Activities];
// Each mode record includes entry and exit activities, if any, // and the start index and length of the mode activities. Can the mode activities // be merged? Also, the number of transitions, to facilitate flag allocation, static ModeRecord modeRecords[cNumberModes];
// Each object record includes
static ObjectRecord objectRecords[cNumberObjects];
// Array to hold all of the children for the objects static int children Array [cNumberChildren];

static A^plicationRecord applicationRecord;
};
class myTask: public RapidTask
{
public: myTaskQ; -myTaskQ
{
removeContext(&_mainApp);
};
private: my Application jnainApp;
};
#endif
Body File
/*
Rapid Application:
Objects: Transitn
|->BToA (Square Pushbutton) |->Default (Square Pushbutton) |->History (Square Pushbutton) |-*>DeepHistory (Square Pushbutton) |-->Next (Square Pushbutton) J—>LampA (Round Lamp) |—>LampE (Round Lamp) |-->LampF (Round Lamp) |—>LampG (Round Lamp) |—>LampH (Round Lamp)



cl. Trigger: DeepHistory in &
3. MODE: B
Parent: Transitn Type: exclusive
Transitions: a. Destination: A Entry type: Default al. Trigger: BToA in &
4. MODE: C
Parent: B Type: exclusive
5. MODE: D
Parent: B Type: exclusive
6. MODE: E
Parent: C Type: exclusive
Entry Activities: a. LampE on
Exit Activities: a. LampE off
Transitions: a. Destination: F Entry type: Default al. Trigger: Next in &
6. MODE: F
Parent: C Type: exclusive
Entry Activities: a. LampF on

Exit Activities: a. LampF off
Transitions: a. Destination: G Entry type: Default al. Trigger: Next in &
6. MODE: G
Parent: D Type: exclusive
Entry Activities: a. LampG on
Exit Activities: a. LampG off
Transitions: a. Destination: H Entry type: Default al. Trigger: Next in &
6. MODE: H
Parent: D Type: exclusive
Entry Activities: a. LampH on
Exit Activities: a. LampH off
Transitions: a. Destination: E Entry type: Default
al. Trigger: Next in &

Generated Code:
^include "transitn.h" ^include "emtrace.h" ^include "ekemel.h"
struct DependencyRecord
{
DependencyClass dependencyClass; // event, condition, mode activity
int mode; // Frame Table index
int eventID; // eventID, if any -
int index; // Index of transition or mode Activity
}; */
DependencyRecord my Application: :dependencies[cNumberDependencies] =
{
{cEvent, cOB_ModeA, cPushButtonIn, 0}, // 0 A->B on Default in
{cEvent, cOB_ModeA, cPushButtonIn, 1}, // 1 A->B on History in
{cEvent, cOB_ModeA, cPushButtonIn, 2}, // 2 A->B on DeepHistory in
{cEvent, cOB_ModeB, cPushButtonIn, 0}, // 3 B->A on BToA in
{cEvent, cOB_ModeE, cPusliButtonln, 0}, // 4 E->F on Next in
{cEvent, cOB_ModeF, cPushButtonIn, 0}, // 5 F->G on Next in
{cEvent, cOB_ModeG, cPushButtonIn, 0}, // 6 G->H on Next in
{cEvent, cOB_ModeH, cPushButtonIn, 0}, // 7 H->E on Next in
};
/*
struct DependencyIndexRecord{ PropertyEntry _propertyId;







{
*

int objectlD; int propertylD; int eventID;
}; */
//NOTE: Could get sophisticated, and reuse trigger records... TriggerRecord my Application: :triggerRecords[cNumberTriggers] =
{
{cOB_Default, cSelf, cPushButtonln}, // 0 {cOB_History, cSelf, cPushButtonln}, //1 {cOBJDeepKstoiy, cSelf, cPushButtonln}, 111 {cOB_BToA, cSelf, cPushButtonln}, // 3 {cOB_Next, cSelf, cPushButtonln}, IIA
};
I*
struct TransitionRecord
{
int triggers tart; // index of first trigger record
int triggerLength; // number of trigger records
int sourceMode; // object index of source mode
int destinationMode; // object index of destination mode
int condition; // index of condition method
int action; // index of action method
unsigned inttype:3;
unsigned int IsConditionOnly:l;
unsigned int toAncestonl;
unsigned int toDescendant:l;
unsigned int sourceEqualsDestination:l;
}; */







We claim:
1. Apparatus implementing hierarchical state charts and comprising: a state machine engine (SME) operative to carry out repertoires of behaviors of a system; a state chart encoder operative to replicate, in computer code form, a user-defined hierarchical state chart describing a repertoire of behaviors of said system, said encoder being operative to preserve said state chart's hierarchical structure intact in a first data structure; an event list generator operative to generate, for each individual event from among a plurality of events within the repertoire, a list of at least one transition between states of said state chart which are associated with said individual event, said event list generator being operative to preserve said list in a second data structure; and a behavior implementer operative to activate said system to carry out each of the behaviors in its repertoire, wherein the state machine engine is operative to carry out repertoires by dynamically computing at least one new state in response to an event, without generating a static representation of all possible states and transitions in the user-defined hierarchical state chart.
2. Apparatus according to claim 1 wherein said system comprises at least one of hardware and software.
3. Apparatus according to claim 1 wherein said first data structure's size increases linearly in direct proportion to the number of branches in said hierarchical structure.

4. Apparatus according to claim 1 wherein said second data structure's size increases linearly in direct proportion to the number of transitions in said list of at least one transition.
5. Apparatus according to claim 1 wherein the order of said at least one transition of each of said lists corresponds to the order of evaluation of said transitions as defined by said hierarchical state chart.
6. Apparatus according to claim 1 wherein said plurality of events for which said event list generator generates lists comprises at least one external input event.
7. Apparatus according to claim 1 wherein said plurality of events for which said event list generator generates lists comprises at least one internal data value change event, the apparatus also comprising a data value change event notifier operative to generate a notification to the state machine engine of each data value change event.
8. A method implementing hierarchical state charts, the method comprising: providing a state machine engine (SME) operative to carry out repertoires of behaviors of a system; replicating, in computer code form, a user-defined hierarchical state chart describing a repertoire of behaviors of said system, said replicating step being operative to preserve said state chart's hierarchical structure intact; generating, for each individual

event from among a plurality of events within the repertoire, a list of at least one transition between states of said state chart which are associated with said individual event; and activating said system to carry out each of the behaviors in its repertoire, wherein the state machine engine is operative to carry out repertoires by dynamically computing at least one new state in response to an event without generating a static representation of all possible states and transitions in the user-defined hierarchical state chart.


Documents:

1747-mas-1997- abstract.pdf

1747-mas-1997- claims.pdf

1747-mas-1997- correspondence others.pdf

1747-mas-1997- correspondence po.pdf

1747-mas-1997- descripiton complete duplicate.pdf

1747-mas-1997- descripiton complete original.pdf

1747-mas-1997- form 1.pdf

1747-mas-1997- form 26.pdf

1747-mas-1997- form 3.pdf

1747-mas-1997- form 4.pdf


Patent Number 204467
Indian Patent Application Number 1747/MAS/1997
PG Journal Number 26/2007
Publication Date 29-Jun-2007
Grant Date 22-Feb-2007
Date of Filing 05-Aug-1997
Name of Patentee EMULTEK LTD
Applicant Address BEIT RABIN, TERADION INDUSTRIAL PARK, MISGAV 20179
Inventors:
# Inventor's Name Inventor's Address
1 FREDERICK C ROTBART 142 YUVALIM ST MISGAV 20142
PCT International Classification Number G05B19/00
PCT International Application Number N/A
PCT International Filing date
PCT Conventions:
# PCT Application Number Date of Convention Priority Country
1 119914 1996-12-25 Germany