Size: px
Start display at page:

Download ""

Transcription

1 Towards xmof: Executable DSMLs based on fuml Tanja Mayerhofer, Philip Langer, Manuel Wimmer Business Informatics Group Institute of Software Technology and Interactive Systems Vienna University of Technology Favoritenstraße 9 11/188 3, 1040 Vienna, Austria phone: +43 (1) (secretary), fax: +43 (1) office@big.tuwien.ac.at,

2 Domain Specific Modeling Languages g Success of MDE depends on availability of means for defining DSMLs DSML Eclipse Modeling Tools Syntax Semantics Abstract Syntax MOF Ecore Static Semantics OCL Concrete Syntax Xtext GMF Behavioral Semantics? No standard means for specifying behavioral semantics of DSML exist Efficient development of model execution facilities impossible 2

3 Semantics of Domain Specific Modeling Languages g Denotational / translational semantics Examples: Abstract State Machines K. Chen, J. Sztipanovits, S. Abdelwalhed, E. Jackson. Semantic anchoring with model transformations. In Proc. of ECMDA FA'05, pages , Maude J. E. Rivera, F. Duran, and A. Vallecillo. On the behavioral semantics of real time domain specific visual languages. In Workshop Proc. of ETAPS'10, pages , Pros: Execution and analysis tools can be reused Cons: Mapping model into target language is complex Results have aeto be mapped back 3

4 Semantics of Domain Specific Modeling Languages g Operational semantics Approaches: Graph transformations G. Engels, J. H. Hausmann, R. Heckel, and S. Sauer. Dynamic meta modeling: A graphical approach to the operational semantics of behavioral diagrams in UML. In Proc. of UML'00, pages , Action language Kermeta, MXF, Smalltalk, Eiffel, xcore, Epsilon Object Language Use fuml as action language 4

5 Foundational UML (fuml) OMG standard V1.0 released 02/2011 Specification of behavioral semantics of foundational UML subset Structural kernel: class, association, data type, etc. Behavioral kernel: behavior, event, signal, etc. Atiiti Activities: activities, iti parameters, nodes, flows Actions: communication, object, structural feature, link actions Operational semantics approach specifying a fuml virtual machine UML activity diagrams can be executed 5

6 Specifying Semantics with fuml Level mismatch for specifying semantics of DSML using fuml activities Current Situation M3 MOF M2 fuml adsml MM «operateson» adsml OS M1 afuml Model MM Meta Model OS Operational Semantics 6

7 Specifying Semantics with fuml Current Situation (1) Push down DSML to M1 / Pull up DSML to M2 M3 MOF MOF M2 fuml adsml MM fuml adsml MM «transformedto» afuml adsml OS adsml MM M1 Model (in fuml AD) (in fuml CD) «operateson» «executes» «ontological instanceof» adsml Model (in fuml OD) «transformedto» adsml Model Pros Approach can be implemented using existing tools MM Meta Model OS Operational Semantics AD Activity Diagram CD Class Diagram Cons OD Object Diagram High effort for transformation needed UML environment has to be used instead of metamodeling environments 7

8 Specifying Semantics with fuml Current Situation (2) Pull up fuml to M3 M3 MOF xmof MOF fuml «pulledup» M2 fuml adsml MM adsml MM fuml adsml OS «operateson» afuml adsml M1 Model Model «executes» Integrated metamodeling language executable MOF (xmof) Abstract syntax: MOF Behavioral semantics: fuml MM Meta Model OS Operational Semantics 8

9 Example: Petri Net syntax metamodel Place places - initialtokens:int conf 1 Net 1 1 input output conf 1 transitions Transition conf 1 PlaceConf - tokens :int + addtoken() :void + removetoken() :void place configs runtime configuration metamodel input output 1 1 NetConf + run() :void TransitionConf + fire() :void + isenabled() :boolean transition configs Provides runtime representation Separation of syntax and semantics 9

10 Example: Petri Net syntax metamodel Place places - initialtokens:int conf 1 Net 1 1 input output conf 1 transitions Transition conf 1 PlaceConf - tokens :int + addtoken() :void + removetoken() :void place configs runtime configuration metamodel input output 1 1 NetConf + run() :void TransitionConf + fire() :void + isenabled() :boolean transition configs p1: PlaceConf tokens = 1 place configs t1: TransitionConf input output transition configs n: NetConf p2: PlaceConf tokens = 0 place configs 10

11 Example: Petri Net ReadSelf Read {t1} {n} NetConf NetConf::run() ReadStructuralFeature Read transition configs object : NetConf TransitionConf[] p1: PlaceConf tokens = 1 place configs t1: TransitionConf input output transition configs n: NetConf p2: PlaceConf tokens = 0 place configs «parallel» transition configs : TransitionConf[] [] Select enabled transition configs [true] true boolean decisioninputflow transition configs : TransitionConf[] {t1} {t1} target : TransitionConf Call isenabled() (TransitionConf::isEnabled) list :TransitionConf[] ValueSpecification Specify 1 1 int index :int Get :ListGet target :TransitionConf {t1} Call fire() (TransitionConf::fire) TransitionConf 11

12 Example: Petri Net t1: TransitionConf input output p1: PlaceConf tokens = 1 place configs transition configs p2: PlaceConf tokens = 0 place configs 0 1 n: NetConf ReadSelf Read object : TransitionConf TransitionConf {t1} TransitionConf::fire() ReadStructuralFeature Read ouput {p2} PlaceConf[] {p1} ReadStructuralFeature object : Read input TransitionConf PlaceConf[] «iterative» {p2} target :PlaceConf output place configs : PlaceConf[] «iterative» {p1} Call addtoken() (PlaceConf::addToken) Call removetoken() target :PlaceConf (PlaceConf::removeToken) input place configs : PlaceConf[] 12

13 Extensibility of Semantics Model everything down to the very last detail may not be feasible May require utilization of libraries which are not available for the fuml virtual machine Examples: Complex mathematical calculations Control of external resources Integration of external libraries with fuml virtual machine No extension of fuml metamodel and virtual machine Transparent usage of external libraries 13

14 Example: Petri Net NetConf::run() t1 t2 t3 ReadSelf Read NetConf ReadStructuralFeature Read transition configs object : NetConf TransitionConf[] «parallel» transition configs : TransitionConf[] [] Select enabled transition configs java.util [true] boolean decisioninputflow transition configs : TransitionConf[] {t1, t2, t3} target : TransitionConf Call isenabled() (TransitionConf::isEnabled) list :TransitionConf[] Random + next(int) + nextint() + nextint(int) ValueSpecification Specify 1 1 int index :int Get :ListGet {t1} target :TransitionConf TransitionConf Call fire() (TransitionConf::fire) 14

15 Extensibility of Semantics 1. Import of external libraries 1. Reverse engineering i of library for extracting ti API classes 2. Import of classes into fuml model specifying the semantics of a DSML 3. Create empty activities foreach operation actingasplace as holder 2. Integration of external libraries at runtime Call of library operation 1. Suspend execution at entry of place holder activity 2. Forward invocation to actual operation of external library 3. Integrate result into runtime model of execution Instantiation / Modification of library instances 1. Maintain mapping between fuml instances and library instances 15

16 Conclusion Integrated metamodeling language executable MOF (xmof) Specification of behavioral semantics using fuml Usage of external libraries executable MOF (xmof) M3 xmof MOF fuml «pulledup» M2 adsml MM fuml adsml OS «operateson» M1 adsml Model «executes» 16

17 Future Work Implementation of xmof Provide means for using fuml as semantics specification language Conduct case study to show feasibility of our approach (Semi )Automatic generation of model execution facilities Analysis of execution: trace model Runtime observation and control: event model, command API Reusability bl of semantics specifications Definition of kernel semantics, e.g. data flow, control flow, signal sending Composition of kernel semantics for semantics specification of DSML Specialization of existing semantics specification for variation point / profile 17

18 Thank you! Debugging and Testing Models Based on fuml dl

Towards xmof: Executable DSMLs based on fuml

Towards xmof: Executable DSMLs based on fuml Towards xmof: Executable DSMLs based on fuml Tanja Mayerhofer Vienna University of Technology, Austria mayerhofer@big.tuwien.ac.at Philip Langer Vienna University of Technology, Austria langer@big.tuwien.ac.at

More information

A Generic Framework for Realizing Semantic Model Differencing Operators

A Generic Framework for Realizing Semantic Model Differencing Operators A Generic Framework for Realizing Semantic Model Differencing Operators Philip Langer, Tanja Mayerhofer, and Gerti Kappel Business Informatics Group, Vienna University of Technology, Vienna, Austria {langer,mayerhofer,gerti}@big.tuwien.ac.at

More information

The TTC 2015 Model Execution Case

The TTC 2015 Model Execution Case The TTC 2015 Model Execution Case Tanja Mayerhofer and Manuel Wimmer Business Informatics Group, Vienna University of Technology, Austria {mayerhofer,wimmer}@big.tuwien.ac.at Abstract. This paper describes

More information

Introduction to MDE and Model Transformation

Introduction to MDE and Model Transformation Vlad Acretoaie Department of Applied Mathematics and Computer Science Technical University of Denmark rvac@dtu.dk DTU Course 02291 System Integration Vlad Acretoaie Department of Applied Mathematics and

More information

Static analysis and testing of executable DSL specification

Static analysis and testing of executable DSL specification Static analysis and testing of executable DSL specification Qinan Lai 1, Andy Carpenter 1 1 School of Computer Science, the University of Manchester, Manchester, UK {laiq,afc}@cs.man.ac.uk Keywords: Abstract:

More information

Language engineering and Domain Specific Languages

Language engineering and Domain Specific Languages Language engineering and Domain Specific Languages Perdita Stevens School of Informatics University of Edinburgh Plan 1. Defining languages 2. General purpose languages vs domain specific languages 3.

More information

Plan. Language engineering and Domain Specific Languages. Language designer defines syntax. How to define language

Plan. Language engineering and Domain Specific Languages. Language designer defines syntax. How to define language Plan Language engineering and Domain Specific Languages Perdita Stevens School of Informatics University of Edinburgh 1. Defining languages 2. General purpose languages vs domain specific languages 3.

More information

Execution Framework of the GEMOC Studio (Tool Demo)

Execution Framework of the GEMOC Studio (Tool Demo) Execution Framework of the GEMOC Studio (Tool Demo) Erwan Bousse TU Wien, Austria bousse@big.tuwien.ac.at Tanja Mayerhofer TU Wien, Austria mayerhofer@big.tuwien.ac.at Thomas Degueule Inria, France thomas.degueule@inria.fr

More information

Semantic Specifications for Domain-Specific Modeling Languages

Semantic Specifications for Domain-Specific Modeling Languages Semantic Specifications for Domain-Specific Modeling Languages Gabor Simko Institute for Software Integrated Systems Vanderbilt University Nashville, TN Abstract. While there is a generic agreement that

More information

Leveraging Executable Language Engineering for Domain-Specific Transformation Languages (Position Paper)

Leveraging Executable Language Engineering for Domain-Specific Transformation Languages (Position Paper) Leveraging Executable Language Engineering for Domain-Specific Transformation Languages (Position Paper) EXE 2016, Saint-Malo, France Erwan Bousse 1 Manuel Wimmer 1 Wieland Schwinger 2 Elisabeth Kapsammer

More information

Metamodeling. Janos Sztipanovits ISIS, Vanderbilt University

Metamodeling. Janos Sztipanovits ISIS, Vanderbilt University Metamodeling Janos ISIS, Vanderbilt University janos.sztipanovits@vanderbilt.edusztipanovits@vanderbilt edu Content Overview of Metamodeling Abstract Syntax Metamodeling Concepts Metamodeling languages

More information

State of the Art and Future Directions in Model Management Research

State of the Art and Future Directions in Model Management Research State of the Art and Future Directions in Model Management Research Japan-Austria Joint Workshop on ICT, October 18-19, 2010 Gerti Kappel Business Informatics Group Institute of Software Technology and

More information

A Runtime Model for fuml

A Runtime Model for fuml A Runtime Model for fuml Tanja Mayerhofer, Philip Langer, and Gerti Kappel Business Informatics Group Institute of Software Technology and Interactive Systems Vienna University of Technology, Austria {mayerhofer,

More information

Object-Oriented Modeling. State Machine Diagram. Slides accompanying Version 1.0

Object-Oriented Modeling. State Machine Diagram. Slides accompanying Version 1.0 Object-Oriented Modeling State Machine Diagram Slides accompanying UML@Classroom Version 1.0 Business Informatics Group Institute of Software Technology and Interactive Systems Vienna University of Technology

More information

Omniscient Debugging for Executable DSLs

Omniscient Debugging for Executable DSLs Omniscient Debugging for Executable DSLs Erwan Bousse, Dorian Leroy, Benoit Combemale, Manuel Wimmer, Benoit Baudry To cite this version: Erwan Bousse, Dorian Leroy, Benoit Combemale, Manuel Wimmer, Benoit

More information

CISC836: Models in Software Development: Methods, Techniques and Tools

CISC836: Models in Software Development: Methods, Techniques and Tools CISC836: Models in Software Development: Methods, Techniques and Tools Topic 4: Code Generation with EMF Meta modeling Languages for meta models: Ecore Using EMF and Ecoreto define a data model Using EMF

More information

On Using UML Profiles in ATL Transformations

On Using UML Profiles in ATL Transformations On Using UML Profiles in ATL Transformations Manuel Wimmer and Martina Seidl Business Informatics Group, Vienna University of Technology, Austria {wimmer seidl}@big.tuwien.ac.at Abstract. For defining

More information

Model-Driven Time-Series Analytics

Model-Driven Time-Series Analytics International Journal of Conceptual Modeling 252 Sabine Wolny, Alexandra Mazak, Manuel Wimmer, Rafael Konlechner, Gerti Kappel Model-Driven Time-Series Analytics Sabine Wolny *,a, Alexandra Mazak a, Manuel

More information

Kermeta tutorial. How to create a metamodel. François Tanguy, Didier Vojtisek. Abstract

Kermeta tutorial. How to create a metamodel. François Tanguy, Didier Vojtisek. Abstract Kermeta tutorial How to create a metamodel François Tanguy, Didier Vojtisek Abstract This tutorial is part of a serie of tutorials that explain step by step one of the aspect of Kermeta. This one will

More information

Model Driven Engineering (MDE)

Model Driven Engineering (MDE) Model Driven Engineering (MDE) Yngve Lamo 1 1 Faculty of Engineering, Bergen University College, Norway 26 April 2011 Ålesund Outline Background Software Engineering History, SE Model Driven Engineering

More information

Common Pitfalls of Using QVT Relations Graphical Debugging as Remedy

Common Pitfalls of Using QVT Relations Graphical Debugging as Remedy Common Pitfalls of Using QVT Relations Graphical Debugging as Remedy Angelika Kusel, Wieland Schwinger Johannes Kepler University Linz Austria kusel@bioinf.jku.at, wieland@schwinger.at Manuel Wimmer Vienna

More information

Towards Formalizing Domain-specific Modeling Languages. Kai Chen Janos Sztipanovits Sandeep Neema

Towards Formalizing Domain-specific Modeling Languages. Kai Chen Janos Sztipanovits Sandeep Neema Towards Formalizing Domain-specific Modeling Languages Kai Chen Janos Sztipanovits Sandeep Neema Outline! DSML overview! Framework for DSML design Syntax definition Semantic domain specification Semantic

More information

Christian Doppler Laboratory

Christian Doppler Laboratory Christian Doppler Laboratory Software Engineering Integration For Flexible Automation Systems AutomationML Models (in EMF and EA) for Modelers and Software Developers Emanuel Mätzler Institute of Software

More information

Compositional Model Based Software Development

Compositional Model Based Software Development Compositional Model Based Software Development Prof. Dr. Bernhard Rumpe http://www.se-rwth.de/ Seite 2 Our Working Groups and Topics Automotive / Robotics Autonomous driving Functional architecture Variability

More information

Object-Oriented Modeling. Sequence Diagram. Slides accompanying Version 1.0

Object-Oriented Modeling. Sequence Diagram. Slides accompanying Version 1.0 Object-Oriented Modeling Sequence Diagram Slides accompanying UML@Classroom Version 1.0 Business Informatics Group Institute of Software Technology and Interactive Systems Vienna University of Technology

More information

Operational Semantics Applied to Model Driven Engineering

Operational Semantics Applied to Model Driven Engineering T.J.L. Wolterink Operational Semantics Applied to Model Driven Engineering Thesis for the degree of Master Of Science (Computer Science, Track Software Engineering) Supervisors Dr. I. Kurtev Dr.Ir. K.G.

More information

Model-Driven Iterative Development of 3D Web-Applications Using SSIML, X3D and JavaScript

Model-Driven Iterative Development of 3D Web-Applications Using SSIML, X3D and JavaScript Freiberg University of Mining and Technology The University of Resources. Since 1765. WEB3D 2012-17th International Conference on 3D Web Technology Model-Driven Iterative Development of 3D Web-Applications

More information

TOWARDS A MORE FLEXIBLE MODEL-DRIVEN ENGINEERING

TOWARDS A MORE FLEXIBLE MODEL-DRIVEN ENGINEERING TOWARDS A MORE FLEXIBLE MODEL-DRIVEN ENGINEERING Juan de Lara Computer Science Department Universidad Autónoma de Madrid (Spain) NWPT 12 Bergen, Norway MOTIVATION Model-Driven Engineering (MDE) is about

More information

DiverSE s Seminar about Software Language Engineering

DiverSE s Seminar about Software Language Engineering DiverSE s Seminar about Software Language Engineering May 28 th, 2015 Rennes, France http://people.irisa.fr/benoit.combemale/sleseminar2015 THE DIVERSE TEAM DiverSE s Seminar about SLE - May 28 th, 2015-2

More information

Lost in Translation? Transformation Nets to the Rescue!

Lost in Translation? Transformation Nets to the Rescue! Lost in Translation? Transformation Nets to the Rescue! Manuel Wimmer 1, Angelika Kusel 2, Thomas Reiter 2, Werner Retschitzegger 3, Wieland Schwinger 2, and Gerti Kappel 1 1 Vienna University of Technology,

More information

ATL: Atlas Transformation Language. ATL User Manual

ATL: Atlas Transformation Language. ATL User Manual ATL: Atlas Transformation Language ATL User Manual - version 0.7 - February 2006 by ATLAS group LINA & INRIA Nantes Content 1 Introduction... 1 2 An Introduction to Model Transformation... 2 2.1 The Model-Driven

More information

Formal Support for QVT-Relations with Coloured Petri Nets

Formal Support for QVT-Relations with Coloured Petri Nets Formal Support for QVT-Relations with Coloured Petri Nets Juan de Lara Univ. Autónoma de Madrid (Spain) MODELS 2009 Denver, Colorado, USA Esther Guerra 1 Univ. Carlos III de Madrid (Spain) Motivation Model-to-Model

More information

An Integrated Framework to Specify Domain-Specific Modeling Languages

An Integrated Framework to Specify Domain-Specific Modeling Languages Downloaded from orbit.dtu.dk on: Sep 29, 2018 An Integrated Framework to Specify Domain-Specific Modeling Languages Zarrin, Bahram; Baumeister, Hubert Published in: Proceedings of 6th International Conference

More information

Horváth Ákos Bergmann Gábor Dániel Varró István Ráth

Horváth Ákos Bergmann Gábor Dániel Varró István Ráth Metamodeling and Domain Specific Modeling Horváth Ákos Bergmann Gábor Dániel Varró István Ráth Budapesti Műszaki és Gazdaságtudományi Egyetem Méréstechnika és Információs Rendszerek Tanszék Agenda Metamodeling

More information

Introduction to Dependable Systems: Meta-modeling and modeldriven

Introduction to Dependable Systems: Meta-modeling and modeldriven Introduction to Dependable Systems: Meta-modeling and modeldriven development http://d3s.mff.cuni.cz CHARLES UNIVERSITY IN PRAGUE faculty of mathematics and physics 3 Software development Automated software

More information

The Eclipse Modeling Framework and MDA Status and Opportunities

The Eclipse Modeling Framework and MDA Status and Opportunities The Eclipse Modeling Framework and MDA Status and Opportunities David Frankel Consulting df@davidfrankelconsulting.com www.davidfrankelconsulting.com Portions adapted from the book Model Driven Architecture:

More information

Model transformations. Model transformations. Model transformations. Model transformations

Model transformations. Model transformations. Model transformations. Model transformations The initialization of the attributes of a generated target model element by assigning references: Model target element generated by current rule Default target model element generated by another rule Non-default

More information

Rules and Helpers Dependencies in ATL Technical Report

Rules and Helpers Dependencies in ATL Technical Report Rules and Helpers Dependencies in ATL Technical Report Javier Troya 1, Martin Fleck 2, Marouanne Kessentini 3, Manuel Wimmer 2, and Bader Alkhaze 3 1 Department of Computer Languages and Systems, Universidad

More information

EXECUTABLE MODELING WITH FUML AND ALF IN PAPYRUS: TOOLING AND EXPERIMENTS

EXECUTABLE MODELING WITH FUML AND ALF IN PAPYRUS: TOOLING AND EXPERIMENTS EXECUTABLE MODELING WITH FUML AND ALF IN PAPYRUS: TOOLING AND EXPERIMENTS Sahar Guermazi*, Jérémie Tatibouet*, Arnaud Cuccuru*, Ed Seidewitz +, Saadia Dhouib*, Sébastien Gérard* * CEA LIST - LISE lab +

More information

MDSE USE CASES. Chapter #3

MDSE USE CASES. Chapter #3 Chapter #3 MDSE USE CASES Teaching material for the book Model-Driven Software Engineering in Practice by Morgan & Claypool, USA, 2012. www.mdse-book.com MDSE GOES FAR BEYOND CODE-GENERATION www.mdse-book.com

More information

Modelling in Enterprise Architecture. MSc Business Information Systems

Modelling in Enterprise Architecture. MSc Business Information Systems Modelling in Enterprise Architecture MSc Business Information Systems Models and Modelling Modelling Describing and Representing all relevant aspects of a domain in a defined language. Result of modelling

More information

Metamodeling with Metamodels. Using. UML/MOF including OCL

Metamodeling with Metamodels. Using. UML/MOF including OCL Metamodeling with Metamodels Using UML/MOF including OCL Introducing Metamodels (Wikipedia) A metamodel is a model of a model An instantiation of metamodel gives a model Metamodeling is the process of

More information

Kermeta tutorial. How to create an EMF meta model? François Tanguy, Didier Vojtisek, Zoé Drey, Marie Gouyette. Abstract

Kermeta tutorial. How to create an EMF meta model? François Tanguy, Didier Vojtisek, Zoé Drey, Marie Gouyette. Abstract Kermeta tutorial How to create an EMF meta model? François Tanguy, Didier Vojtisek, Zoé Drey, Marie Gouyette Abstract This tutorial show how to create an EMF model for the FSM example. Published Build

More information

A Design Pattern for Executable DSML

A Design Pattern for Executable DSML A Design Pattern for Executable DSML Benoit Combemale, Xavier Crégut, Marc Pantel To cite this version: Benoit Combemale, Xavier Crégut, Marc Pantel. A Design Pattern for Executable DSML. [Research Report]

More information

ECLIPSE MODELING PROJECT

ECLIPSE MODELING PROJECT ECLIPSE MODELING PROJECT A Domain-Specific Language Toolkit Richard С. Gronback AAddison-Wesley Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London Munich Pans Madrid

More information

MDD with OMG Standards MOF, OCL, QVT & Graph Transformations

MDD with OMG Standards MOF, OCL, QVT & Graph Transformations 1 MDD with OMG Standards MOF, OCL, QVT & Graph Transformations Andy Schürr Darmstadt University of Technology andy. schuerr@es.tu-darmstadt.de 20th Feb. 2007, Trento Outline of Presentation 2 Languages

More information

Modeling Requirements

Modeling Requirements Modeling Requirements Critical Embedded Systems Dr. Balázs Polgár Prepared by Budapest University of Technology and Economics Faculty of Electrical Engineering and Informatics Dept. of Measurement and

More information

AN AGILE MDA APPROACH FOR EXECUTABLE UML STRUCTURED ACTIVITIES

AN AGILE MDA APPROACH FOR EXECUTABLE UML STRUCTURED ACTIVITIES STUDIA UNIV. BABEŞ BOLYAI, INFORMATICA, Volume LII, Number 2, 2007 AN AGILE MDA APPROACH FOR EXECUTABLE UML STRUCTURED ACTIVITIES I. LAZĂR, B. PÂRV, S. MOTOGNA, I.-G. CZIBULA, AND C.-L. LAZĂR Abstract.

More information

AMOR Towards Adaptable Model Versioning

AMOR Towards Adaptable Model Versioning AMOR Towards Adaptable Model Versioning Kerstin Altmanninger 1, Gerti Kappel 2, Angelika Kusel 1, Werner Retschitzegger 1, Wieland Schwinger 1, Martina Seidl 2, Manuel Wimmer 2 1 Johannes Kepler University

More information

Formal Foundations of Software Engineering

Formal Foundations of Software Engineering Formal Foundations of Software Engineering http://d3s.mff.cuni.cz Martin Nečaský Pavel Parízek CHARLES UNIVERSITY IN PRAGUE faculty of mathematics and physics Goals of the course Show methods and tools

More information

Blazo Nastov. Journée des doctorant, Nîmes, France 19 June 2014

Blazo Nastov. Journée des doctorant, Nîmes, France 19 June 2014 Apport de l Ingénierie des Langages de Modélisation à l Ingénierie Système Basée sur les Modèles : conception d une méthode outillée pour la génération de Langages Métier interopérables, analysables et

More information

Coping with Semantic Variation Points in Domain-Specific Modeling Languages

Coping with Semantic Variation Points in Domain-Specific Modeling Languages Coping with Semantic Variation Points in Domain-Specific Modeling Languages Florent Latombe, Xavier Crégut, Julien Deantoni, Marc Pantel, Benoit Combemale To cite this version: Florent Latombe, Xavier

More information

Advanced Topics in Software Engineering (02265) Ekkart Kindler

Advanced Topics in Software Engineering (02265) Ekkart Kindler Advanced Topics in Software Engineering (02265) IV. (Meta-) Modelling Frameworks 2 1. Motivation & Overview With MOF, we have: Modelling notation (EMOF / CMOF) Java API (JMI, EMF, etc) Instance model /

More information

Model-Driven Language Engineering

Model-Driven Language Engineering Model-Driven Language Engineering Example of the ThingML language Franck Fleurey SINTEF Research Scientist (franck.fleurey@sintef.no) http://www.fleurey.com/franck INF520 - April 202 Language Engineering

More information

Generic Meta-modelling with Concepts, Templates and Mixin Layers

Generic Meta-modelling with Concepts, Templates and Mixin Layers Generic Meta-modelling with Concepts, Templates and Mixin Layers Juan de Lara 1 and Esther Guerra 2 1 Universidad Autónoma de Madrid, Spain Juan.deLara@uam.es 2 Universidad Carlos III de Madrid, Spain

More information

Modellierung operationaler Aspekte von Systemarchitekturen. Master Thesis presentation. October 2005 March Mirko Bleyh - Medieninformatik

Modellierung operationaler Aspekte von Systemarchitekturen. Master Thesis presentation. October 2005 March Mirko Bleyh - Medieninformatik Modellierung operationaler Aspekte von Systemarchitekturen Master Thesis presentation October 2005 March 2006 Agenda Goals Model-Driven Software Development Pro-active Infrastructure (PAI) Operational

More information

Model Driven Engineering (MDE) and Diagrammatic Predicate Logic (DPL)

Model Driven Engineering (MDE) and Diagrammatic Predicate Logic (DPL) Model Driven Engineering (MDE) and Department of Computer Engineering Faculty of Engineering Bergen University College NORWAY 06.06.2008 Institute of Mathematics and Informatics, Vilnius, LITHUANIA Project

More information

Multi Level Modeling in the Wild

Multi Level Modeling in the Wild Multi Level Modeling in the Wild with AutomationML Invited Talk @ Multi Level Modeling Workshop, MODELS 2018 Copenhagen, October 2018 Manuel Wimmer CDL MINT Business Informatics Group Institute of Information

More information

A Framework for Building Mapping Operators Resolving Structural Heterogeneities

A Framework for Building Mapping Operators Resolving Structural Heterogeneities A Framework for Building Mapping Operators Resolving Structural Heterogeneities Gerti Kappel 1, Horst Kargl 1, Thomas Reiter 2, Werner Retschitzegger 2, Wieland Schwinger 3, Michael Strommer 1, and Manuel

More information

Textual, executable, translatable UML

Textual, executable, translatable UML Textual, executable, translatable UML Gergely Dévai, Gábor Ferenc Kovács, and Ádám Ancsin Eötvös Loránd University, Faculty of Informatics, Budapest, Hungary, {deva,koguaai,anauaai@inf.elte.hu Abstract.

More information

Comparing Relational Model Transformation Technologies Implementing QVT with Triple Graph Grammars

Comparing Relational Model Transformation Technologies Implementing QVT with Triple Graph Grammars Noname manuscript No. (will be inserted by the editor) Comparing Relational Model Transformation Technologies Implementing QVT with Triple Graph Grammars Joel Greenyer 1, Ekkart Kindler 2 1 Software Engineering

More information

WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES. Introduction. Production rules. Christian de Sainte Marie ILOG

WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES. Introduction. Production rules. Christian de Sainte Marie ILOG WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES Christian de Sainte Marie ILOG Introduction We are interested in the topic of communicating policy decisions to other parties, and, more generally,

More information

Improving the Definition of UML

Improving the Definition of UML Improving the Definition of UML Greg O Keefe Computer Sciences Laboratory Australian National University Outline The UML definition claims to be Outline The UML definition claims to be precise Outline

More information

INTEGRATING UML COMPOSITE STRUCTURES AND FUML

INTEGRATING UML COMPOSITE STRUCTURES AND FUML INTEGRATING UML COMPOSITE STRUCTURES AND FUML Alessandro Gerlinger Romero romgerale@yahoo.com.br Klaus Schneider Maurício Gonçalves Vieira Ferreira Brazilian National Institute for Space Research INPE

More information

UML with Action Semantics

UML with Action Semantics UML with Action Semantics Concepts, Application and Implications Milan Ignjatovic Software Engineering Consultant Software Engineering Trainer Zuehlke Engineering AG Agenda Part 1: What is UML with Action

More information

Software Language Engineering of Architectural Viewpoints

Software Language Engineering of Architectural Viewpoints Software Language Engineering of Architectural Viewpoints Elif Demirli and Bedir Tekinerdogan Department of Computer Engineering, Bilkent University, Ankara 06800, Turkey {demirli,bedir}@cs.bilkent.edu.tr

More information

IMCE MOF2 / OWL2 Integration

IMCE MOF2 / OWL2 Integration National Aeronautics and IMCE MOF2 / OWL2 Integration Nicolas Rouquette System Architectures & Behaviors Group, 313K 2012-03-20 Copyright 2012, Government Sponsorship Acknowledged Systems Engineering Domain-Specific

More information

Create and Play your Pac-Man Game with the GEMOC Studio (Tool Demonstration)

Create and Play your Pac-Man Game with the GEMOC Studio (Tool Demonstration) Create and Play your Pac-Man Game with the GEMOC Studio (Tool Demonstration) Dorian Leroy, Erwan Bousse, Manuel Wimmer, Benoit Combemale, Wieland Schwinger To cite this version: Dorian Leroy, Erwan Bousse,

More information

Small is Beautiful Building a flexible software factory using small DSLs and Small Models

Small is Beautiful Building a flexible software factory using small DSLs and Small Models Small is Beautiful Building a flexible software factory using small DSLs and Small Models Jos Warmer Partner, Ordina jos.warmer@ordina.nl 1 Modeling Maturity Levels MML 0: No specification MML 1: Textual

More information

Computation Independent Model (CIM): Platform Independent Model (PIM): Platform Specific Model (PSM): Implementation Specific Model (ISM):

Computation Independent Model (CIM): Platform Independent Model (PIM): Platform Specific Model (PSM): Implementation Specific Model (ISM): viii Preface The software industry has evolved to tackle new approaches aligned with the Internet, object-orientation, distributed components and new platforms. However, the majority of the large information

More information

AN FUML EXTENSION SIMPLIFYING EXECUTABLE UML MODELS IMPLEMENTED FOR A C++ EXECUTION ENGINE

AN FUML EXTENSION SIMPLIFYING EXECUTABLE UML MODELS IMPLEMENTED FOR A C++ EXECUTION ENGINE AN FUML EXTENSION SIMPLIFYING EXECUTABLE UML MODELS IMPLEMENTED FOR A C++ EXECUTION ENGINE Francesco Bedini Ralph Maschotta Alexander Wichmann Armin Zimmermann Systems and Software Engineering Group Technische

More information

Grammars. Prof. Andreas Prinz. Introduction, Compilers. Examples Meta-models vs. Grammars Summary

Grammars. Prof. Andreas Prinz. Introduction, Compilers. Examples Meta-models vs. Grammars Summary Meta-models and Grammars Prof. Andreas Prinz Introduction, Compilers Modelling & Meta-modelling Examples Meta-models vs. Grammars Summary Compilers Graphical Editor Parser Text editor Static checks (OCL)

More information

The Case for Meta-modeling Frameworks Specialisation

The Case for Meta-modeling Frameworks Specialisation The Case for Meta-modeling Frameworks Specialisation S. Temate 1, L. Broto 1, and D. Hagimont 1 1 IRIT/ENSEEIHT, 2 rue Charles Camichel - BP 7122 31071 Toulouse cedex 7 (France) Abstract Domain Specific

More information

Metamodeling. 16. April 2012 Real-Time Systems Lab Prof. Dr. Andy Schürr Dr. Gergely Varró 1

Metamodeling. 16. April 2012 Real-Time Systems Lab Prof. Dr. Andy Schürr Dr. Gergely Varró 1 Metamodeling The slides of this lecture are reused from the Model Engineering course at TU Vienna with the kind permission of Prof. Gerti Kappel (head of the Business Informatics Group) 16. April 2012

More information

Advanced Topics in Software Engineering (02265) Ekkart Kindler

Advanced Topics in Software Engineering (02265) Ekkart Kindler Advanced Topics in Software Engineering (02265) Recapitulation (I. Introduction ) 2 Levels of models ClassDiagram is an instance of PetriNet * Object * Class 1 start 1 end * Association concrete syntax

More information

Prodeling with the Action Language for Foundational UML

Prodeling with the Action Language for Foundational UML Prodeling with the Action Language for Foundational UML Thomas Buchmann Chair of Applied Computer Science I, University of Bayreuth, Universitätsstrasse 30, 95440 Bayreuth, Germany Keywords: Abstract:

More information

GMF Tooling 3.0 Vision, Architecture, Roadmap

GMF Tooling 3.0 Vision, Architecture, Roadmap GMF Tooling 3.0 Vision, Architecture, Roadmap 2012.03.25, OMG/Eclipse Symposium, Reston VA Michael Golubev, GMF Tooling lead Montages AG www.montages.com GMF Tooling - Overview Vision: Support creation

More information

Model-Driven Systems Engineering for Netcentric System of Systems With DEVS Unified Process

Model-Driven Systems Engineering for Netcentric System of Systems With DEVS Unified Process Model-Driven Systems Engineering for Netcentric System of Systems With DEVS Unified Process Saurabh Mittal, PhD Dunip Technologies, L3 Communications, USA Jose L. Risco Martin, PhD Universedad Complutense

More information

An Introduction to Model Driven Engineering (MDE) Bahman Zamani, Ph.D. bahmanzamani.com

An Introduction to Model Driven Engineering (MDE) Bahman Zamani, Ph.D. bahmanzamani.com An Introduction to Model Driven Engineering (MDE) Bahman Zamani, Ph.D. bahmanzamani.com Department of Software Systems Engineering University of Isfahan Fall 2013 Overview Model & Modeling UML & UML Profile

More information

Do model transformations solve all the problems?

Do model transformations solve all the problems? Do model transformations solve all the problems? Panel@ICFEM'2008 Kitakyuschu City, October, 27 th Jean Bézivin (AtlanMod team, INRIA& EMN) -1- Ten years or Research in Model Transformation: where do we

More information

Announcement. Agenda 7/31/2008. Polymorphism, Dynamic Binding and Interface. The class will continue on Tuesday, 12 th August

Announcement. Agenda 7/31/2008. Polymorphism, Dynamic Binding and Interface. The class will continue on Tuesday, 12 th August Polymorphism, Dynamic Binding and Interface 2 4 pm Thursday 7/31/2008 @JD2211 1 Announcement Next week is off The class will continue on Tuesday, 12 th August 2 Agenda Review Inheritance Abstract Array

More information

Visual Interpreter and Debugger for Dynamic Models Based on the Eclipse Platform

Visual Interpreter and Debugger for Dynamic Models Based on the Eclipse Platform Visual Interpreter and Debugger for Dynamic Models Based on the Eclipse Platform Diploma Thesis Submitted by Nils Bandener Supervisor: Prof. Dr. Gregor Engels Assessor: Prof. Dr. Heike Wehrheim Co-Supervisor:

More information

Colored Petri Net Evaluation Tool. Stephen Rojcewicz CS 2310

Colored Petri Net Evaluation Tool. Stephen Rojcewicz CS 2310 Colored Petri Net Evaluation Tool Stephen Rojcewicz CS 2310 Motivating Example (Colored Petri Nets) Consider a gesture-driven application interface. The system must detect three kinds of gestures and respond

More information

March 2, Homepage:

March 2, Homepage: Action Semantics for an Executable UML Thomas Feng March 2, 2003 Email: thomas@email.com.cn Homepage: http://moncs.cs.mcgill.ca/people/tfeng/ Why are we interested in semantics? Other than syntax, the

More information

with openarchitectureware

with openarchitectureware Model-Driven Development with openarchitectureware Markus Völter voelter@acm.orgorg www.voelter.de Sven Efftinge sven@efftinge.de www.efftinge.de Bernd Kolb bernd@kolbware.de www.kolbware.de 2006-7 Völter,

More information

Electronic Communications of the EASST Volume 44 (2011) Proceedings of the Workshop on OCL and Textual Modelling (OCL 2011)

Electronic Communications of the EASST Volume 44 (2011) Proceedings of the Workshop on OCL and Textual Modelling (OCL 2011) Electronic Communications of the EASST Volume 44 (2011) Proceedings of the Workshop on OCL and Textual Modelling (OCL 2011) Extending ASSL: Making UML Metamodel-based Workflows executable Jens Brüning,

More information

Formal specification of semantics of UML 2.0 activity diagrams by using Graph Transformation Systems

Formal specification of semantics of UML 2.0 activity diagrams by using Graph Transformation Systems Formal specification of semantics of UML 2.0 activity diagrams by using Graph Transformation Systems Somayeh Azizi 1, Vahid Panahi 2 Computer science department, Sama Technical and vocational, Training

More information

Model-Level Integration of the OCL Standard Library Using a Pivot Model with Generics Support

Model-Level Integration of the OCL Standard Library Using a Pivot Model with Generics Support Faculty of Computer Science, Institute for Software- and Multimedia-Technology, Chair for Software Technology Matthias Bräuer and Birgit Demuth Model-Level Integration of the Using a Pivot Model with Generics

More information

Defining Domain-Specific Modeling Languages

Defining Domain-Specific Modeling Languages Defining Domain-Specific Modeling Languages 1 st Oct 2008 Juha-Pekka Tolvanen MetaCase 1 Relevant language classifications to start with General-Purpose / Domain-Specific Narrow area of interest Often

More information

Tool Paper: Combining Alf and UML in Modeling Tools An Example with Papyrus

Tool Paper: Combining Alf and UML in Modeling Tools An Example with Papyrus Tool Paper: Combining Alf and UML in Modeling Tools An Example with Papyrus Ed Seidewitz Model Driven Solutions 14000 Gulliver s Trail Bowie MD 20720 USA ed-s@modeldriven.com Jérémie Tatibouet CEA, LIST,

More information

A framework for business processes view integration

A framework for business processes view integration A framework for business processes view integration Souvik Barat 1, Vinay Kulkarni 1, Prof. D Janakiram 2 1 Tata Research Development & Design Centre, Pune, India {souvik.barat, vinay.vkulkarni}@tcs.com}

More information

A Model-based Standard for SDL

A Model-based Standard for SDL A Model-based Standard for SDL Andreas Prinz 1, Markus Scheidgen 2, and Merete S. Tveit 1 1 Faculty of Engineering, Agder University College Grooseveien 36, N-4876 Grimstad, Norway andreas.prinz@hia.no,

More information

Common Pitfalls of Using QVT Relations - Graphical Debugging as Remedy

Common Pitfalls of Using QVT Relations - Graphical Debugging as Remedy Common Pitfalls of Using QVT Relations - Graphical Debugging as Remedy Angelika Kusel, Wieland Schwinger Johannes Kepler University Linz Austria kusel@bioinf.jku.at, wieland@schwinger.at Manuel Wimmer

More information

Design and Prototypical Implementation of a Pivot Model as Exchange Format for Models and Metamodels in a QVT/OCL Development Environment

Design and Prototypical Implementation of a Pivot Model as Exchange Format for Models and Metamodels in a QVT/OCL Development Environment Faculty of Computer Science, Institute for Software- and Multimedia-Technology, Chair for Software Technology Matthias Bräuer Design and Prototypical Implementation of a Pivot Model as Exchange Format

More information

ECE 122. Engineering Problem Solving with Java

ECE 122. Engineering Problem Solving with Java ECE 122 Engineering Problem Solving with Java Lecture 14 Array Wrap-Up Outline Problem: How can I store information in arrays without complicated array management? The Java language supports ArrayLists

More information

Coral: A Metamodel Kernel for Transformation Engines

Coral: A Metamodel Kernel for Transformation Engines Coral: A Metamodel Kernel for Transformation Engines Marcus Alanen and Ivan Porres TUCS Turku Centre for Computer Science Department of Computer Science, Åbo Akademi University Lemminkäisenkatu 14, FIN-20520

More information

PAPYRUS FUTURE. CEA Papyrus Team

PAPYRUS FUTURE. CEA Papyrus Team PAPYRUS FUTURE CEA ABSTRACT SYNTAX The definition of a DSML abstract syntax in Papyrus is done with the profile editor. It lets define abstract syntax constraints in OCL and Java. Ongoing: Façade [1] lets

More information

An Ontological Analysis of Metamodeling Languages

An Ontological Analysis of Metamodeling Languages An Ontological Analysis of Metamodeling Languages Erki Eessaar and Rünno Sgirka 2 Department of Informatics, Tallinn University of Technology, Estonia, eessaar@staff.ttu.ee 2 Department of Informatics,

More information

OCLLib, OCLUnit, OCLDoc: Pragmatic Extensions for the Object Constraint Language by Examples

OCLLib, OCLUnit, OCLDoc: Pragmatic Extensions for the Object Constraint Language by Examples OCLLib, OCLUnit, OCLDoc: Pragmatic Extensions for the Object Constraint Language by Examples Joanna Chimiak-Opoka University of Innsbruck, Austria DresdenOCL Quo Vadis?, 15 th October 2009, Dresden, Germany

More information

A Formal Specification of the Horus Modeling Language Using FDMM

A Formal Specification of the Horus Modeling Language Using FDMM Association for Information Systems AIS Electronic Library (AISeL) Wirtschaftsinformatik Proceedings 2013 Wirtschaftsinformatik 2013 A Formal Specification of the Horus Modeling Language Using FDMM Hans-Georg

More information