Show last authors
1 = Prom - Project Management in KIELER =
2
3 == Deprecated since 0.13 ==
4 This article is deprecated. The described features are no longer available in current releases.
5
6 Project are now build using an incremental project builder.
7
8 Please see the new [[doc:Project Management (Prom)]]
9
10 **Topics**
11
12
13
14 {{toc minLevel="2"/}}
15
16 ----
17
18 == Overview ==
19
20 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.
21
22 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 initialize and run the model. To do so, there are mainly three components: An Eclipse //Launch Configuration//, so called //Environments//, and //Project Wizards,// which will be introduced in the following.
23
24 ----
25
26 == The KiCo Launch Configuration ==
27
28 Prom provides a launch configuration (launch config) to
29
30 1. compile code from models via KiCo
31 1. at the same time, generate wrapper code for these model files
32 1. afterwards run an associated launch configuration (e.g. for a Java Application) and
33 1. execute arbitrary shell commands sequentially if the KiCo compilation and wrapper code generation finished successfully
34
35 KiCo launch configurations work per project basis so that every project has to create its own launch config. This is done automatically when performing //Right Click > Run As > KiCo Compilation //(% style="color:#003366" %)on a model file.
36
37 The **Run As** command will search for a KiCo launch config for the project. If there is such a config, the selected file is only added to the list of model files that should be compiled. If there is none, a launch config is created by using the main file and environment the project has been created with. If the main file and environment information could not be found, dialogs will query it from the user.
38
39 [[image:attach:Screenshot_20160509_133139.png]]
40
41 [[image:attach:Screenshot_20160509_134127.png]]
42
43 [[image:attach:Screenshot_20160509_133254.png]]
44
45 (% style="text-align: left;" %)
46 A **main file** typically contains the entry point of the program on the target environment. Its wrapper code initializes and runs the model and sets inputs and outputs to the physical components of the target device. The main file of the launch config is used to set several file path variables, which can be used in several fields of the configuration, notably the shell commands to be executed, and wrapper code input. To use a variable, the syntax is **${**//variable_name//**}**. The variables that are set are
47
48 * //main_name// : The file name, including its file extension (e.g. //MyModel.sct//)
49 * //main_path// : The project relative path (e.g. //src/MyModel.sct//)
50 * //main_loc// : The absolute file system path (e.g. ///home/me/workspace/MyProject/src/MyModel.sct//)
51 * //main_name_no_ext// : The file name without its file extension (e.g. //MyModel//)
52
53 Further, similar variables for the //compiled main file// are set, which is the main file in the directory of kieler generated files (see below)
54
55 * //compiled_main_name// : The file name, including its file extension (e.g. //MyModel.java)//
56 * //compiled_//main_path : The project relative path (e.g. //kieler-gen/MyModel.java//)
57 * //compiled_//main_loc : The absolute file system path (e.g. ///home/me/workspace/MyProject/kieler-gen/MyModel.java//)
58 * //compiled_//main_name_no_ext : The file name without its file extension (e.g. //MyModel//)
59
60 [[image:attach:variable_selection_dialog.png]]
61
62 The values of the launch config can also be **(re)set to an environment**. This will revert the fields for the compilation target, wrapper code generation and command execution.
63
64 The **compilation via KiCo** is configured on the //Compilation// tab. Here you can add/remove files that should be compiled via KiCo and the target language as well as the file extension for the language (such as //.java// for Java). The files will be compiled sequentially in order of appearance in the list. Further, it is possible to add a file path to a template for the output. This is useful to add surrounding content to the KiCo output. The placeholder //${kico_code}// can be used in the template.
65
66 On the //Execute// tab, a list of **shell commands** can be added. They are typically used to further compile the KiCo and wrapper code output and afterwards deploy the result to the target platform. The commands are executed sequentially in order as they appear in the list, after the KiCo compilation and wrapper code generation finished successfully. If a command fails (returns a non-zero exit code), following commands will not be excuted. The name of commands have to be unique and must not contain a comma.
67
68 The standard streams of executed shell commands (stdin, stderr, stdout), as well as errors from the KiCo compilation and wrapper code generation, are printed to the **Console View**.
69
70 [[image:attach:console_view.png]]
71
72 === Launch Groups ===
73
74 The list of shell commands are a simple mechanism to further compile and deploy code via command line tools. However, there are cases in which command line tools are not available or reasonable to use, for example because a different Eclipse launch configuration does a better job.
75
76 In this case it is desirable that the KiCo launch config only compiles the model and another Eclipse launch config does the rest. This can be achieved via //launch groups//. They let you define a launch configuration, which starts other launch configurations sequentially. To illustrate this, another use-case for launch groups is that you have a Client-Server application and want to start the client right after the server for debugging. Then you can create a launch config for the server and a launch config for the client. Afterwards you create a launch group with aforesaid configurations.
77
78 [[image:attach:launch_group.png]]
79
80 Launch groups are a part of the C/C++ Development Tools (CDT), although they provide a general mechanism that could be a part of any Eclipse IDE. The CDT is available in the Eclipse Marketplace (//Help > Eclipse Marketplace//)
81
82 ----
83
84 == Prom Environments ==
85
86 Environments are used to provide default settings for project creation and launch. They are configured in the **preferences** (//Window //>// Preferences > KIELER > Execution Environments//).
87
88 An environment consists of
89
90 1. a unique **name**, which may not contain a comma
91 1. an **associated** project wizard
92 1. the path of the default **model file** for the project
93 1. the path of the default **main file** for the project
94 1. information about **folders and files** that should be imported at project setup
95 1. **default values** for the KiCo compilation
96
97 Besides the name, all of these are optional, but can improve the workflow.
98
99 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.
100
101 The default values for the KiCo compilation are used to compile model files in the project.
102
103 [[image:attach:Screenshot_20160801_120238.png]]
104
105 === Paths for imported resources ===
106
107 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.
108
109 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.
110
111 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//
112
113 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//
114
115 ----
116
117 == Project Wizards with Prom ==
118
119 Prom provides project wizards, which can **create and initialize a project** with a **model file**, and **imported resources**. The wizards for different model file types (e.g. SCChart project vs Esterel project) differ only in the initial content for the model file. Other initial content is choosen from the environment, which is selected on the first page of a Prom wizard. The project creation itself is done by another wizard, that is started from within the Prom wizard.
120
121 For example to create a project to develop Minstorms running leJOS, one can choose the SCCharts project wizard. In this wizard, one can choose the Mindstorms NXT environment and define what will be initialized in the project (model file, initial resources). Now, when pressing the finish button, the associated project wizard from the leJOS plugin will be started. When it finishes, the newly created project is initialized with a model file and the defined resources.
122
123 [[image:attach:Screenshot_20160801_121054.png]]
124
125 ----
126
127 == Wrapper Code Generation ==
128
129 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.
130
131 Therefore one can write **wrapper code snippets** for a target device. These can then be injected to a **template file** as part of a KiCo launch. What snippets are injected is defined using **annotations on inputs and outputs** directly in the model file.
132
133 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.
134
135 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.
136
137 **//Note~://** Annotation **names** and parameters are **case sensitive**. That means that //Clock, clock, Floodlight, FloodLight// are all different annotations.
138
139 [[image:attach:wrapper_code_generation_scheme.png]]
140
141 In the **template file** one can use special **placeholders**.
142
143 **${file_name}** is replaced with the name withouth extension of the file that is generated (e.g. //Main.java// will be //Main//).
144
145 **${model_name}** is replaced with the name of the last compiled model.
146
147 **${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).
148
149 **${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.
150
151 **${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.
152
153 **${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.
154
155 **${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.
156
157 [[image:attach:template_file_structure.png]]
158
159 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//
160
161 === FreeMarker ===
162
163 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**.
164
165 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.
166
167 [[image:attach:wrapper_code_generation_example.png]]
168
169 ----
170
171 == Automatically generated files ==
172
173 Files created by Prom are either saved in the directory **kieler-gen** or in the **same directory as the input files** they correspond to. This is configured in the KiCo launch configuration.
174
175 When choosing the kieler-gen folder, the directory structure of input files is retained. However a starting Java source folder will be skipped because //kieler-gen// itself is a Java source folder.
176
177 For example
178
179 * if //code// is not a Java source folder, the file //code/subfolder/MyModel.sct// will be save to //kieler-gen/code/subfolder/MyModel.sct.//
180 * if //src// is a Java source folder, the file //src/subfolder/MyModel.sct//, will be saved to //kieler-gen/subfolder/MyModel.sct.//