/fuel-lang

Custom DSL language and its compiler

Primary LanguageJavaScript

Fuel Language

fuel language is a simple DSL based on this model. Using ANTLR4 :

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.

Documentation

Types

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"
    }

Other types

  • number
  • int
  • bool
  • string
  • number
  • array
  • object

Statements

  • assignment
    • let variableName = array | value
  • print
    • print definedVariable
  • relation
    • REL definedVariable => definedVariable as newVariableName
  • ifThenDo
    • IF ACT.fieldRef operator numberType DO 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

Comments

//this is a single line comment /* this is a multi-line comment */