Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Components

The component diagram below shows the architecture of generated and created Railway Controller.

SCCharts Contoroller

scccontroller.h <compiled-sccchart>.c

This component is the compiled Controller-SCChart.

The interface offers an the sequential synchronous tick function and additionally access to some internal variables to determine the internal state of the SCChart during execution. Furthermore the component uses the provided hostcode-interface to control the railway.

Hostcode

hostcode.h hostcode.c

This component provides an interface to affect the railway and request events.

The interface provides shorter and simpler access to most of the railway API. To prevent conflicts with existing function names all functions in our interface are prefixed with rail.

Most controls and requests are forwarded to the controller maintaining the synchronous environment of the tick-function. Some controls which do not require this maintenance are directly forwarded to the railway API.

The hostcode header contains the general documentation for any hostcode call used in the SCChart.

Controller

controller.h defaults.h controller.c

State Monitor

statemonitor.h statemonitor.c

GUI Server

guiserver.h guiserver.c

Interaction

GUI

The controller allows multiple GUIs to connect and interact with the controller.

Interrupts

Quit, Pause and Cleanup

While running the console the following user inputs are provided by the controller:

  • CTRL+C (SIGINT) quits the controller
  • CTRL+\ (SIGQUIT) cleans up
  • CTRL+Z (SIGSTP) pauses and continues
  • No labels