Changes for page Project Creation, Initialization and Launch (Prom)
Last modified by Richard Kreissig on 2023/09/14 10:56
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -36,7 +36,7 @@ 36 36 [[image:attach:Screenshot_20160509_133254.png]] 37 37 38 38 (% style="text-align: left;" %) 39 - 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 are39 +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 40 40 41 41 * //main_name// : The file name, including its file extension (e.g. //MyModel.sct//) 42 42 * //main_path// : The project relative path (e.g. //src/MyModel.sct//) ... ... @@ -45,9 +45,9 @@ 45 45 46 46 Further, similar variables for the //compiled main file// are set, which is the main file in the directory of kieler generated files (see below) 47 47 48 -* //compiled_main_name// : The file name, including its file extension (e.g. //MyModel. sct//)49 -* //compiled_//main_path : The project relative path (e.g. //kieler-gen/MyModel. sct//)50 -* //compiled_//main_loc : The absolute file system path (e.g. ///home/me/workspace/MyProject/kieler-gen/MyModel. sct//)48 +* //compiled_main_name// : The file name, including its file extension (e.g. //MyModel.java)// 49 +* //compiled_//main_path : The project relative path (e.g. //kieler-gen/MyModel.java//) 50 +* //compiled_//main_loc : The absolute file system path (e.g. ///home/me/workspace/MyProject/kieler-gen/MyModel.java//) 51 51 * //compiled_//main_name_no_ext : The file name without its file extension (e.g. //MyModel//) 52 52 53 53 [[image:attach:variable_selection_dialog.png]] ... ... @@ -58,8 +58,6 @@ 58 58 59 59 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. 60 60 61 - 62 - 63 63 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**. 64 64 65 65 [[image:attach:console_view.png]] ... ... @@ -84,41 +84,38 @@ 84 84 85 85 1. a unique **name**, which may not contain a comma 86 86 1. an **associated** project wizard 87 -1. information for a default **main file** for the project 88 -1. information for a default **model file** for the project 89 -1. information for a default **wrapper code snippet directory** 90 -1. default values for the KiCo compilation 85 +1. the path of the default **model file** for the project 86 +1. information about **folders and files** that should be imported at project setup 87 +1. **default values** for the KiCo compilation 91 91 92 92 Besides the name, all of these are optional, but can improve the workflow. 93 93 94 -The associated project wizard is run as part of the Prom project wizard and takes care of the actual project creation. 91 +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. 95 95 96 - A main file typically contains the entry point ofthe program onthetarget environment. Its wrapper code initializesandrunsthemodel and setsinputs andoutputsto the physical components of the targetdevice. Toease the projectsetup and becausewrapper codefora specific target platformis often similar, it ispossibleto define default content for themain file. Therefore the field**main fileorigin** can contain an absolutefilepath to a file with the default contentsof a newly created mainfile forthisenvironment.Furthermore,predefined wrapper code snippets can be injected as part of a project launch, which is described below.93 +The default values for the KiCo compilation are used to compile model files in the project. 97 97 98 - The **snippets origin** is usedto initialize the wrapper codesnippet directory of a newly created project.95 +[[image:attach:Screenshot_20160801_120238.png]] 99 99 100 - Theotherfieldsaredefaultsettings for KiCo launch configurations.97 +=== Paths for imported resources === 101 101 102 - [[image:attach:Screenshot_20160509_132406.png]]99 +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. 103 103 104 - ===Pathsfor initialcontent===101 +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. 105 105 106 -T hepathofthemainfile origin accept an **absolute**file**path**aswellas an **URL** with the platformprotocolof Eclipse.An URLfor the field has the form //plaftorm:/plugin/a.plugin.name/folder/in/the/plugin/file.txt//103 +To specify intial content for a file, the origin has to be an **absolute file path** or an **URL** with the platform scheme of Eclipse. Such an URL has the form //plaftorm:/plugin/a.plugin.name/folder/in/the/plugin/file.txt// 107 107 108 - Thesnippetsoriginworks analog. It accepts an absolute directory pathas well as an URL with the platformprotocol which points toadirectory. An URLfor the fieldhasthe form //plaftorm:/plugin/a.plugin.name/folder/in/the/plugin//105 +Specifying intial content for a folder is analog. Its origin has to be an **absolute directory path** or an **URL** in the form //plaftorm:/plugin/a.plugin.name/folder/in/the/plugin// 109 109 110 110 ---- 111 111 112 112 == Project Wizards with Prom == 113 113 114 -Prom provides project wizards, which can **create and initialize a project** with a **model file**, a ** main file** andwrapperode**snippets**. 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.111 +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. 115 115 116 - Ifthe//snippetsdirectory//of an environmentisa projectrelativeath,the contentsfromthe //snippetsorigin//will becopiedtothis locationinthenewly createdproject. Ifitnabsolutepath,it isnotcopiedtheproject.Keepingsnippetsinsingle,projectindepententfolder,makesit easiertomaintain them.Forxample it ispossibleto setanabsolutepathto a directory outsideanyprojectas directory forwrappercodesnippets. This directorycanthenbeeasily maintainedusinga versioncontrol system.Furthermore,ifansueoccurs,itas to beaddressed onlyonce, becausethesnippets arenotcopied toeverynewproject.113 +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 NXJ environment and define what will be initialized in the project (model file, initial resources). Now, when pressing the finish button, the related 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. 117 117 118 - For example to createprojecto develop Minstorms running leJOS, one canchoose theSCCharts project wizard. In this wizard, onecan choosethe Mindstorms NXJ environment and define what will be initialized in the project(model file, main file, snippets).Now whenpressingthe finish button, the related project wizard from the leJOS plugin will be started. When it finishes, the newly created project is initialized with an initial model file, main file and wrapper code snippets.115 +[[image:attach:Screenshot_20160801_121054.png]] 119 119 120 -[[image:attach:project_wizard.png]] 121 - 122 122 ---- 123 123 124 124 == Wrapper Code Generation == ... ... @@ -149,6 +149,8 @@ 149 149 150 150 **${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. 151 151 147 +**${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. 148 + 152 152 [[image:attach:template_file_structure.png]] 153 153 154 154 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//
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -1877610 01 +18776101 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/1877610 0/Project Creation, Initialization and Launch (Prom)1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/18776101/Project Creation, Initialization and Launch (Prom)