Changes for page SCCharts Development
Last modified by Richard Kreissig on 2023/09/14 10:04
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -225,6 +225,10 @@ 225 225 /* error handling */ 226 226 } 227 227 {{/code}} 228 + 229 +{{info title="File Extensions"}} 230 +File extensions are important! They define the parser/serializer that EMF uses. Always use the file extension that is defined for a particular model. 231 +{{/info}} 228 228 ))) 229 229 {{/layout-cell}} 230 230 {{/layout-section}} ... ... @@ -238,9 +238,20 @@ 238 238 1. The code fragments listed above do not suffice to create a grammatically correct model. Try to generate a model that corresponds with the serialized model listed on the right side. 239 239 11. Run the {{code language="none"}}main(){{/code}} method by right-clicking its class and selecting (% style="line-height: 1.42857;" %)//Run as//(%%) -> (% style="line-height: 1.42857;" %)//Java Application//(%%). Note that this runs your {{code language="none"}}main(){{/code}} method as a simple Java program, not a complete Eclipse application. EMF models can be used in any simple Java context, not just in Eclipse applications. 240 240 11. Execute the main method. 241 -11. Inspect your SCT file. (Press F5 to refresh your file view.) 245 +11. ((( 246 +Inspect your SCT file. (Press F5 to refresh your file view.) 247 + 248 +{{note title="Kext Warning"}} 249 +It is possible that kext generates a Null Pointer Exception when you save your model this way. This is a known issue. We're working on it. Just ignore it for now. 250 +{{/note}} 251 +))) 242 242 1. Now, create a new Java class and proceed as before to generate a model of ABO in the {{code language="none"}}main(){{/code}} method. 243 243 1. Start your SCChart Editor Eclipse instance and load your SCT file. KLighD should now be able to visualize your ABO correctly. 254 +11. For this, open tab //Run// and select// Run Configurations...// 255 +11. Create a new //Eclipse Application// and name it appropriately. 256 +11. As product select {{code language="none"}}de.cau.cs.kieler.core.product.product{{/code}}. 257 +11. Click //Run// (or //Debug// if you opened// Debug Configuration...//) 258 +11. Create a new project and add you generated model. 244 244 245 245 246 246 {{/layout-cell}} ... ... @@ -252,254 +252,255 @@ 252 252 --> Init with true; 253 253 } 254 254 {{/code}} 270 + 271 +[[image:attach:RunConfiguration.png]] 255 255 {{/layout-cell}} 256 256 {{/layout-section}} 257 257 258 258 {{layout-section ac:type="two_right_sidebar"}} 259 259 {{layout-cell}} 260 - 261 -{{/layout-cell}} 277 += Model-to-Model Transformations with KiCo = 262 262 263 -{{layout-cell}} 279 +You can use the [[Kieler Compiler>>url:http://rtsys.informatik.uni-kiel.de/confluence/display/KIELER/Kieler+Compiler||shape="rect"]] (KiCo) to handle all the model input/output tasks and concentrate on the actual transformation. If you executed the **Model Creation Task correctly**, you should now have a complete running SCT Editor instance that looks like the one on the right. You should see the //KIELER Compiler Selection// n the lower right part of the working space. Here you can select specific transformations that will be applied to the actual model. Simply select a transformation to test it. 280 + 281 +== Creating a new Transformation == 282 + 283 +Now, you're going to write your own transformation with **Xtend** *drumroll*, a programming language that looks very similar to Java, but which adds some very convenient features. Xtend code compiles to Java and and was developed using Xtext. In fact, once you gain experience working with Xtend you will probably appreciate the power of Xtext even more. Xtend is particularly useful to browse & modify EMF models. You get the point... we like it. :) 284 + 264 264 265 -{{/layout-cell}} 266 -{{/layout-section}} 267 267 268 -{{layout-section ac:type="single"}} 269 -{{layout-cell}} 270 -= Transforming SCCharts = 287 +==== Transformation Creation Task ==== 271 271 272 -Transformations from one model to another may be performed within the same metamodel or from metamodel to a different metamodel. Both methods are used in KIELER and in principle they do not really differ in implementation. Nevertheless, if working within the same metamodel you should keep in mind that you're potentially changing the actual model instead of changing another instance (after copying). Both is possible. Just make sure that you know what you're doing. 289 +1. Therefore, create a new project within your tutorial working set as before. 290 +1. Add plugin dependencies to {{code language="none"}}de.cau.cs.kieler.kico{{/code}} and {{code language="none"}}de.cau.cs.kieler.sccharts{{/code}}. 291 +1. Create a new //Xtend class// in you package and name it "DoubleStates" and use {{code language="none"}}AbstractProductionTransformation{{/code}} as superclass. 292 +1. Here, you can automatically add the missing Xtend files by using the quickfix //Add Xtend lib to class path. //Alternatively you can simply add {{code language="none"}}com.google.guava{{/code}}, {{code language="none"}}org.eclipse.xtext.xbase.lib{{/code}}, {{code language="none"}}org.eclipse.xtend.lib{{/code}}, and {{code language="none"}}org.eclipse.xtend.lib.macro{{/code}} to you plugin dependencies. 293 +1. Click on //Add unimplemented methods//. 294 +1. ((( 295 +Now, you should have a class similar to the following one. 273 273 274 -Now, you're going to transform the normalized form of HandleA from ABO to an SCG. The Sequentially Constructive Graph is a control-flow graph which can be seen as another representation of the same program. The SCG of the normalized version of ABO's HandleA is depicted on the right. 297 +{{code language="java"}} 298 +package tutorial.transformation 275 275 276 -|((( 277 -{{code}} 278 -scchart ABO_norm_HandleA { 279 - input output bool A; 280 - input output bool B; 281 - output bool O1; 282 - output bool O2; 283 - region HandleA: 284 - initial state WaitA 285 - --> _S immediate with A 286 - --> _Pause immediate; 287 - final state DoneA; 288 - state _S 289 - --> _S2 immediate with / B = true; 290 - state _S2 291 - --> DoneA immediate with / O1 = true; 292 - state _Pause 293 - --> _Depth; 294 - state _Depth 295 - --> _S immediate with A 296 - --> _Pause immediate; 300 +import de.cau.cs.kieler.kico.transformation.AbstractProductionTransformation 301 + 302 +class DoubleStates extends AbstractProductionTransformation { 303 + 304 + override getProducedFeatureId() { 305 + throw new UnsupportedOperationException("TODO: auto-generated method stub") 306 + } 307 + 308 + override getId() { 309 + throw new UnsupportedOperationException("TODO: auto-generated method stub") 310 + } 311 + 297 297 } 298 298 {{/code}} 299 -)))|((( 300 -[[image:attach:abo_norm_HandleA.png]] 301 -)))|(% colspan="1" %)(% colspan="1" %) 302 -((( 303 -[[image:attach:abo_scg_HandleA.png]] 314 + 315 +{{info title="Xtend Infos"}} 316 +* Lines in Xtend code don't have to and with a semicolon. 317 +* We have been explicit about the method's return type, but we could have easily omitted it, letting Xtend infer the return type. 318 +* The keyword {{code language="none"}}val{{/code}} declares a constant, while {{code language="none"}}var{{/code}} declares a variable. Try to make do with constants where possible. 319 +* The methods you call should be declared as {{code language="none"}}def private{{/code}} since they are implementation details and shouldn't be called by other classes. 320 +* You may be tempted to add a few global variables that hold things like a global input variable or a pointer to the current state. While you could to that, {{code language="none"}}def create {{/code}}methods might offer a better alternative... 321 +{{/info}} 304 304 ))) 323 +1. ((( 324 +As you can see, it is mandatory to add an id for the transformation and another id of the feature that this transformation produces. Name your transformation **tutorial.doubleStates **and the id of feature you want to produce is **sccharts.doubleStates**. 305 305 306 -The next figure depicts the direct mapping from normalized SCCharts to their corresponding SCG. 326 +{{info title="Programming Guidelines"}} 327 +You should really think about some constants here. You can also look at the sccharts transformation and features constants in the sccharts plugin. 328 +{{/info}} 329 +))) 330 +1. KiCo must know about the new feature and also about your new transformation. 331 +11. Add a new Xtend class with Feature as superclass. Add all unimplemented methods. Also set** sccharts.doubleStates** as Id. 332 +11. Go to the Extension tab inside your plugin configuration. 333 +111. Add a new Extension Point de.cau.cs.kieler.kico.feature. Create a new featureClass and point it to your new feature class. 334 +111. Also add a new Extension Point de.cau.cs.kieler.kico.transformation. Create a new productionTransformationClass and point it to your transformation class. 335 +111. Finally, you have to link your transformation to the SCT Editor. Add the Extension point de.cau.cs.kieler.kico.ui.transformation. Create an editor link and fill in the following values: 336 +1111. editor: de.cau.cs.kieler.sccharts.text.sct.Sct 337 +1111. features: sccharts.doubleStates 338 +1111. label: Tutorial Compilation 339 +1111. priority: 101 340 +1111. preferred: (leave it blank) 341 +11. {{note title="Plugin Tasks"}}In general it is bad to mix non-ui plugins/tasks with ui plugin/tasks because (in the context of KiCo) even if you're not working with an active UI your transformations should work (e.g. a command line compiler). To keep this tutorial simple, you can add this dependency to your plugin nevertheless. However, you shouldn't do this in real products. Always keep the UI separated.{{/note}}If you start your KIELER instance now, you should get a new compilation chain which has only one transformation: yours, which doesn't do anything. 342 +1. If you want to rename your feature in the Compiler Selection (without changing its Id), override the getName method and return a new name. Rename your feature appropriately. 343 +1. Now, fill your transformation with life: 344 +11. Inside your transformation class, add a new method with the following signature: def State transform(State rootState, KielerCompilerContext context). This transformation will be executed if the feature is selected in the Compiler Selection. 345 +11. ((( 346 +Add thew following body to the function and try to understand the Xtend code. Import unknown class via code assist. 307 307 308 -[[image:attach:sccharts-scg.png]] 348 +{{code language="java" title="transform"}} 349 + def State transform(State rootState, KielerCompilerContext context) { 350 + val newState = SCChartsFactory.eINSTANCE.createState => [ 351 + id = "ololo" 352 + label = "ololo" 353 + ] 309 309 310 - InspectthemetamodeloftheSCGsinpluginde.cau.cs.kieler.scg.SCGs are used for analyses andoptimizationand include a lot ofadditionalelements. However, forthis tutorial it should be sufficient tolook at theSCGraph class,its nodes attribute, theimportant node classesandthecontrolflow class.Importantnodes for thisSCG are entry, exit,assignment, conditional,355 + rootState.regions.filter(ControlflowRegion).head.states += newState 311 311 312 -==== Transformation Task ==== 357 + rootState 358 + } 359 +{{/code}} 360 +))) 361 +11. When selecting your transformation, the SCChart gets transformed and looks like the version on the right. 362 +1. Extend the transformation so that the transition is split up in two and connected via a transient state meaning that the original transformation should point to the new state and a new immediate transformation then points to the original target state. Try it out. 363 +1. ((( 364 +Xtend supports extensions that can be used to extend the function set of you classes (i.e. models). Add {{code language="none"}}com.google.inject{{/code}} to the dependencies of your plugin. Now, add the following code fragment to the beginning of your class. 313 313 314 -Write a transformation that transforms your normalized version of ABO's HandleA into its corresponding SCG. 366 +{{code language="java" title="Code injection"}} 367 + @Inject 368 + extension SCChartsExtension 369 +{{/code}} 315 315 316 -1. ((( 317 -**Writing a Model Transformation** 371 +There are several Extensions classes within the KIELER project that extend the functionality of various classes. Basically, there are one or more for each metamodel (e.g. SCCharts, SCG, KExpressions, etc). You don't want to invent the wheel again. Use these methods. For example: there is a method that gives you all contained states of a state in a list: {{code language="none"}}getAllContainedStatesList{{/code}}. You can use it on your {{code language="none"}}rootState{{/code}}: {{code language="none"}}rootState.allContainedStatesList{{/code}}. 318 318 319 -This time we want you to integrate your transformation into your SCCharts Editor instance. Therefore,... 320 -(% style="color: rgb(51,51,51);line-height: 1.66667;" %)\\ 373 +{{note title="Extensions Naming Scheme"}} 374 +Extensions are also just classes. You can add your own to improve the structure of your own projects. In KIELER all extensions end with "Extensions"; except SCChartsExtension for legacy reasons. This will be renamed in after the next snapshot to SCChartsExtensions. So, if you're going to add new extensions to the project, please name them accordingly. 375 +{{/note}} 376 +))) 377 +1. Extend your transformation so that it is applied on all states (except the root state). Try your new transformation with ABO. The result should look like the example on the right. 321 321 322 - 1.Adda newpackage379 +== The existing Compilation Chain == 323 323 324 -{{code language="none"}} 325 -<project>.transformations 326 -{{/code}} to your project. 327 -1. Add an //Xtend Class// to the new package. 328 -1. If you notice that your new class is marked with an error marker because of a missing dependency of the new plug-in project to 381 +Congratulations. You added and executed your own KiCo transformation. Nevertheless, often you want to extend the existing compilation chain. To do this, you proceed as before but instead of creating your own compilation chain, you must modify the existing chains (e.g. the netlist compilation in de.cau.cs.kieler.sccharts.ui). To add a specific transformation at a specific point in the chain, you must tell KiCo what features are required for the transformation. For that you must override the method getRequiredFeatureIds and return a set with all required features. 329 329 330 -{{code language="none"}} 331 -org.eclipse.xtext.xbase.lib, 332 -{{/code}}you can hover over the error with your mouse and have Eclipse add all libraries required by Xtend to your project. 333 -1. 383 +Also, if you're developing for the master chain, you should obey the package structure. Look at the sccharts plugins. All features, transformation, extensions, the metamodel, ui elements, etc are separated from each other. You should always do the same! 334 334 335 - Defineanentrymethod forthetransformationhat takes anSCChartprograminstanceasan argument and returnsan SCG {{codelanguage="none"}}Program{{/code}}. You can usethe following(incomplete)methodas a starting point:385 +//We will add more content to this subsection in the future...// 336 336 337 -((( 338 -(% class="syntaxhighlighter sh-confluence nogutter java" %) 339 -((( 340 340 388 +{{/layout-cell}} 341 341 342 -|((( 343 -(% class="container" title="Hint: double-click to select code" %) 344 -((( 345 -(% class="line number1 index0 alt2" %) 346 -((( 347 -{{code language="none"}} 348 -/** 349 -{{/code}} 350 -))) 390 +{{layout-cell}} 391 +[[image:attach:KielerSCTEditor.png]] 351 351 352 -(% class="line number2 index1 alt1" %) 353 -((( 354 -{{code language="none"}} 355 - 356 -{{/code}} 393 + 357 357 358 -{{code language="none"}} 359 -* Transforms a given SCCharts program into an SCG. 360 -{{/code}} 361 -))) 395 + 362 362 363 -(% class="line number3 index2 alt2" %) 364 -((( 365 -{{code language="none"}} 366 - 367 -{{/code}} 397 + 368 368 369 -{{code language="none"}} 370 -* 371 -{{/code}} 372 -))) 399 + 373 373 374 -(% class="line number4 index3 alt1" %) 375 -((( 376 -{{code language="none"}} 377 -*/ 378 -{{/code}} 379 -))) 401 + 380 380 381 -(% class="line number8 index7 alt1" %) 382 -((( 383 -{{code language="none"}} 384 -def SCGraph transform(State rootState) { 385 -{{/code}} 386 -))) 403 + 387 387 388 -(% class="line number9 index8 alt2" %) 389 -((( 390 -{{code language="none"}} 391 - 392 -{{/code}} 405 + 393 393 394 -{{code language="none"}} 395 -// Create the SCG 396 -{{/code}} 397 -))) 407 + 398 398 399 -(% class="line number10 index9 alt1" %) 400 -((( 401 -{{code language="none"}} 402 - 403 -{{/code}} 409 + 404 404 405 -{{code language="none"}} 406 -val scg = SCGraphFactory::eINSTANCE.createSCGraph() 407 -{{/code}} 408 -))) 411 + 409 409 410 -(% class="line number11 index10 alt2" %) 411 -((( 412 -{{code language="none"}} 413 - 414 -{{/code}} 415 -))) 413 + 416 416 417 -(% class="line number12 index11 alt1" %) 418 -((( 419 -{{code language="none"}} 420 - 421 -{{/code}} 415 + 422 422 423 -{{code language="none"}} 424 -// TODO: Your transformation code 425 -{{/code}} 426 -))) 417 + 427 427 428 -(% class="line number13 index12 alt2" %) 429 -((( 430 -{{code language="none"}} 431 - 432 -{{/code}} 433 -))) 419 + 434 434 435 -(% class="line number14 index13 alt1" %) 436 -((( 437 -{{code language="none"}} 438 - 439 -{{/code}} 421 + 440 440 441 -{{code language="none"}} 442 -// Return the transformed program 443 -{{/code}} 444 -))) 423 + 445 445 446 -(% class="line number15 index14 alt2" %) 447 -((( 448 -{{code language="none"}} 449 - scg 450 -{{/code}} 451 -))) 425 + 452 452 453 -(% class="line number16 index15 alt1" %) 454 -((( 455 -{{code language="none"}} 456 -} 457 -{{/code}} 458 -))) 459 -))) 460 -))) 427 + 461 461 462 462 463 -))) 464 -))) 465 465 431 + 432 + 433 + 434 + 435 + 436 + 437 + 438 + 439 +[[image:attach:KielerSCTEditorOwnTransformation.png]] 440 + 441 +[[image:attach:KielerSCTEditorOwnTransformationOlolo.png]] 442 + 443 + 444 + 445 + 446 + 447 + 448 + 449 + 450 + 451 + 452 + 453 + 454 + 455 +[[image:attach:ABODoubleStates.png]] 456 +{{/layout-cell}} 457 +{{/layout-section}} 458 + 459 +{{layout-section ac:type="single"}} 460 +{{layout-cell}} 461 += Model-to-Model Transformations between Metamodels = 462 + 463 +Transformations from one model to another may be performed within the same metamodel or from metamodel to a different metamodel. Both methods are used in KIELER and in principle they do not really differ in implementation. Nevertheless, if working within the same metamodel you should keep in mind that you're potentially changing the actual model instead of changing another instance (after copying). When transforming to another metamodel, you're always generating a new model. So there is no in-place transformation. Both is possible. Just make sure that you know what you're doing. 464 + 465 +Now, you're going to transform the normalized form of HandleA from ABO to an SCG. The Sequentially Constructive Graph is a control-flow graph which can be seen as another representation of the same program. The SCG of the normalized version of ABO's HandleA is depicted on the right. 466 + 467 +|((( 468 +{{code}} 469 +scchart ABO_norm_HandleA { 470 + input output bool A; 471 + input output bool B; 472 + output bool O1; 473 + output bool O2; 474 + region HandleA: 475 + initial state WaitA 476 + --> _S immediate with A 477 + --> _Pause immediate; 478 + final state DoneA; 479 + state _S 480 + --> _S2 immediate with / B = true; 481 + state _S2 482 + --> DoneA immediate with / O1 = true; 483 + state _Pause 484 + --> _Depth; 485 + state _Depth 486 + --> _S immediate with A 487 + --> _Pause immediate; 488 +} 489 +{{/code}} 490 +)))|((( 491 +[[image:attach:abo_norm_HandleA.png]] 492 +)))|(% colspan="1" %)(% colspan="1" %) 466 466 ((( 467 -(% class="syntaxhighlighter nogutter java" %) 468 -((( 469 -There's a few points to note here: 494 +[[image:attach:abo_scg_HandleA.png]] 470 470 ))) 471 -))) 496 +{{/layout-cell}} 497 +{{/layout-section}} 472 472 473 -\\ 499 +{{layout-section ac:type="two_equal"}} 500 +{{layout-cell}} 501 +The next figure depicts the direct mapping from normalized SCCharts to their corresponding SCG. 474 474 475 -1. 476 -1*. Lines in Xtend code don't have to and with a semicolon. 477 -1*. We have been explicit about the method's return type, but we could have easily omitted it, letting Xtend infer the return type. 478 -1*. The keyword 503 +Inspect the metamodel of the SCGs in plugin de.cau.cs.kieler.scg. SCGs are used for analyses and optimization and include a lot of additional elements. However, for this tutorial it should be sufficient to look at the SCGraph class, its nodes attribute, the important node classes and the controlflow class. Important nodes for this SCG are entry, exit, assignment, conditional, 504 +{{/layout-cell}} 479 479 480 -{{code language="none"}} 481 -val 482 -{{/code}} declares a constant, while 506 +{{layout-cell}} 507 +[[image:attach:sccharts-scg.png]] 508 +{{/layout-cell}} 509 +{{/layout-section}} 483 483 484 -{{code language="none"}} 485 -var 486 -{{/code}} declares a variable. Try to make do with constants where possible. 487 -1*. The methods you call should be declared as 511 +{{layout-section ac:type="two_right_sidebar"}} 512 +{{layout-cell}} 513 +==== Transformation Creation Task 2 ==== 488 488 489 -{{code language="none"}} 490 -def private 491 -{{/code}} since they are implementation details and shouldn't be called by other classes. 492 -1*. You may be tempted to add a few global variables that hold things like a global input variable or a pointer to the current state. While you could to that, 515 +Write a transformation that transforms your normalized version of ABO's HandleA into its corresponding SCG. 493 493 494 -{{code language="none"}} 495 -def create 496 -{{/code}}methods might offer a better alternative... 497 -\\ 498 -1. Replace the TODO with an transformation code that takes an extended BF program and transforms it into an semantically equivalent BF program that only uses standard BF instructions. 499 -HINT: Some of the extended BF commands can only be expressed by standard operations if you can write to other cells. Therefore you are allowed to perform side effects on the tape. 500 -1. Open the //Plug-In Manifest Editor// and switch to the Runtime tab. Add the package containing your transformation to the list of exported packages. (You may have to check the //Show non-Java packages// option in the //Exported Packages// dialog to see the package.) 501 -\\ 502 -))) 517 +1. Proceed as before. Create a new plugin (or copy your last one) Make sure, you also add de.cau.cs.kieler.scg to your dependencies. 518 +1. Write a transformation that is able to transform {{code language="none"}}ABO_norm_HandleA{{/code}} into its corresponding SCG. 503 503 1. **Verify your generated SCG**. If you added your transformation correctly, the SCG should be displayed automatically as soon as selected. If your SCG looks like the SCG depicted earlier, then everything is fine. 504 504 1. Check your SCG semantically. Is there anything you could improve/optimize? 505 505 11. Write a second transformation (just as before) and add it to the transformation chain right after the transformation you already added. ... ... @@ -510,5 +510,9 @@ 510 510 511 511 512 512 {{/layout-cell}} 529 + 530 +{{layout-cell}} 531 + 532 +{{/layout-cell}} 513 513 {{/layout-section}} 514 514 {{/layout}}
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -168103 661 +16810374 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/TUT/pages/168103 66/SCCharts Development1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/TUT/pages/16810374/SCCharts Development