Skip to content

Commit 62cb473

Browse files
author
socadk
committed
Grammar and tools Version 4.0
1 parent 2537e94 commit 62cb473

File tree

226 files changed

+9992
-571
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+9992
-571
lines changed

.gitignore

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*.class
33
**/target
44
**/bin
5+
**/build
6+
**/out
57

68
# Package Files #
79
*.jar
@@ -18,11 +20,18 @@
1820
**/.settings
1921
plugin.xml_gen
2022

23+
# IntelliJ
24+
**/.idea
25+
26+
# Gradle
27+
**/.gradle
28+
2129
# Xtext generated sources
2230
**/src-gen
31+
**/src-test-gen
2332
**/xtend-gen
2433
**/model/generated/
2534

2635
# Misc
2736
**/SABA-VisualisierungenFinal
28-
.DS_Store
37+

README.md

+36-17
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
Microservice Domain-Specific Language (MDSL)
2-
============================================
3-
4-
[![Build Status](https://travis-ci.com/Microservice-API-Patterns/MDSL-Specification.svg?branch=master)](https://travis-ci.com/Microservice-API-Patterns/MDSL-Specification) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1+
Microservice Domain-Specific Language (MDSL) 4.0
2+
================================================
53

64
Author: Olaf Zimmermann, (c) 2018-2020. All rights reserved.
75

86
## What is MDSL?
97

10-
MDSL supports the [API Description](https://microservice-api-patterns.org/patterns/foundation/APIDescription) pattern from [Microservice API Patterns (MAP)](https://ozimmer.ch/patterns/2020/05/07/MAPMetaPost.html).
8+
MDSL supports the [API Description](https://microservice-api-patterns.org/patterns/foundation/APIDescription) pattern from [Microservice API Patterns (MAP)](https://ozimmer.ch/patterns/2020/05/07/MAPMetaPost.html) ("polyglot service design").
119

12-
This is the "hello world" of service contracting, specified in MDSL:
10+
This is the "hello world" of cross-platform service contracting, specified in MDSL:
1311

1412
~~~
1513
API description HelloWorldAPI
@@ -39,15 +37,23 @@ These two languages can be used independently of each other; for instance, data
3937

4038
## Getting Started
4139

42-
* Presentations featuring Context Mapper, MAP and MDSL can be found [on this website](https://ozimmer.ch/papers/). [The most recent one](https://ozimmer.ch/assets/presos/ZIO-ICWEKeynoteWADEC3v10p.pdf) features MDSL and Open API in Part 2 (pages 14 to 24).
43-
* The [GitHub Pages for MDSL](https://microservice-api-patterns.github.io/MDSL-Specification) provide a tutorial and language reference information.
44-
* There is an [Eclipse update site](https://microservice-api-patterns.github.io/MDSL-Specification/updates/) for the MDSL editor.
45-
* Instructions for an end-to-end demo starting with a user stories, continuing with domain-driven design (in Context Mapper) and service design (MDSL, Open API) and finishing with a JHipster prototype can be found [in this blog post](https://ozimmer.ch/practices/2020/06/10/ICWEKeynoteAndDemo.html).
40+
* Presentations featuring Context Mapper, MAP and MDSL can be found [here](https://ozimmer.ch/papers/).
41+
* The [GitHub Pages for MDSL](https://socadk.github.io/MDSL) provide a tutorial and language reference information.
42+
* There is an [Eclipse update site](https://socadk.github.io/MDSL/updates/) for the MDSL editor.
43+
* Since Version 4.0, all generators are available via a Command Line Interface (CLI); see [this readme](./dsl-core/io.mdsl.cli/README.md) and [these examples](./examples/mdsl-standalone-example).
4644
* As a contributor, please consult the [readme file of the dsl-core](./dsl-core/README.md) project for getting started information and prerequisites.
4745

48-
## Change Log
4946

50-
The current version of MDSL is 3.3.2. See [release notes](https://github.com/Microservice-API-Patterns/MDSL-Specification/releases) for additional update information.
47+
## Language Specification
48+
49+
* [Overview](https://socadk.github.io/MDSL)
50+
* [Endpoint types](https://socadk.github.io/MDSL/servicecontract) (a.k.a. ports)
51+
* [Bindings](https://socadk.github.io/MDSL/bindings) (a.k.a. adapters)
52+
* [Data types](https://socadk.github.io/MDSL/datacontract) (a.k.a. published language)
53+
* [Instance-level concepts](https://socadk.github.io/MDSL/optionalparts) (provider, client, gateway)
54+
55+
An implemented proposal of a language extension supporting queue-based messaging endpoints is [AsyncMDSL](https://github.com/giacomodeliberali/MDSL/tree/master/examples/asyncMDSL).
56+
5157

5258
## Repository Structure
5359

@@ -63,6 +69,17 @@ If you want to contribute to MDSL, you have to clone this repo and generate the
6369
*Note:* Setup and build process have been improved recently to ease integration with [Context Mapper](https://contextmapper.org/). As a consequence, the project has to be imported as an existing Maven project, and an adjustment of the IDE setup is required. The [readme](dsl-core/README.md) of the main project contains detailed instructions.
6470

6571

72+
## Change Log
73+
74+
The current version of MDSL is 4.0. See [change log](changelog.md) for an evolution history; see GitHub [release notes](https://github.com/Microservice-API-Patterns/MDSL-Specification/releases) for additional update information.
75+
76+
A possible roadmap for langiage and tools is (subject to change at any time):
77+
78+
* Integrate AsyncMDSL into this repository (and MDSL 4.0); it extends MDSL 3 at present.
79+
* Java binding validation and tool support
80+
* GraphQL Schema Language support
81+
82+
6683
## Context Information: MAP and Xtext
6784

6885
All [Microservice API Patterns (MAP)](https://microservice-api-patterns.org/) are supported and integrated one way or another:
@@ -71,25 +88,27 @@ All [Microservice API Patterns (MAP)](https://microservice-api-patterns.org/) ar
7188
* As enums for roles and responsibilities
7289
* As stereotypes annotating representation elements
7390

74-
See ["MAP Decorators" section of the MDSL tutorial](https://microservice-api-patterns.github.io/MDSL-Specification/tutorial) for more information. <!-- TODO copy one-pager in SummerSoC paper to GitHub pages or elsewhere in repo -->
91+
See ["MAP Decorators" section of the MDSL tutorial](https://socadk.github.io/MDSL/tutorial) for more information. <!-- TODO copy one-pager in SummerSoC paper to GitHub pages or elsewhere in repo -->
7592

76-
The MDSL grammar (to be found in dsl-core, in src folder of org.mdsl project) was originally developed with Eclipse Photon (4.8.0) and Xtext (2.14) as provided by the Eclipse Modeling Platform. MDSL makes use of the referencing feature in Xtext ('name' attribute). Future work is required to also support this technology in other IDEs (such as Visual Studio Code).
93+
The MDSL grammar, to be found in src folder of the `dsl-core/io.mdsl` project, was originally developed with Eclipse Photon (4.8.0) and Xtext (2.14) as provided by the Eclipse Modeling Platform. MDSL makes use of the referencing feature in Xtext ('name' attribute). Future work is required to also support this technology in other IDEs (such as Visual Studio Code).
7794

7895
Feedback and contributions welcome!
7996

8097
[ZIO (a.k.a. socadk)](https://ozimmer.ch/index.html)
8198

99+
82100
## Acknowledgements
83101

84-
The creation and release of MDSL 3.0 was supported by the [Hasler Foundation](https://haslerstiftung.ch/en/welcome-to-the-hasler-foundation/).
102+
The creation and release of MDSL 3 was supported by the [Hasler Foundation](https://haslerstiftung.ch/en/welcome-to-the-hasler-foundation/).
85103

86104
Contributors (input, DevOps support, feedback):
87105

88106
* [Olaf Zimmermann (ZIO)](https://ozimmer.ch)
107+
* Stefan Kapferer (also the author of the [MDSL generator in Context Mapper](https://contextmapper.org/docs/mdsl/))
89108
* MAP co-authors: Mirko Stocker, Daniel Lübke, Cesare Pautasso, Uwe Zdun
90-
* Bachelor students
109+
* Bachelor ans master students
91110
* MS 2019 and VSS 2019 participants
92-
* Stefan Kapferer (author of MDSL generator in Context Mapper)
111+
93112

94113
## Getting involved
95114

changelog.md

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
## MDSL change log (and release notes)
2+
3+
Also see GitHub [release notes](https://github.com/Microservice-API-Patterns/MDSL-Specification/releases).
4+
5+
V4.0, August 2020
6+
7+
* Improved HTTP and Java bindings
8+
* Added API provider implementation concept (assuming Java use for now)
9+
10+
V3.4, July 2020
11+
12+
* Cleanup
13+
* Additional generators: gRPC protocol buffers, Jolie (and, indirectly, WSDL/XML Schema)
14+
15+
<!--V 3.2, V3.3? -->
16+
17+
V3.1.1, June 2, 2020
18+
19+
* Added three EIPs as stereotypes on message level: `'Command_Message' | 'Document_Message' | 'Event_Message'`
20+
21+
V3.1.0, May 26, 2020
22+
23+
* Resolved two more TODOs in grammar
24+
* MAP decorators now match current pattern naming (operation level, element level)
25+
* Removed experimental MAP decorators (endpoint level)
26+
27+
V3.0.0, May 22, 2020
28+
29+
* Removed deprecated support for Value `V` as AP (`D` should be used instead)
30+
* Corrected MAP decorator rule `MapPattern`: now has `'Control_Metadata' | 'Aggregated_Metadata' | 'Provenance_Metadata'`
31+
* Semantic Versioning reverted to `String` (usage of semantic versioning to be validated, not forced by grammar)
32+
* Moved `default is "..."` value to data type definition (from cardinality); this is an experimental feature still!
33+
* Further TODO resolution
34+
* Documented optionality operations/messages in grammar and new example (`expecting`, `delivering`)
35+
* Misc documentation updates
36+
* The Eclipse plugin tool now supports a generic Freemarker generator and a few simple validators (demo)
37+
38+
V2.1.0, May 15, 2020
39+
40+
* Cleanup of grammar (TODOs, working comments, older rules)
41+
* Semantic version identifier: optional name removed
42+
43+
V2.0, May 5, 2020
44+
45+
* Experimental parts removed from v1.2.0 (e.g., composition support)
46+
47+
V1.2.0, March 17, 2020
48+
49+
* Extended proposal for asynch. messaging support on binding level (provider, client, gateway -> sender, receiver, broker)
50+
* March 25: project [wiki](https://github.com/Microservice-API-Patterns/MDSL-Specification/wiki) updated (presentations, getting started page)
51+
52+
V1.1.0, February 8, 2020
53+
54+
* Updated endpoint role names from MAP: `CONNECTOR_RESOURCE` -> `TRANSFER_RESOURCE`, `STATIC_DATA_HOLDER` -> `REFERENCE_DATA_HOLDER` (so incompatible change). `TRANSFER_RESOURCE` and `LINK_LOOKUP_RESOURCE` also available as aliases (experimental).
55+
* Updated operation responsibility names from MAP: `EVENT_PROCESSOR` -> `NOTIFICATION_OPERATION`, `BUSINESS_ACTIVITY_PROCESSOR` -> `STATE_TRANSITION_OPERATION` (*note:* kept old names as variants, so syntactically compatible)
56+
* Some grammar cleanup (comments, TODOs)
57+
58+
V1.0.3, January 9, 2020
59+
60+
* Deprecated `V`, brought back `D` for Data Element/Entity Element from MAP. Rationale: user feedback
61+
* Brought back long forms for parameter (stereo-)types: `Data`, `Identifier`, `Link`, `Metadata` (short forms `D`, `ID`, `L`, `MD`still work). Rationale: user feedback
62+
* Fixed doc pages bug (`blob` -> `raw`)
63+
64+
V1.0.2, October 18, 2019
65+
66+
* MAP decorators can now be "text" STRINGs (to ease/improve MDSL generation Context Mapper):
67+
* Example: `operation createAddress with responsibility "BUSINESS_ACTIVITY_PROCESSOR" in "REQUEST_REPLY" conversation`
68+
69+
V1.0.1, August 31, 2019
70+
71+
* Demo/proposal how to model pub/sub and event sourcing
72+
* Demo/proposal for specifying authentication (inspired by OAS 3.0)
73+
* Other feedback from VSS19 captured as TODOs (e.g., oneOf/allOf,anyOf from OAS 3.0)
74+
75+
V1.0, July 19, 2019
76+
77+
* Entire API description can now also be versioned semantically
78+
* Removed unnecessary () in treeNode rule (line 130)
79+
* Grammar rules edited for better antlr4 compatibility (no changes to language)
80+
* Endpoint parameters were experimental so far, and are now deprecated (but not featured in examples anyway)
81+
* Repository/examples cleanup (TODOs)
82+
83+
V0.99, June 26, 2019 (backward compatible except for `blob` -> `raw` and typo fix: `AGGRESSIVE_OBSOLESCENCE`)
84+
85+
* Housekeeping
86+
* Mappy demo support (examples)
87+
* Renamed byte array base type from `blob` to `raw`
88+
* Type in EvolutionStrategy rule fixed: from `AGGRESSIVE_OBSOLESCENSE` to `AGGRESSIVE_OBSOLESCENCE`
89+
90+
V0.98, May 22, 2019 (backward compatible)
91+
92+
* Data types and operations can now be versioned as well:
93+
* `data type VersionedDataType version 0.0.1 {ID, V}`
94+
* `operation sampleOperation version 0.0.1 with responsibility EVENT_PROCESSOR`
95+
96+
V0.97, May 15, 2019
97+
98+
* Removed '|' from Cardinality rule, no longer needed and not featured in examples anyway
99+
* Some new comments and TODOs
100+
101+
V0.95 and v.096, May 13, 2019
102+
103+
* `V<"SomeUnknownType">` is now illegal, same effect can be achieved with plain identifier or `data type SomeUnknownType P`
104+
* Refactored data type grammar to make it more precise and to make code completion more useful (to be tested)
105+
* External SLAs now supported
106+
* Many other tweaks in API provider part (e.g. SimpleMeasurement)
107+
108+
V0.94, May 13, 2019
109+
110+
* Added `V<void>` due to user feedback and test results
111+
* Changed base types to include 'long' and 'double' (instead of 'float')
112+
* Enabled support for choice modeling on PT level data type ChoiceDemo `{"optionA":V|"optionB":V}`
113+
* Updated pattern stereotype enum to reflect latest MAP status
114+
115+
V0.93a, May 10, 2019:
116+
117+
* Removed "contract" from "endpoint contact type" for brevity
118+
* Removed "instance" from "endpoint instance location" for brevity
119+
* `<<Value>>` no longer available as pattern stereotype (undone later)
120+
* Entity and E no longer available as parameter roles (but D and Data)
121+
122+
V0.93b, May 10, 2019 (experimental):
123+
124+
* Only `V<int>` supported as parameter role/type pair, `Value<int>` removed to avoid confusion with `<<stereotypes>>`
125+
* `<<Identifier>>` and `<<Link>>` and `<<Metadata>>` now available as pattern stereotypes (`<<Entity>>` was supported already)

docs/_layouts/default.html

-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77
<meta name="viewport" content="width=device-width,maximum-scale=2">
88
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
99

10-
<link rel="apple-touch-icon" sizes="180x180" href="/MDSL-Specification/assets/images/apple-touch-icon.png">
11-
<link rel="icon" type="image/png" sizes="32x32" href="/MDSL-Specification/assets/images/favicon-32x32.png">
12-
<link rel="icon" type="image/png" sizes="16x16" href="/MDSL-Specification/assets/images/favicon-16x16.png">
13-
<link rel="manifest" href="/MDSL-Specification/assets/images/site.webmanifest">
14-
1510
{% seo %}
1611
</head>
1712

0 commit comments

Comments
 (0)