An open API service indexing awesome lists of open source software.

https://github.com/ModelingValueGroup/DclareForMPS

Adding declarative, reactive and incremental rules to MPS
https://github.com/ModelingValueGroup/DclareForMPS

declarative jetbrains-mps mps reactive rule-based rules

Last synced: 5 months ago
JSON representation

Adding declarative, reactive and incremental rules to MPS

Awesome Lists containing this project

README

          

DclareForMPS [![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0) [![Actions Status](https://github.com/ModelingValueGroup/DclareForMPS/workflows/build/badge.svg)](https://github.com/ModelingValueGroup/DclareForMPS/actions)
================================
DclareForMPS adds a language aspect named '_rules_' to MPS.
A rule typically derives some part of a model.
Rules can trigger other rules.
A rule runs when something changes in the models that is read by this rule (reactive).
The system terminates on a fixpoint (if no changes occure anymore).
The regular MPS base-languages can be used to specify the rules.
Rules definitions typically use quotations (light or not) to define the derivations.
The rules are executed incrementally, meaning they perform a minimal amount of changes to derive the defined patterns (
expressed in quotations).

## MPS plugin

DclareForMPS is in constant progress.
It is available as a plugin in MPS through the plugin marketplace.

All feedback, functional or technical, is appreciated.

## dclare

DclareForMPS uses the dclare engine of the Modeling Value Group.
The dclare project can be found here: [dclare](https://github.com/ModelingValueGroup/dclare)

## Installation

1. install JetBrains MPS (2020.1 or higher)
2. start MPS
3. go to the plugins preferences section and install DclareForMPS from the Marketplace
4. open one of the example projects (see below)
5. verify that the 'On' setting is enabled (Settings > Other Settings > Dclare):

![check the engine checkbox](documentation/images/DclareEngineOnAtProjectOpen.png "Dclare Engine On At Project Open")

4. rebuild the example project
5. play with the sandbox-models in the example-project

## Examples

Multiple examples can be found on GitHub:

- [Sudoku](https://github.com/ModelingValueGroup/ex-Sudoku)
- [EntityClassJava](https://github.com/ModelingValueGroup/ex-EntityClassJava)
- [NiamToOO](https://github.com/ModelingValueGroup/ex-NiamToOO)
- [FlattenAndCopy](https://github.com/ModelingValueGroup/ex-FlattenAndCopy)
- [StateMachines](https://github.com/ModelingValueGroup/statemachines)

For more info, please read the _README.md_ files that are part of these examples.