Kieler Compiler
Deprecated since 0.13
This article is deprecated. The described features are no longer available in current releases.
Project Overview
Responsible:
Related Theses:
- none yet
To see the KielerCompiler in action, we provide an Online SCCharts Compiler here.
Kieler Compiler (KiCo)
In order to integrate and be able to evaluate our compiler chain from SCCharts to C or VHDL code we use the KiCo project as a generic framework that allows to register setp-by-step transformations on EObjects. These can then be handled by the generic KIEM KiCo DataComponent. To see the KielerCompiler in action, we provide an Online SCCharts Compiler here.
General
The KIELER Compiler (KiCo) project allows to register step-by-step model transformations on EObjects that could be written in Xtend or Java. These transformations are registered using an extension point provided (see below). After registering transformations these can be used by simply call the KielerCompiler compilation method as also explained further below.
Extension Point
In order to add a transformation to KiCo you must follow these steps:
Add dependency to
de.cau.cs.kieler.kico
- Add the extension
de.cau.cs.kieler.kico.transformation
Add one of the following extension element
Extension Element | Description |
---|---|
transformationClass | The defined class must extend "de.cau.cs.kieler.kico.Transformation" and must implement the methods defined in "de.cau.cs.kieler.kico.ITransformation". These are
|
transformationMethod | The defined class can be freely chosen and does not need to extend or implement any other class or interface. Although you have to give more information in the extension element now:
|
transformationGroup | Sometimes you may want to group other transformations and give this group a specific transformation ID as a kind of shortcut. You can do this by using the transformationGroup element giving the following information:
|
Example
point="de.cau.cs.kieler.kico.transformation">
<transformationGroup
id="NORMALIZE"
dependencies="TRIGGEREFFECT, SURFACEDEPTH"
name="Transform All Normalize">
</transformationGroup>
<transformationMethod
class="de.cau.cs.kieler.sccharts.extensions.SCChartsCoreTransformation"
id="TRIGGEREFFECT"
method="transformTriggerEffect"
name="Transform Trigger and Effect">
</transformationMethod>
<transformationMethod
class="de.cau.cs.kieler.sccharts.extensions.SCChartsCoreTransformation"
id="SURFACEDEPTH"
method="transformSurfaceDepth"
name="Transform Surface Depth">
</transformationMethod>
<transformationGroup
id="ALL"
dependencies="CORE NORMALIZE"
name="Transform All">
</transformationGroup>
</extension>
Compilation
Once a bunch of model transformations are registered, these can simply be called using the KiCo central "KielerCompiler" class with its method compile(). This will be given a List<String> of transformation IDs or a comma separated String of transformation IDs as the first parameter. The second parameter is the EObject that is being transformed. It should meet the signature of the first model transformation called. Note that the actual model transformations that are done may vary because KiCo will automatically inspect the dependencies of each transformation requested (deep-recursively). If you do not like this to happen as an advanced user you can use a third parameter that will skip this autocompletion. Note that if you switch this off also NO transformation groups can be processed. Here is an overview and examples how to use the compile() method:
Method | Description |
---|---|
EObject KielerCompiler.compile(List<String> transformationIDs, EObject eObject) |
|
EObject KielerCompiler.compile(String transformationIDs, EObject eObject) | This is a convenient method only which can be used to give transformation IDs or transformation group IDs as a comma separated String. For eObject and the return value see above. |
EObject KielerCompiler.compile(List<String> transformationIDs, EObject eObject, boolean autoexpand) | This is an advanced compile method which can turn of auto-expansion with the last parameter. Use this with care! Note that if switching autoexpand off you cannot use transformation group IDs any more. Also no dependencies will be considered. The transformations will be applied straight forward in the order defined by the transformationIDs list. |
Examples
...
private MyEObjectClass myMethod(EObject eObject) {
...
transformed = (MyEObjectClass) KielerCompiler.compile("ABORT, SIGNAL", eObject);
...
return transformed
}
...
def dispatch MyEObjectClass myMethod(EObject eObject) {
transformed = KielerCompiler.compile("ABORT, SIGNAL", eObject) as MyEObjectClass
...
transformed
}
Requirement Completion
Original
| Example 1
|
---|
Example 2
| Example 3
|
---|
Help / Problems / FAQs
Maybe you get into problems when using KiCo. The following list should give you hints to solve these. If you have a problem not considered here please write us an e-mail (see above for contact information of the persons in charge of KiCo).
Symptom | Reason | Solution |
---|---|---|
You get the following run time error: ENTRY de.cau.cs.kieler.klighd 4 0 2014-03-17 11:08:46.009!MESSAGE !STACK 0java.lang.RuntimeException: Cannot find a transformation with the ID 'ABORT2'. Make sure that the transformation with this ID is registered and its declaring plugin is loaded. Make sure that the ID does exactly match (case sensitive). Maybe you forgot to separate multiple ID's by a comma. at de.cau.cs.kieler.kico.KielerCompiler.getTransformation(KielerCompiler.java:61) at de.cau.cs.kieler.kico.KielerCompiler.getDependencies(KielerCompiler.java:82) at de.cau.cs.kieler.kico.KielerCompiler.isDependingOn(KielerCompiler.) at de.cau.cs.kieler.kico.KielerCompiler.insertTransformationID(KielerCompiler.) at de.cau.cs.kieler.kico.KielerCompiler.expandDependencies(KielerCompiler.)... | There is a transformation with ID "ABORT2" referenced But KiCo could not find any registered transformation Maybe the plugin declaring "ABORT2" was not loaded
| Check why "ABORT2" may not be found |
You get the following error: !ENTRY de.cau.cs.kieler.kico 2 2 2014-03-17 11:26:13.818 !MESSAGE Extension 'TERMINATION' from component: de.cau.cs.kieler.sccharts cannot beloaded becaus this ID is already taken. (de.cau.cs.kieler.kico) | The trasformation with ID "TERMINATION" is already | Rename one of the IDs or form a group of |