Last modified by cmot on 2023/09/11 16:16

From version 11.1
edited by cmot
on 2014/06/10 11:48
Change comment: There is no comment for this version
To version 20.1
edited by cmot
on 2014/06/10 17:18
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -5,7 +5,7 @@
5 5  1. Enable the TCP Server in the KIELER RCA and
6 6  1. Download the [[KielerCompilerConsole>>url:http://git.rtsys.informatik.uni-kiel.de:7990/projects/KIELER/repos/semantics/browse/standalone/KielerCompiler.jar?at=1c807c15f863b699d96d97038501663608d0f2bf&raw||shape="rect"]] as a runnable Java JAR archive and run it.
7 7  
8 -In the following we describe the details for both, the enabling of the TCP server and the possible command line calls of KiCo from the console.
8 +In the following we give a short quick start guide and describe the details for both, the enabling of the TCP server and the possible command line calls of KiCo from the command line:
9 9  
10 10  
11 11  
... ... @@ -13,6 +13,21 @@
13 13  
14 14  
15 15  
16 +== Quick Start Guide ==
17 +
18 +1. Download KIELER RCA from [[http:~~/~~/rtsys.informatik.uni-kiel.de/~~~~kieler/files/nightly/kieler/>>url:http://rtsys.informatik.uni-kiel.de/~~kieler/files/nightly/kieler/||shape="rect"]] extract it to some location x on your hard drive
19 +1. Download the [[KielerCompilerConsole>>url:http://git.rtsys.informatik.uni-kiel.de:7990/projects/KIELER/repos/semantics/browse/standalone/KielerCompiler.jar?at=1c807c15f863b699d96d97038501663608d0f2bf&raw||shape="rect"]] as a runnable Java JAR archive and save it to some location y on your hard drive
20 +1. Open console window and change directory to location x, then type:
21 +
22 +
23 +{{{kieler -application de.cau.cs.kieler.kico.web.server -noExit -p 5555}}}
24 +1. Change directory to location y, then type:
25 +
26 +
27 +{{{java -jar KielerCompiler.jar 5555 -f somescchart.sct -o somesschart.c CODEGENERATION}}}(((
28 +where somescchart.sct must be a valid SCChart modeled with the KIELER SCCharts editor. You should find the generated c code in the file somsschart.c. Be sure that somescchart.sct is also located in directory y (or give the full path in "...").
29 +)))
30 +
16 16  == Enable the TCP Server ==
17 17  
18 18  Before you can use the KielerCompiler.jar from the console, you need to start the KIELER RCA and activate the TCP Server. This is done using the button at 1. shown in the screenshot below. When pressing it the windows shown at 2. is displayed and allows to enable or disable the server and also to modify the default port of 5555. Whenever the server was enabled and is started, you will see its job running at 3. in the lower region of the KIELER RCA. When you enabled the server in previous runs of the KIELER RCA it will automatically started when you run KIELER again.
... ... @@ -40,8 +40,62 @@
40 40  * -v : Use verbose compilation, more error messages
41 41  * -s: Use strict mode compilation (only apply selected transformations)
42 42  
43 -== Examples ==
58 +== Transformation IDs ==
44 44  
60 +In order to use the KIELER Compiler from the command line you need to know the ID of the transformations you would like to apply.
61 +
62 +|=(((
63 +Common Transformation IDs
64 +)))|=(((
65 +More Transformation IDs
66 +)))
67 +|(((
68 +Here are the most common ones:
69 +
70 +|=(((
71 +Transformation ID
72 +)))|=(((
73 +Description
74 +)))
75 +|(((
76 +REFERENCE
77 +)))|(((
78 +Expand reference states
79 +)))
80 +|(((
81 +EXTENDED
82 +)))|(((
83 +All extended SCCharts transformations resulting in a Core SCChart
84 +)))
85 +|(((
86 +CORE
87 +)))|(((
88 +All core SCCharts transformations resulting in a Normalized SCChart
89 +)))
90 +|(((
91 +SCGRAPH
92 +)))|(((
93 +Transform to an SCG
94 +)))
95 +|(% colspan="1" %)(% colspan="1" %)
96 +(((
97 +CODEGENERATION
98 +)))|(% colspan="1" %)(% colspan="1" %)
99 +(((
100 +Generate C code
101 +)))
102 +)))|(((
103 +In order to get other transformation IDs you can use the KIELER Compiler Selection View. It will show the transformation ID for each transformation or transformation group as a tooltip text that woll show up if you place and hold the mouse over the transformation node as shown below:
104 +
105 +[[image:attach:TRANSFORMATIONIDs.jpg]]
106 +)))
107 +
108 +
109 +
110 +
111 +
112 +== Example Calls ==
113 +
45 45  === Example 1 ===
46 46  
47 47  [[image:attach:KiCoConsole2.jpg]]
Confluence.Code.ConfluencePageClass[0]
Id
... ... @@ -1,1 +1,1 @@
1 -9470936
1 +9470949
URL
... ... @@ -1,1 +1,1 @@
1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/9470936/KIELER Compiler Console
1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/9470949/KIELER Compiler Console