Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
maxLevel2

Components

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

 

SCCharts Contoroller

No Format
scccontroller.h <compiled-sccchart>.c

...

No Format
controller.h defaults.h controller.c

The core controller component sets up a connection to the railway, maintains an environment for the synchronous tick-function and invokes the tick-function in a loop.

Additionally some time tracking is performed to determine time consumption of the tick function and its environment.

To increase the robustness of the system the controller checks internal permissions of the SCChart-Controller against detected trains on the railway.

State Monitor

No Format
statemonitor.h statemonitor.c

The state monitor component allows a thread-safe communication between connected GUIs and the running controller. This communication is also tick-safe meaning that changes are only applied at tick-borders. In addition to that the communication is mutual excluded without blocking the controller thread and thus the controller remains a reactive system.

Furthermore it allows the generation of the current state of the controller in JSON format.

GUI Server

No Format
guiserver.h guiserver.c

The GUI server allows multiple GUI clients concurrently connecting to the controller. The number of available slots is defined in the guiserver header.

The communication is established via TCP and the message format is JSON. Each client can request the current status of the controller and interact with some commands changing most of the important properties of each train, especially the schedule. The detailed communication format and capabilities are documented in the TCP Communication section.

Most controls are performed delayed and thread-safe with the state monitor, some are directly performed via the hostcode component. Changes of the same property from different clients is processed with first-come-first-serve-principle which may cause lost update writes but will not affect the integrity of the controller.

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:

...