fuel language is a simple DSL based on this model. Using ANTLR4 :
- I wrote a simple grammar
- Used antlr4ts to generate a parser and a lexer targetting TypeScript
- In order to output the errors to my custom console I had to customize the ANTLR basic error listener avaliable here
- I used the visitor pattern so I used the package to generate it as well
After generating the parser, lexer and a basic visitor I implemented a custom visitor that allowed to traverse the parse tree and output valid code.
according to the model we distinguish between 4 primitive types:
- ENT defines an Entity eg.
ENT KONTENER_0001 = {
"entity_type": "Kontener",
"entitiy_name": "Kontener nr1"
}
- ACT defines an Activity, requires result and entitiy field
ACT POMIAR_TEMPERATURY_0002 = {
"type":"pomiar temperatury",
"result":"25",
"entity": "CZUJNIK_0002"
}
- EVT defines an Event requires a goal field
EVT ALERT_0002 = {
"name":"alert nr2 sredni stopien zagrozenia",
"goal":"powiadom ochrone",
"location": "ul. Warszawska 15A, 42-200 Częstochowa, I piętro, pierwszy kontener od okna",
"subject": "CZUJNIK_0002",
"state": "active"
}
- REL [ENT] => [ENT] as defines a Relation between two entity objects
REL PALIWO_0002 => KONTENER_0002 as REL_0004 = {
"name": "Paliwo 2 znajduje sie w Kontenerze 2",
"state": "active"
}
- number
- int
- bool
- string
- number
- array
- object
- assignment
let
variableName=
array | value
- print
print
definedVariable
- relation
REL
definedVariable=>
definedVariableas
newVariableName
- ifThenDo
IF
ACT.
fieldRefoperator
numberTypeDO
EVT.
fieldRef
IF POMIAR_TEMPERATURY_0001.result > 30
DO ALERT_0001.goal
results in
invoker: CZUJNIK_0001
activity: POMIAR_TEMPERATURY_0001
event: alert nr1 najwyzszy stopien zagrozenia
eventGoal: powiadom ochrone, straz pozarna, wojsko
eventLocation: ul. Warszawska 15A, 42-200 Częstochowa, I piętro, pierwszy kontener od okna
invokerDesc: Czujnik1 znajduje sie w Kontenerze 1
//this is a single line comment
/* this is a multi-line comment */