summaryrefslogtreecommitdiffstats
path: root/docs/5_Component_Documentation/3_rba.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/5_Component_Documentation/3_rba.md')
-rw-r--r--docs/5_Component_Documentation/3_rba.md22
1 files changed, 21 insertions, 1 deletions
diff --git a/docs/5_Component_Documentation/3_rba.md b/docs/5_Component_Documentation/3_rba.md
index 0cfe88e..9661923 100644
--- a/docs/5_Component_Documentation/3_rba.md
+++ b/docs/5_Component_Documentation/3_rba.md
@@ -1182,6 +1182,26 @@ Stereotype<ViewContent> display_warnning (name,allocatable,priority) @BEGIN@
height: 100
}
State NORMAL { piority: @{priority} }
-
@END@
```
+
+## Generate .json from .rba file
+Download [prebuilt package](https://git.automotivelinux.org/staging/rba-tool/tree/tool_bin)
+
+- If some errors occur, RBAModel.json is not generated (exit code 1).
+````
+java -cp ./ -jar JSONGenerator.jar "[path to model directory]" "[path to output directory]"
+````
+
+Example:
+
+- RBAModel.json file is generated in directory same as JSONGenerator.jar
+````
+java -cp ./ -jar JSONGenerator.jar "./RBAModel.rba"
+````
+
+- RBAModel.json file is generated in ~/ directory
+````
+java -cp ./ -jar JSONGenerator.jar "./RBAModel.rba" "~/"
+````
+Note: For the reference .rba file is given under the path [prebuilt package/sample_model](https://git.automotivelinux.org/staging/rba-tool/tree/tool_bin/sample_model)