Wiki source code of V2 Project Management

Version 8.1 by Alexander Schulz-Rosengarten on 2018/12/11 13:00

Show last authors
1 {{panel bgColor="orange" title="Deprecated since 0.14"}}
2 This article is deprecated. The described features are no longer available in current releases.
3 {{/panel}}
4
5 = Prom - Project Management in KIELER =
6
7 **Topics**
8
9
10
11 {{toc minLevel="2"/}}
12
13 ----
14
15 == Overview ==
16
17 The KIELER Compiler (KiCo) can generate different code targets from models. For example it is possible to generate C and Java code from an SCT file. As a result KIELER has to integrate with existing development tools and practices for the C and Java world. In the context of embedded systems, the target device also varies heavily.
18
19 Therefore the KIELER Project Management (Prom) has been developed. It eases the creation, compilation and deployment of projects, when using models that can be compiled via KiCo (e.g. SCCharts, Esterel). Furthermore it eases the creation of wrapper code, which is used to deploy, run, or simulate the model.
20
21 The features provided by prom include:
22
23 * Project and file creation **wizards**
24 * An incremental **project builder** that performs several tasks, namely\\
25 ** Compilation of model files using KiCo
26 ** Template processing to generate code for deployment or simulation
27 ** Compilation of simulation code to an executable
28 * A **DSL** **for configuration** of the project build
29
30 In the following it is explained in further detail how to use and extend these features.
31
32 \\
33
34 ----
35
36 == Project Wizards ==
37
38 SCCharts can be compiled for example to C using the KIELER Compiler and there is existing tooling for the C language in Eclipse. Using the SCCharts project wizard, such existing tooling for a target language or platform can be re-used.
39
40 Therefore the actual project creation is delegated to another project wizard. Afterwards additional files are created within this newly created project by the SCCharts project wizard. For instance a model file and files for configuration of the build or templates for wrapper code might be added to the project. Further the created project properties are extended with information specific to SCCharts projects, e.g., that the Prom project builder should be used. This approach makes it possible to re-use project wizards from the CDT or JDT and get a working setup with a model file that can be compiled, simulated and deployed with low configuration effort.
41
42 Which project wizard from existing tooling should be used and which files should be created afterwards can be configured in the Eclipse preferences. Pre-defined setups for various languages and target platforms can be created this way.
43
44 == File Wizards ==
45
46 There are various file wizards for the DSL that come with KIELER. These create a file with some default content.
47
48 File wizards exist for
49
50 * SCCharts text files (**sctx** files)
51 * Build configurations (**kibuild** files)
52 * Simulation configurations (**kisim** files)
53 * Simulation visualization configurations (**kivis** files)
54 * Freemarker Templates (**ftl** files)
55 \\
56
57 ----
58
59 == The Project Builder ==
60
61 The incremental project builder is run by Eclipse either in the background when resources changes (//Project > Build automatically//), or manually by the user (//Project > Build Project//). What and how files are built can be configured using a new DSL (kibuild files). Errors and warnings that occur during the build are added as //markers// to the resources where they occur, which is a known concept in the Eclipse IDE. For instance when working with Java, compiler errors are added as markers to files when they are saved. This is now also possible for SCCharts text files and provides faster compiler feedback to users, e.g. because a model can not be compiled, as long as the automatic build is active.
62
63 Several actions are performed when a project is built:
64
65 * Model files are compiled
66 ** Optionally a template is processed for each model to generate the simulation code for the model.
67 * Simulation code is compiled to an executable, which can be started using the new simulation
68 * Freemarker templates are processed to generate code.
69 Depending of the type of the template, additional variables are injected into the template\\
70 ** //Wrapper code templates// are used to create the wrapper code for a specific model.
71 Annotations on inputs and outputs in the model can be used to define which code snippets are injected as part of the build. These code snippets typically contain code to read or write the corresponding inputs and outputs.
72 ** //Simulation code templates// are used to create wrapper code for simulation of models.
73 Thus it is a special form of wrapper code template. Instead of user defined annotations, the injected code snippets are determined by the variables in the model.
74 This kind of template can be configured as part of a model compiler to automatically generate the simulation for all compiled models.
75 ** //Simple templates// are self contained and no additional variables are injected.
76
77 If all of these are defined, an incremental project build could consist for example of the following steps:
78
79 * Build a model file //A.sctx//\\
80 ** Afterwards process a simulation template to generate its simulation code //Sim_A.c//
81 * Compile the simulation code //Sim_A.c// to an executable using gcc
82 * Create wrapper code for the model, that is ready to be deployed
83
84 Note that if the //Build automatically// option is set, it is possible to (re-)start a simulation without the need to (re-)compile the corresponding model beforehand. This is because the simulation executable has been created in the background as part of the build and is updated if the model changes. This results in a faster code-test-workflow compared to the previous approach, in which a model was always re-compiled before its simulation was started.
85
86 === Build Configuration via KiBuild ===
87
88 The new project builder is configured using a domain specific language, namely KiBuild. Corresponding to the actions that are performed during the build, its configuration consists of //model compilers//, //simulation compilers// and //template processors//. A template processor is either a //simple template processor//, //wrapper code template processor// or //simulation template processor//.
89
90 When writing the configuration, use code completion to see available attributes for the entities. The following table describes the available attributes.
91
92 (% class="relative-table wrapped" style="width: 99.937%;" %)
93 |=(((
94 **Attribute**
95 )))|=(((
96 Domain
97 )))|=(% colspan="1" %)(% colspan="1" %)
98 (((
99 Default Value
100 )))|=(((
101 Description
102 )))
103 |(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
104 (((
105 **KiCo Model Compiler**
106 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
107 (((
108 \\
109 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
110 (((
111 \\
112 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
113 (((
114 \\
115 )))
116 |(% colspan="1" %)(% colspan="1" %)
117 (((
118 outputFolder
119 )))|(% colspan="1" %)(% colspan="1" %)
120 (((
121 String
122 )))|(% colspan="1" %)(% colspan="1" %)
123 (((
124 kieler-gen
125 )))|(% colspan="1" %)(% colspan="1" %)
126 (((
127 {{{The folder in which compilation output is saved}}}
128 )))
129 |(% colspan="1" %)(% colspan="1" %)
130 (((
131 whitelist
132 )))|(% colspan="1" %)(% colspan="1" %)
133 (((
134 String, Regular expression
135 )))|(% colspan="1" %)(% colspan="1" %)
136 (((
137 -
138 )))|(% colspan="1" %)(% colspan="1" %)
139 (((
140 Only model files that have a location matching this regular expression are compiled. Thus to compile only a specific model, one can use the expression "ModelName.sctx"
141 )))
142 |(% colspan="1" %)(% colspan="1" %)
143 (((
144 blacklist
145 )))|(% colspan="1" %)(% colspan="1" %)
146 (((
147 String, Regular expression
148 )))|(% colspan="1" %)(% colspan="1" %)
149 (((
150 -
151 )))|(% colspan="1" %)(% colspan="1" %)
152 (((
153 Model files that have a location matching this regular expression are exluded from the build. Thus to exclued all models and skip compilation, one can use ".*", which matches everything.
154 )))
155 |(% colspan="1" %)(% colspan="1" %)
156 (((
157 outputFileExtension
158 )))|(% colspan="1" %)(% colspan="1" %)
159 (((
160 String
161 )))|(% colspan="1" %)(% colspan="1" %)
162 (((
163 c
164 )))|(% colspan="1" %)(% colspan="1" %)
165 (((
166 Compiled models are saved with using this file extension. Thus this attribute should match the code format that is generated by KiCo at the end of the compilation.
167 )))
168 |(% colspan="1" %)(% colspan="1" %)
169 (((
170 outputTemplate
171 )))|(% colspan="1" %)(% colspan="1" %)
172 (((
173 String, Project relative file path
174 )))|(% colspan="1" %)(% colspan="1" %)
175 (((
176 -
177 )))|(% colspan="1" %)(% colspan="1" %)
178 (((
179 An optional template to add surrounding code to KiCo generated output for every compiled file. In the template the placeholder **${kico_code}** can be used an will be replaced with the compiled code.
180 )))
181 |(% colspan="1" %)(% colspan="1" %)
182 (((
183 compileChain
184 )))|(% colspan="1" %)(% colspan="1" %)
185 (((
186 (% class="content-wrapper" %)
187 (((
188 String, Id of a pre-defined compilation system or processor id or a project relative file path to a kico file
189
190 Can also be a list of the above to compile models in several steps
191
192 Can also be a map to define the compilation of different model types
193
194 {{code}}
195 compileChain {
196 sctx: de.cau.cs.kieler.sccharts.netlist.simple
197 strl: de.cau.cs.kieler.esterel.netlist.simple
198 }
199 {{/code}}
200
201 \\
202
203 \\
204 )))
205 )))|(% colspan="1" %)(% colspan="1" %)
206 (((
207 de.cau.cs.kieler.sccharts.netlist.simple
208 )))|(% colspan="1" %)(% colspan="1" %)
209 (((
210 The compilation system that is used by KiCo to determine the compile chain.
211 )))
212 |(% colspan="1" %)(% colspan="1" %)
213 (((
214 communicateRegisterVariables
215 )))|(% colspan="1" %)(% colspan="1" %)
216 (((
217 Boolean
218 )))|(% colspan="1" %)(% colspan="1" %)
219 (((
220 true
221 )))|(% colspan="1" %)(% colspan="1" %)
222 (((
223 Determines if the variables that save the internal state of a model should be communicated to the simulation generation. If set to false, stepping back and forth in the simulation history will not change the internal state of the model.
224 )))
225 |(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
226 (((
227 **Simulation Compiler**
228 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
229 (((
230 \\
231 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
232 (((
233 \\
234 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
235 (((
236 \\
237 )))
238 |(% colspan="1" %)(% colspan="1" %)
239 (((
240 command
241 )))|(% colspan="1" %)(% colspan="1" %)
242 (((
243 String
244 )))|(% colspan="1" %)(% colspan="1" %)
245 (((
246 For C:
247
248 "gcc -std=c99 -Werror=int-conversion -o \"./${outputFolder}/${executable_name}\""
249
250 For Java:
251
252 "jar cvfe \"../${outputFolder}/${executable_name}\""
253 )))|(% colspan="1" %)(% colspan="1" %)
254 (((
255 The command that is called to compile simulation code to an executable.
256
257 In case of the C simulation, the compiled file is added implicitly as additional parameter, to create an executable.
258
259 In case of Java, all class files and the class file of the compiled model are added implicitly to create an executable JAR file.
260 )))
261 |(% colspan="1" %)(% colspan="1" %)
262 (((
263 outputFolder
264 )))|(% colspan="1" %)(% colspan="1" %)
265 (((
266 String, Project relative folder path
267 )))|(% colspan="1" %)(% colspan="1" %)
268 (((
269 kieler-gen/sim/bin
270 )))|(% colspan="1" %)(% colspan="1" %)
271 (((
272 The folder in which compiled output will be saved.
273
274 Note that it is possible to use a command that creates the compiled files in a different location. However the folder specified in this attribute is created before the command is executed and refreshed afterwards. This ensures that the folder exists and changes will be noticed in the Eclipse workspace.
275 )))
276 |(% colspan="1" %)(% colspan="1" %)
277 (((
278 libFolder
279 )))|(% colspan="1" %)(% colspan="1" %)
280 (((
281 String, Project relative folder path
282 )))|(% colspan="1" %)(% colspan="1" %)
283 (((
284 kieler-gen/sim/lib
285 )))|(% colspan="1" %)(% colspan="1" %)
286 (((
287 The folder where additional files are saved before the command is run. These files can be linked into the simulation code, e.g., for JSON handling.
288 )))
289 |(% colspan="1" %)(% colspan="1" %)
290 (((
291 timeout
292 )))|(% colspan="1" %)(% colspan="1" %)
293 (((
294 int
295 )))|(% colspan="1" %)(% colspan="1" %)
296 (((
297 10
298 )))|(% colspan="1" %)(% colspan="1" %)
299 (((
300 Time in seconds that is waited for the executed command to finish. If the command runs longer, it is assumed to be failed and aborted.
301 )))
302 |(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
303 (((
304 **Template Processor**
305 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
306 (((
307 \\
308 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
309 (((
310 \\
311 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
312 (((
313 \\
314 )))
315 |(% colspan="1" %)(% colspan="1" %)
316 (((
317 file
318 )))|(% colspan="1" %)(% colspan="1" %)
319 (((
320 String, Project relative file path
321 )))|(% colspan="1" %)(% colspan="1" %)
322 (((
323 -
324 )))|(% colspan="1" %)(% colspan="1" %)
325 (((
326 The template file that should be processed
327 )))
328 |(% colspan="1" %)(% colspan="1" %)
329 (((
330 target
331 )))|(% colspan="1" %)(% colspan="1" %)
332 (((
333 String, Project relative file path
334 )))|(% colspan="1" %)(% colspan="1" %)
335 (((
336 -
337 )))|(% colspan="1" %)(% colspan="1" %)
338 (((
339 The file in which the output should be saved
340 )))
341 |(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
342 (((
343 **Wrapper Code Template Processor**
344 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
345 (((
346 \\
347 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
348 (((
349 \\
350 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
351 (((
352 \\
353 )))
354 |(% colspan="1" %)(% colspan="1" %)
355 (((
356 modelFile
357 )))|(% colspan="1" %)(% colspan="1" %)
358 (((
359 String, Project relative file path
360 )))|(% colspan="1" %)(% colspan="1" %)
361 (((
362 -
363 )))|(% colspan="1" %)(% colspan="1" %)
364 (((
365 The model file that is searched for annotations to determine the code snippets to be injected.
366 )))
367 |(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
368 (((
369 **Simulation Code Template Processor**
370 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
371 (((
372 \\
373 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
374 (((
375 \\
376 )))|(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)(% class="highlight-blue" colspan="1" data-highlight-colour="blue" %)
377 (((
378 \\
379 )))
380 |(% colspan="1" %)(% colspan="1" %)
381 (((
382 modelFile
383 )))|(% colspan="1" %)(% colspan="1" %)
384 (((
385 String, Project relative file path
386 )))|(% colspan="1" %)(% colspan="1" %)
387 (((
388 -
389 )))|(% colspan="1" %)(% colspan="1" %)
390 (((
391 The model file that is searched for annotations to determine the code snippets to be injected
392 )))
393 |(% colspan="1" %)(% colspan="1" %)
394 (((
395 compiledModelFile
396 )))|(% colspan="1" %)(% colspan="1" %)
397 (((
398 String, Absolute file system path
399 )))|(% colspan="1" %)(% colspan="1" %)
400 (((
401 -
402 )))|(% colspan="1" %)(% colspan="1" %)
403 (((
404 The absolute path of the compiled model file for which the simulation is created. This is used to replace the placeholder ${compiled_model_loc} in the simulation code template
405 )))
406 |(% colspan="1" %)(% colspan="1" %)
407 (((
408 variables
409 )))|(% colspan="1" %)(% colspan="1" %)
410 (((
411 (% class="content-wrapper" %)
412 (((
413 Map, e.g.,
414
415 {{code}}
416 variables {
417 input: myVar1
418 output: {
419 bool: myVar2
420 int: myVar3[2][3]
421 }
422 }
423 {{/code}}
424 )))
425 )))|(% colspan="1" %)(% colspan="1" %)
426 (((
427 -
428 )))|(% colspan="1" %)(% colspan="1" %)
429 (((
430 Optional additional variables that should be communicated to the outside
431 )))
432 |(% colspan="1" %)(% colspan="1" %)
433 (((
434 interfaceTypes
435 )))|(% colspan="1" %)(% colspan="1" %)
436 (((
437 String, List of Strings
438 )))|(% colspan="1" %)(% colspan="1" %)
439 (((
440 -
441 )))|(% colspan="1" %)(% colspan="1" %)
442 (((
443 The interface types that should be communicated in the simulation, e.g., input, output, internal
444 )))
445
446 \\
447
448 Example for KiBuild files:
449
450 {{code title="Simple KiBuild Example" linenumbers="true"}}
451 // Compile models to C code
452 model compiler kico {
453 outputFolder: kieler-gen // The folder, in which the compilation output is saved
454 outputFileExtension: c // The file extension for compiled files
455 compileChain: de.cau.cs.kieler.sccharts.netlist.simple // The system that determines the compile chain within the KIELER compiler
456
457 // Generate C simulation for compiled models
458 process simulation template {
459 file: assets/CSimulation.ftl // A template for simulation code
460 }
461 }
462
463 // Compile simulation code
464 simulation compiler c {
465 libFolder: kieler-gen/sim/lib // Create additional libraries required for compilation in this folder
466 outputFolder: kieler-gen/sim/bin // Create the executables in this folder
467 command: "gcc -std=c99 -o ./${outputFolder}/${executable_name} ${file_path} " // Use gcc to compile the code
468 }
469
470
471 {{/code}}
472
473 {{code title="Complex KiBuild Example"}}
474 // Compile models to Java code
475 model compiler kico {
476 outputFolder: kieler-gen
477 outputFileExtension: java
478 outputTemplate: assets/OutputTemplate.ftl
479 compileChain: de.cau.cs.kieler.sccharts.netlist.simple
480 whitelist: "ModelA|ModelB" // Only compile models that match this regex
481
482 // Generate C simulation for compiled models
483 process simulation template {
484 file: assets/JavaSimulation.ftl
485 }
486 }
487
488 // Compile simulation code
489 simulation compiler java {
490 libFolder: kieler-gen/org/json
491 outputFolder: kieler-gen/sim/bin
492 command: "javac -cp kieler-gen -d bin \"${file_path}\" "
493 jarCommand: "jar cvfe \"./${outputFolder}/${executable_name}\" sim.code.${file_basename} -C bin . "
494 }
495
496 // Process a simple template
497 process template {
498 file: Template.ftl
499 target: Output.txt
500 }
501
502 // Process a template to generate a main file that can be deployed.
503 process wrapper template {
504 file: Main.ftl
505 target: kieler-gen/Main.c
506 modelFile: MyModel.sctx
507 }
508
509 // Process a template to generate a simulation for a model that has been compiled with some other framework
510 process simulation template {
511 file: assets/JavaSimulationForOtherModel.ftl
512 target: kieler-gen/Sim_OtherModel.java
513 variables: { // These variables should be communicated to the outside
514 input: a,b,c
515 output: x,y,z
516 }
517 interfaceTypes: input, output // Only communicate these interface types. In this case, internal variables are not communicated.
518 }
519 {{/code}}
520
521 \\
522
523 ----
524
525 == Project Drafts ==
526
527 Project drafts are used to provide default settings for project creation. They are configured in the **preferences** (//Window //>// Preferences > KIELER SCCharts > Project Drafts//).
528
529 An project draft consists of
530
531 1. a unique **name**, which may not contain a comma
532 1. an **associated** project wizard
533 1. the path of the default **model file** for the project
534 1. the path of the default **main file** for the project
535 1. information about **folders and files** that should be imported at project setup
536
537 Besides the name, all of these are optional, but can improve the workflow.
538
539 The associated project wizard is run as part of the Prom project wizard and takes care of the actual project creation. Afterwards the model file is created and finally other folders and files are imported.
540
541 === Placeholders ===
542
543 There are some placeholders that can be used in initial resources for projects, which are listed below.
544
545 (% class="wrapped" %)
546 |=(((
547 Placeholder
548 )))|=(((
549 Description
550 )))
551 |(((
552 ${project_name}
553 )))|(((
554 Will be replaced with the name of the project that is created
555 )))
556 |(((
557 ${modelFile_path}
558 )))|(((
559 The project relative path of the initial model file
560 )))
561 |(% colspan="1" %)(% colspan="1" %)
562 (((
563 ${modelFile_name}
564 )))|(% colspan="1" %)(% colspan="1" %)
565 (((
566 The name of the initial model file
567 )))
568 |(% colspan="1" %)(% colspan="1" %)
569 (((
570 ${modelFile_basename}
571 )))|(% colspan="1" %)(% colspan="1" %)
572 (((
573 The name of the initial model file without file extension
574 )))
575
576 === Paths for imported resources ===
577
578 To import a resource (folder or file), its project relative path has to be specified. The resource will be created at this location in the project. Furthermore, it is possible to specify initial content for these resources. This is done in the field //origin//. Without an origin specifed, an empty resource will be created.
579
580 To specify intial content for a file, the origin has to be an **absolute file path** or an **URI** with the platform scheme of Eclipse. Such an URI has the form //[[plaftorm:/plugin/a.plugin.name/folder/in/the/plugin/file.txt>>url:http://plaftorm/plugin/a.plugin.name/folder/in/the/plugin/file.txt||shape="rect"]]// Specifying intial content for a folder is analog. Its origin has to be an **absolute directory path** or an **URI** in the form //[[plaftorm:/plugin/a.plugin.name/folder/in/the/plugin>>url:http://plaftorm/plugin/a.plugin.name/folder/in/the/plugin||shape="rect"]]//
581
582 ----
583
584 == Wrapper Code Generation ==
585
586 When modeling a program for an embedded system, it is necessary to set inputs and outputs of physical components (sensors/actuators) to inputs and outputs of the model. This is typically done using wrapper code. However, **wrapper code is often similar** for a specific device and programming language.
587
588 Therefore one can write **wrapper code snippets** for a target device. These can then be injected to a **template file**. What snippets are injected is defined using **annotations on inputs and outputs** directly in the model file.
589
590 In SCT files, annotations are added as in java, with an at-sign e.g. //@Wrapper Clock, "500"//. You can write implicit and explicit wrapper code annotations.
591
592 Explicit annotations have the form **{{code language="none"}}@Wrapper SnippetName, arg1, arg2, ..., argN{{/code}}**. An explicit wrapper annotation raises an error if the snippet does not exist, thus it is **recommened** to use the explicit **@Wrapper** annotation. Every other annotation is tried as wrapper code annotation as well, but will be ignored, if no such snippet could be found. Thus you can write the above explicit annotation as **@SnippetName arg1, arg2, ..., argN**{{code language="none"}}{{/code}}, but there will be no error if the snippet with this name does not exist or could not be found, for example because of a typo.
593
594 **//Note~://** Annotation **names** and parameters are **case sensitive**. That means that //Clock, clock, Floodlight, FloodLight// are all different annotations.
595
596 [[image:attach:wrapper_code_generation_scheme.png]]
597
598 In the **template file** one can use special **placeholders**.
599
600 **${file_name}** is replaced with the name withouth extension of the file that is generated (e.g. //Main.java// will be //Main//).
601
602 **${model_name}** is replaced with the name of the last compiled model.
603
604 **${declarations}** and** ${decls}** will be replaced with additional declarations of variables and functions (<@decl>...</@decl> of a snippet definition). Declarations should occur before the tick loop of the model file. In general they are not required for Java code but may be useful in C applications (e.g. for //extern// calls).
605
606 **${initializations}** and **${inits}** will be replaced with initialization code for components (<@init>...</@init> of a snippet definition). Initialization should occur before the tick loop of the model file.
607
608 **${inputs}** will be replaced with code to set inputs for the model (<@input>...</@input> of a snippet definition). Setting model inputs should occur in the tick loop, before the tick function call.
609
610 **${outputs}** will be replaced with code to read outputs of the model. (<@output>...</@output> of a snippet definition). Reading outputs of the model should occur in the tick loop, after the tick function call.
611
612 **${releases}** will be replaced with code to free allocated resources. (<@release>...</@release> of a snippet definition). Releasing resources should occur after the tick loop at the end of the program.
613
614 [[image:attach:template_file_structure.png]]
615
616 To ease the modification of the template file, one can open it with the text editor the final code will be for. This will enable syntax highlighting and code completion for the langauge, but it will not show any errors. You can open the file for example with the Java Editor of Eclipse using //Right Click > Open With > Other > Java Editor//
617
618 === Simulation templates ===
619
620 The task of the simulation code is to read the inputs from the KIELER user for the simulation, execute a tick, then send the outputs that have been produced back to KIELER. The communication with KIELER is done using a JSON format.
621
622 To create the simulation code, a template is used in which code is injected for each variable in the model to fill the JSON object with the current variable values. This way, the state of the model is communicated to the outside. Before the tick, inputs can be set in the model. Thus there is also code injected for each variable in the model to change its value using a JSON input.
623
624 In conclusion, the simulation code generation is a special form of wrapper code generation. For a simulation template, the injected code snippets are not selected from annotations in the model. Instead code is injected in a specified form for all variables to communicate their states using a JSON format.
625
626 === FreeMarker ===
627
628 The wrapper code injection is done using the open source **template engine [[FreeMarker>>url:http://freemarker.org/||shape="rect"]]**. A wrapper code snippet is basically a [[Macro>>url:http://freemarker.org/docs/ref_directive_macro.html||shape="rect"]] definition of FreeMarker. The Macro is called when the corresponding annotation is found in the model file. The file extension of FreeMarker templates is **.ftl**.
629
630 There is an [[Eclipse plugin>>url:http://freemarker.org/editors.html||shape="rect"]] for FreeMarker as part of the JBoss Tools Project. It can be installed using the Eclipse Marketplace.
631
632 \\
633
634 Example for wrapper code generation from annotations:
635
636 === [[image:attach:wrapper_code_generation_example.png]] ===
637
638 ----
639
640 == Problem Solving ==
641
642 === CDT Projects ===
643
644 When working with the CDT, the folder that contains the simulation code has to be excluded from the CDT build, because this code is compiled using the compiler specified in the kibuild file, and every simulation file has an additional main function, which is not the use-case that a CDT project is made for. These files are self contained and do not interact with other files in the CDT project, thus they should not be built.
645
646 [[image:attach:cdt_exlude_from_build.png]]
647
648 \\
649
650 ----