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
-
... ... @@ -274,7 +274,7 @@ 274 274 275 275 {{layout-section ac:type="two_right_sidebar"}} 276 276 {{layout-cell}} 277 -= Model-to-Model Transformation with KiCo = 277 += Model-to-Model Transformations with KiCo = 278 278 279 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 280 ... ... @@ -284,7 +284,7 @@ 284 284 285 285 286 286 287 -Transformation Creation Task 287 +==== Transformation Creation Task ==== 288 288 289 289 1. Therefore, create a new project within your tutorial working set as before. 290 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}}. ... ... @@ -311,6 +311,14 @@ 311 311 312 312 } 313 313 {{/code}} 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}} 314 314 ))) 315 315 1. ((( 316 316 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**. ... ... @@ -320,7 +320,7 @@ 320 320 {{/info}} 321 321 ))) 322 322 1. KiCo must know about the new feature and also about your new transformation. 323 -11. Add a new Xtend class with Feature as superclass. Add all unimplemented methods. Also set sccharts.doubleStates as Id. 331 +11. Add a new Xtend class with Feature as superclass. Add all unimplemented methods. Also set** sccharts.doubleStates** as Id. 324 324 11. Go to the Extension tab inside your plugin configuration. 325 325 111. Add a new Extension Point de.cau.cs.kieler.kico.feature. Create a new featureClass and point it to your new feature class. 326 326 111. Also add a new Extension Point de.cau.cs.kieler.kico.transformation. Create a new productionTransformationClass and point it to your transformation class. ... ... @@ -330,12 +330,12 @@ 330 330 1111. label: Tutorial Compilation 331 331 1111. priority: 101 332 332 1111. preferred: (leave it blank) 333 -11. 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. 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. 334 334 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. 335 335 1. Now, fill your transformation with life: 336 336 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. 337 337 11. ((( 338 -Add thew following body to the function and try to understand the Xtend code. 346 +Add thew following body to the function and try to understand the Xtend code. Import unknown class via code assist. 339 339 340 340 {{code language="java" title="transform"}} 341 341 def State transform(State rootState, KielerCompilerContext context) { ... ... @@ -351,9 +351,31 @@ 351 351 {{/code}} 352 352 ))) 353 353 11. When selecting your transformation, the SCChart gets transformed and looks like the version on the right. 354 -1. Extend the transformation so that each 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. 355 -1. Try your new transformation with ABO. The result should look like the example 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. 356 356 366 +{{code language="java" title="Code injection"}} 367 + @Inject 368 + extension SCChartsExtension 369 +{{/code}} 370 + 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}}. 372 + 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. 378 + 379 +== The existing Compilation Chain == 380 + 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. 382 + 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! 384 + 385 +//We will add more content to this subsection in the future...// 386 + 357 357 358 358 {{/layout-cell}} 359 359 ... ... @@ -407,14 +407,30 @@ 407 407 408 408 409 409 [[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]] 410 410 {{/layout-cell}} 411 411 {{/layout-section}} 412 412 413 413 {{layout-section ac:type="single"}} 414 414 {{layout-cell}} 415 -= Transformin gSCCharts =461 += Model-to-Model Transformations between Metamodels = 416 416 417 -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. 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. 418 418 419 419 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. 420 420 ... ... @@ -447,204 +447,29 @@ 447 447 ((( 448 448 [[image:attach:abo_scg_HandleA.png]] 449 449 ))) 496 +{{/layout-cell}} 497 +{{/layout-section}} 450 450 499 +{{layout-section ac:type="two_equal"}} 500 +{{layout-cell}} 451 451 The next figure depicts the direct mapping from normalized SCCharts to their corresponding SCG. 452 452 453 -[[image:attach:sccharts-scg.png]] 454 - 455 455 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}} 456 456 457 -==== Transformation Task ==== 506 +{{layout-cell}} 507 +[[image:attach:sccharts-scg.png]] 508 +{{/layout-cell}} 509 +{{/layout-section}} 458 458 511 +{{layout-section ac:type="two_right_sidebar"}} 512 +{{layout-cell}} 513 +==== Transformation Creation Task 2 ==== 514 + 459 459 Write a transformation that transforms your normalized version of ABO's HandleA into its corresponding SCG. 460 460 461 -1. ((( 462 -**Writing a Model Transformation** 463 - 464 -This time we want you to integrate your transformation into your SCCharts Editor instance. Therefore,... 465 -(% style="color: rgb(51,51,51);line-height: 1.66667;" %)\\ 466 - 467 -1. Add a new package 468 - 469 -{{code language="none"}} 470 -<project>.transformations 471 -{{/code}} to your project. 472 -1. Add an //Xtend Class// to the new package. 473 -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 474 - 475 -{{code language="none"}} 476 -org.eclipse.xtext.xbase.lib, 477 -{{/code}}you can hover over the error with your mouse and have Eclipse add all libraries required by Xtend to your project. 478 -1. 479 - 480 -Define an entry method for the transformation that takes an SCChart program instance as an argument and returns an SCG {{code language="none"}}Program{{/code}}. You can use the following (incomplete) method as a starting point: 481 - 482 -((( 483 -(% class="syntaxhighlighter sh-confluence nogutter java" %) 484 -((( 485 - 486 - 487 -|((( 488 -(% class="container" title="Hint: double-click to select code" %) 489 -((( 490 -(% class="line number1 index0 alt2" %) 491 -((( 492 -{{code language="none"}} 493 -/** 494 -{{/code}} 495 -))) 496 - 497 -(% class="line number2 index1 alt1" %) 498 -((( 499 -{{code language="none"}} 500 - 501 -{{/code}} 502 - 503 -{{code language="none"}} 504 -* Transforms a given SCCharts program into an SCG. 505 -{{/code}} 506 -))) 507 - 508 -(% class="line number3 index2 alt2" %) 509 -((( 510 -{{code language="none"}} 511 - 512 -{{/code}} 513 - 514 -{{code language="none"}} 515 -* 516 -{{/code}} 517 -))) 518 - 519 -(% class="line number4 index3 alt1" %) 520 -((( 521 -{{code language="none"}} 522 -*/ 523 -{{/code}} 524 -))) 525 - 526 -(% class="line number8 index7 alt1" %) 527 -((( 528 -{{code language="none"}} 529 -def SCGraph transform(State rootState) { 530 -{{/code}} 531 -))) 532 - 533 -(% class="line number9 index8 alt2" %) 534 -((( 535 -{{code language="none"}} 536 - 537 -{{/code}} 538 - 539 -{{code language="none"}} 540 -// Create the SCG 541 -{{/code}} 542 -))) 543 - 544 -(% class="line number10 index9 alt1" %) 545 -((( 546 -{{code language="none"}} 547 - 548 -{{/code}} 549 - 550 -{{code language="none"}} 551 -val scg = SCGraphFactory::eINSTANCE.createSCGraph() 552 -{{/code}} 553 -))) 554 - 555 -(% class="line number11 index10 alt2" %) 556 -((( 557 -{{code language="none"}} 558 - 559 -{{/code}} 560 -))) 561 - 562 -(% class="line number12 index11 alt1" %) 563 -((( 564 -{{code language="none"}} 565 - 566 -{{/code}} 567 - 568 -{{code language="none"}} 569 -// TODO: Your transformation code 570 -{{/code}} 571 -))) 572 - 573 -(% class="line number13 index12 alt2" %) 574 -((( 575 -{{code language="none"}} 576 - 577 -{{/code}} 578 -))) 579 - 580 -(% class="line number14 index13 alt1" %) 581 -((( 582 -{{code language="none"}} 583 - 584 -{{/code}} 585 - 586 -{{code language="none"}} 587 -// Return the transformed program 588 -{{/code}} 589 -))) 590 - 591 -(% class="line number15 index14 alt2" %) 592 -((( 593 -{{code language="none"}} 594 - scg 595 -{{/code}} 596 -))) 597 - 598 -(% class="line number16 index15 alt1" %) 599 -((( 600 -{{code language="none"}} 601 -} 602 -{{/code}} 603 -))) 604 -))) 605 -))) 606 - 607 - 608 -))) 609 -))) 610 - 611 -((( 612 -(% class="syntaxhighlighter nogutter java" %) 613 -((( 614 -There's a few points to note here: 615 -))) 616 -))) 617 - 618 -\\ 619 - 620 -1. 621 -1*. Lines in Xtend code don't have to and with a semicolon. 622 -1*. We have been explicit about the method's return type, but we could have easily omitted it, letting Xtend infer the return type. 623 -1*. The keyword 624 - 625 -{{code language="none"}} 626 -val 627 -{{/code}} declares a constant, while 628 - 629 -{{code language="none"}} 630 -var 631 -{{/code}} declares a variable. Try to make do with constants where possible. 632 -1*. The methods you call should be declared as 633 - 634 -{{code language="none"}} 635 -def private 636 -{{/code}} since they are implementation details and shouldn't be called by other classes. 637 -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, 638 - 639 -{{code language="none"}} 640 -def create 641 -{{/code}}methods might offer a better alternative... 642 -\\ 643 -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. 644 -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. 645 -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.) 646 -\\ 647 -))) 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. 648 648 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. 649 649 1. Check your SCG semantically. Is there anything you could improve/optimize? 650 650 11. Write a second transformation (just as before) and add it to the transformation chain right after the transformation you already added. ... ... @@ -655,5 +655,9 @@ 655 655 656 656 657 657 {{/layout-cell}} 529 + 530 +{{layout-cell}} 531 + 532 +{{/layout-cell}} 658 658 {{/layout-section}} 659 659 {{/layout}}
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -1681037 21 +16810374 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/TUT/pages/1681037 2/SCCharts Development1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/TUT/pages/16810374/SCCharts Development