Modeling Turnpike: a Model-Driven Framework for Domain-Specific Software Development *
|
|
|
- Amanda Cain
- 9 years ago
- Views:
Transcription
1 for Domain-Specific Software Development * Hiroshi Wada Advisor: Junichi Suzuki Department of Computer Science University of Massachusetts, Boston [email protected] and [email protected] Abstract. This paper overviews the Modeling Turnpike (mturnpike) project, which investigates a generic model-driven development framework that supports various domain-specific solutions (i.e. modeling, programming and development process to directly deal with domain concepts). This paper identifies a series of research issues to create such a framework, and describes how the mturnpike project addresses those issues. The proposed framework allows developers to model and program domain concepts (as UML models and attribute-oriented programs) and to transform them to compilable code. This paper also describes future directions of the mturnpike project. 1. Introduction Modeling technologies have matured to the point where they can offer significant leverage in all aspects of software development. Given modern modeling technologies, the focus of software development has been shifting from implementation technology domains toward the concepts and semantics in problem domains. The more directly application models can represent domain concepts, the easier it becomes to specify applications. A key goal of modeling technologies is to map modeling concepts directly to domain concepts [1]. Domain Specific Language (DSL) is a promising solution to directly represent and implement domain concepts [2]. DSLs are visual or textual languages targeted to particular problem domains, rather than general-purpose languages that aim at any software problems. Various DSLs have been proposed and used in academic, industrial and government communities. Although several experience reports have demonstrated DSLs can improve software development productivity (e.g. [3]), existing DSLs are supported only by specific tools and frameworks; there are few generic frameworks supporting arbitrary DSLs. This Ph.D. research investigates a generic model-driven development (MDD) framework that supports various domain-specific solutions (i.e. modeling, programming and development processes to directly deal with domain concepts), and empirically evaluates a series of techniques to develop such a framework. Steps towards creating the proposed framework include investigating a generic foundation to handle arbitrary DSLs; strategies, principles and tradeoffs in different DSL designs (e.g. DSL syntax and semantics); building blocks for modeling and programming domain concepts; transformation strategies from domain concepts to the final (compilable) source code; development processes to * This research is supported in part by OGIS International, Inc. and Electric Power Development Co., Ltd.
2 2 leverage the proposed framework; model-driven approaches for maintenance and tests; and performance implications of major functional components in the framework. This project addresses these research issues through implementing the proposed framework, and empirically evaluates the impact of framework designs on various evaluation criteria such as versatility, flexibility, productivity, ease of use, and maintainability. 2. Modeling Turnpike: The Proposed Framework This project proposes and investigates a new MDD framework, called Modeling Turnpike (or mturnpike). mturnpike allows developers to model and program domain concepts in arbitrary DSLs and to transform them to the final (compilable) source code in a seamless manner [4, 5]. Leveraging the notions of UML metamodeling and attribute-oriented programming, mturnpike provides an abstraction to represent domain concepts at the modeling and programming layers simultaneously. At the modeling layer, domain concepts are represented as a Domain Specific Model (DSM), which is a set of UML 2.0 diagrams (Fig. 1). At the programming layer, domain concepts are represented as a Domain Specific Code (DSC), which consists of attributeoriented programs (Fig. 1). Attribute-oriented programming is a program marking technique [6]. Programmers can mark program elements (e.g. classes and methods) to indicate that they maintain domain-specific semantics. By hiding the implementation details of those semantics from program code, attributes increase the level of programming abstraction and reduce programming complexity, resulting in simpler and more readable programs. The program elements associated with attributes are transformed to more detailed (compilable) programs by a supporting tool (e.g. pre-processor). mturnpike uses the annotations in Java 2 Standard Edition 5.0 as the syntax of attributes. mturnpike consists of the frontend and backend systems (Fig. 1). The frontend system is implemented as DSC Generator. It transforms domain concepts from the modeling layer to programming layer, and vise versa, by providing a seamless mapping between DSMs and DSCs. Each DSL is specified as a UML profile, which extends the UML standard metamodel to define stereotypes and tagged-values, in order to express domain concepts. Given a DSL, a DSM is represented as a set of UML 2.0 class and composite struc- Abstraction level Higher Abstraction Level Lower Abstraction Level Describe models DSM Plain UML Models DSM Transformer DSC Generator DSL Transformer Transformation rules Skeleton Code Generator Modelers Programmers Application Developers Write method code DSC DSC Transformer Final Code mturnpike Frontend mturnpike Backend Visual Models Textual Code Representation Fig. 1. mturnpike Architecture and its Key Components.
3 3 ture diagrams 1. Each DSC consists of Java interfaces and classes decorated with annotations 2. After DSC Generator generates a DSC (i.e. annotated code), programmers write method code in the generated DSC in order to implement dynamic behaviors for domain concepts 3. DSC Generator maps the stereotypes and tagged-values in a DSM to the attributes (annotations) in a DSC, and vise versa. The backend system of mturnpike transforms a DSM and DSC into a more detailed model and program by applying a given transformation rule. mturnpike allows developers to define arbitrary transformation rules, each of which specifies how to specialize a DSM and DSC to particular implementation and deployment technologies. For example, a transformation rule may specialize them to a database system, while another rule may specialize them to a remoting system. The backend system consists of DSM Transformer, Skeleton Code Generator and DSC Transformer (Fig. 1). DSM Transformer accepts a DSM, and specializes it to a particular implementation and deployment technologies. Given a transformation rule, it transforms (or unfolds) the DSM model elements associated with stereotypes and tagged-values into the plain UML model elements that do not have them (Fig. 1). Skeleton Code Generator takes a plain UML model created by DSM Transformer, and generates skeleton Java code that corresponds to the input plain UML model (Fig. 1). DSC Transformer accepts a DSC generated by DSC Generator, method code written on the generated DSC by programmers, and skeleton code generated by Skeleton Code Generator. Then, DSC Transformer combines them to generate the final compilable code (in Java). DSC Transformer extracts method code embedded in an input DSC, and copies the method code to an input skeleton code. DSC Transformer analyses a given transformation rule (Fig. 1) in order to determine where each method code is copied in an input skeleton code. Currently, mturnpike is implemented in Java. The implementation of its frontend system is completed, and its backend system is in an early stage of implementation. 3. Research Issues and Contributions This section summarizes how this project addresses the research issues identified in Secsion 1. A generic foundation to handle arbitrary DSLs. As described in Section 1, mturnpike is expected to be generic to handle arbitrary DSLs at both the modeling and programming layers. For this purpose, mturnpike adopts a language-in-language design strategy in which different specialized languages are defined on top of a generic and customizable language. In mturnpike, each DSL is defined as a UML profile. This means that DSMs are derivative models defined on top of UML. As descried in Secsion2, mturnpike maps the stereotpes and tagged-values in a DSM and the annotations in a DSC. DSCs (i.e. annotated code) are derivative programs defined on top of Java. mturnpike allows developers to define arbitrary DSLs and use arbitrary DSMs and DSCs. This design strategy contributes to improve the versatility of mturnpike. In 1 This work is one of the first attempts to exploit UML 2.0 to define and use DSLs. 2 This work is the first attempt to bridge the gap between UML modeling and attribute-oriented programming. 3 The methods in generated DSCs are empty because DSMs and DSCs specify static structure of domain concepts.
4 4 order to demonstrate how to exploit mturnpike in application development, it has been used to develop distributed systems with a DSL for Service-Oriented Architecture (SOA) [4, 5]. The SOA DSL abstracts distributed systems using two major domain-specific concepts, service interface and connections between services, and hides the details of implementation and deployment technologies (e.g. programming languages and remoting systems). The SOA DSL allows users to specify, as DSMs, connection semantics (e.g. queuing and secure connections), message invocation semantics (e.g. synchronous and asynchronous invocations) and message filtering semantics (e.g. message conversion and aggregation). Building blocks for modeling and programming domain concepts. It is an important issue in MDD tools how to describe domain concepts at the modeling and programming layers. Traditional MDD tools accept domain-specific models in UML or other notations, and generate skeleton source code in general-purpose languages (e.g. Java, C++ and C#) [7, 8, 9]. In this scheme, programmers and modelers work at different abstraction levels. Although modelers work on modeling at a higher abstraction level, programmers have to work on generated code (e.g. writing method code) at a lower abstraction level. The generated source code is often hard to read and understand. It is also complicated, time consuming and error-prone to modify and extend the generated code. mturnpike allows both modelers and programmers to work at a higher abstraction level (Fig. 1). Programmers write method code in DSCs (i.e. annotated code) before generating skeleton source code. This means that programmers can focus on coding application s business logic without handling the details in implementation and deployment technologies. Also, DSCs (i.e. annotated code) are much more readable and easier to understand than the skeleton source code (in general-purpose languages) generated by traditional MDD tools. Transformation strategies from domain-specific models to the final (compilable) source code. It is another important issue in MDD tools how to transform models (or domain-specific models) toward the final compilable source code [10]. Using a set of transformation rules, mturnpike transforms a DSM to a DSC and a plain UML model (i.e. a model that has stereotypes and tagged-values), and combines the DSC and plain UML model to generate the compilable code. mturnpike allows developers to define transformation rules in a declarative manner. Declarative transformation rules are more readable and easier to write and maintain than procedural ones. This framework design contributes to improve ease of use and maintainability in mturnpike. Development processes to leverage the proposed framework. mturnpike maps domain concepts between the modeling and programming layers in a seamless and bidirectional manner. This mapping allows modelers and programmers to deal with the same set of domain concepts in different representations (i.e. UML models and annotated code), yet at the same level of abstraction. Thus, modelers do not have to involve programming details, and programmers do not have to possess detailed domain knowledge and UML modeling expertise. This separation of concerns can reduce the complexity in application development, and increase the productivity for developers to model and program domain concepts. Performance Implications of major functional components. Since mturnpike employs a new development style to implement domain concepts, it is not clear how
5 5 much overhead and memory space is necessary to execute major functional components in mturnpike. Preliminary measurement results show that the frontend system of mturnpike (i.e. DSC Generator) has fairly small footprint (up to 5MB) and works efficiently (up to 5 seconds) to process a mid-size application that contains 100 classes each of which has 10 data fields, two stereotypes and 10 tagged-values [5]. 4. Future Directions This section summarizes the future directions of this project. A generic foundation to handle arbitrary DSLs. mturnpike currently supports only one DSL for each transformation from a DSM to compilable code. However, an application may require two or more DSLs, e.g. DSLs for a vertical domain and a horizontal domain. A vertical domain means a business specific domain, such as banking and manufacturing. A horizontal domain means a technology specific domain, such as a remoting system. The SOA DSL described in Section 3 is an example of horizontal DSL. A future work will enhance mturnpike to support at least three hosizontal/vertical DSLs. Strategies, principles and tradeoffs in different DSL designs. mturnpike currently uses UML and UML profile to define DSLs. Although UML is a standard and powerful modeling language, it requires developers to understand its complex metamodel to define DSLs (UML profiles). Also, UML is designed along with the object-oriented paradigm. To define a non-oo model, developers need to create a new metamodel using MOF (i.e. meta-metamodel) [11]. Several MDD initiatives provide DSLs based on non-uml modeling languages targeted to particular domains (e.g. data modeling and user interface). These languages are usually easier to customize than UML, but they are proprietary and may raise a learning curve. Tradeoffs and selection criteria between them are not well explored yet. A future work will address this research issue through extending mturnpike to support MOF and support non-uml modeling notations such as BPMN [12]. Transformation strategies from domain-specific models to the final (compilable) source code. mturnpike currently supports only static structure of a domain-specific models. Dynamic behavior is defined as method code in DSCs. mtrunpike copies method code from a DSC to the final code, and it does not transform the code. A future work will address a code transformation mechanism between a DSC and the final code. Also, to make the code transformation mechanism generic (i.e. supporting arbitrary programming languages), a future work will investigate a generic meta-model for programming languages (e.g. code transformation mechanism based on EBNF [13]). Model-driven approaches for maintenance and tests. mturnpike currently does not provide complete level of traceability between a DSM and the final code, and a model-driven mechanism for debugging and testing. Currently, developers write method code in DSCs, but it is not compilable. If errors occur in the final code, developers have to revise method code in a DSC and transform it again to the final code. This round trip process may impose a burden on developers. A future work will ad-
6 6 dress a mechanism to directly debug DSCs in a model-driven manner and maintain traceability between DSMs and the final code. Performance Implications of major functional components. A set of preliminary performance measurements reveal mturnpike s forntend has several bottlenecks. A future work will address performance improvements on them, and reveal performance implications of major functional components in mtrunpike s backend. 5. Conclusion This paper overviews the current status and future directions of the mturnpike project. The author of the paper started this project as his preliminary Ph.D. research in May 2004, and enrolled in the Ph.D. program of University of Massachusetts, Boston in September His graduation is expected in References 1.. G. Booch, A Brown, S Iyengar, J. Rumbaugh and B. Selic, An MDA Manifesto, In D. Frankel and J. Parodi (eds.), The MDA Journal: Model Driven Architecture Straight from the Masters, Chap. 11, Meghan- Kiffer, Dec S. Cook, Domain-Specific Modeling and Model-driven Architecture, In D. Frankel and J. Parodi (eds.), The MDA Journal: Model Driven Architecture Straight from the Masters, Chap. 3, Meghan-Kiffer, Dec S. Kelly and J. Tolvanen, Visual Domain-specific Modeling: Benefits and Experiences of using metacase Tools, In Proc. of Int l workshop on Model Engineering, ECOOP, H. Wada, J. Suzuki, S. Takada and N. Doi, Leveraging Metamodeling and Attribute-Oriented Programming to Build a Model-driven Framework for Domain Specific Languages, In Proc. of the 8th JSSST Conference on Systems Programming and its Applications, March H. Wada and J. Suzuki, "Modeling Turnpike Frontend System: a Model-Driven Development Framework Leveraging UML Metamodeling and Attribute-Oriented Programming," In Proc. of the 8th ACM/IEEE International Conference on Model Driven Engineering Languages and Systems, October to appear. 6. D. Schwarz, Peeking Inside the Box: Attribute-Oriented Programming with Java 1.5, In ON Java.com, O Reilly Media, Inc., June Willink, UMLX: A Graphical Transformation Language for MDA, In Proc. of OOPSLA, Patrascoiu, Mapping EDOC to Web Services using YATL, In Proc. of the 8th IEEE International Enterprise Distributed Object Computing Conference, September J. Greenfield, K. Short, S. Cook, S. Kent and J. Crupi, "Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools", Wiley, August S. Sendall and W. Kozaczynski, "Model Transformation: The Heart and Soul of Model-Driven Software Development," In IEEE Software, vol. 20, no. 5, Sept./Oct Object Management Group, UML 2.0 Infrastructure Specification, September, Business Process Modeling Initiative, Business Process Modeling Notation (BPMN) 1.0, May, ISO/IEC, Extended Backus-Naur Form, ISO/IEC 14977, 1996.
Modeling Turnpike Frontend System: a Model-Driven Development Framework Leveraging UML Metamodeling and Attribute-Oriented Programming *
Modeling Turnpike Frontend System: a Model-Driven Development Framework Leveraging UML Metamodeling and Attribute-Oriented Programming Hiroshi Wada and Junichi Suzuki Department of Computer Science University
MDE Adoption in Industry: Challenges and Success Criteria
MDE Adoption in Industry: Challenges and Success Criteria Parastoo Mohagheghi 1, Miguel A. Fernandez 2, Juan A. Martell 2, Mathias Fritzsche 3 and Wasif Gilani 3 1 SINTEF, P.O.Box 124-Blindern, N-0314
Comparison of Model-Driven Architecture and Software Factories in the Context of Model-Driven Development
Comparison of Model-Driven Architecture and Software Factories in the Context of Model-Driven Development Ahmet Demir Technische Universität München Department of Informatics Munich, Germany [email protected]
Foundations of Model-Driven Software Engineering
Model-Driven Software Engineering Foundations of Model-Driven Software Engineering Dr. Jochen Küster ([email protected]) Contents Introduction to Models and Modeling Concepts of Model-Driven Software
Building a Flexible Software Factory Using Partial Domain Specific Models
Building a Flexible Software Factory Using Partial Domain Specific Models Jos Warmer 1, Anneke Kleppe 2 3 1 Ordina SI&D, The Netherlands [email protected] 2 University Twente, Netherlands [email protected]
Industrial Experiences on Using DSLs in Embedded Software Development
Industrial Experiences on Using DSLs in Embedded Software Development Juha-Pekka Tolvanen MetaCase Ylistönmäentie 31 FI-40500 Jyväskylä, Finland [email protected] 1 Introduction Domain-Specific Modeling
A Pattern-based Approach to Business Process Modeling and Implementation in Web Services
A Pattern-based Approach to Business Process Modeling and Implementation in Web Services Steen Brahe 1 and Behzad Bordbar 2 1 Danske Bank & IT University of Copenhagen, Denmark [email protected] 2 University
COCOVILA Compiler-Compiler for Visual Languages
LDTA 2005 Preliminary Version COCOVILA Compiler-Compiler for Visual Languages Pavel Grigorenko, Ando Saabas and Enn Tyugu 1 Institute of Cybernetics, Tallinn University of Technology Akadeemia tee 21 12618
MDA Journal A BPT COLUMN. David S. Frankel. Introduction. May 2004
Introduction MDA Journal May 2004 At the end of 2002, with the computer industry reeling amidst the near total shutdown in corporate IT spending, IBM was rather quietly continuing its long standing program
Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools
Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools Jack Greenfield Keith Short WILEY Wiley Publishing, Inc. Preface Acknowledgments Foreword Parti Introduction to
From Business World to Software World: Deriving Class Diagrams from Business Process Models
From Business World to Software World: Deriving Class Diagrams from Business Process Models WARARAT RUNGWORAWUT 1 AND TWITTIE SENIVONGSE 2 Department of Computer Engineering, Chulalongkorn University 254
Model Driven Interoperability through Semantic Annotations using SoaML and ODM
Model Driven Interoperability through Semantic Annotations using SoaML and ODM JiuCheng Xu*, ZhaoYang Bai*, Arne J.Berre*, Odd Christer Brovig** *SINTEF, Pb. 124 Blindern, NO-0314 Oslo, Norway (e-mail:
Model Driven Development Future or Failure of Software Development?
Model Driven Development Future or Failure of Software Development? Ruben Picek, Vjeran Strahonja University of Zagreb, Faculty of Organization and Informatics, Varaždin [email protected], [email protected]
Revel8or: Model Driven Capacity Planning Tool Suite
Revel8or: Model Driven Capacity Planning Tool Suite Liming Zhu 1,2, Yan Liu 1,2, Ngoc Bao Bui 1,2,Ian Gorton 3 1 Empirical Software Engineering Program, National ICT Australia Ltd. 2 School of Computer
Generating Aspect Code from UML Models
Generating Aspect Code from UML Models Iris Groher Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739 Munich, Germany [email protected] Stefan Schulze Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739 Munich,
The leading platform for Model Driven Architecture (MDA) Content:
The leading platform for Model Driven Architecture (MDA) Content: Models Made for Business... 2 ArcStyler Overview... 2 Main Benefits... 3 ArcStyler Editions... 4 ArcStyler Modules and Tool Architecture...
On General-purpose Textual Modeling Languages. On General-purpose Textual Modeling Languages
On General-purpose Textual Modeling Languages On General-purpose Textual Modeling Languages Martin Mazanec and Ondřej Macek Martin Mazanec and Ondřej Macek Department of Computer Science, FEL, Czech Technical
Toward Families of QVT DSL and Tool
Toward Families of QVT DSL and Tool Benoît Langlois, Daniel Exertier, Ghanshyamsinh Devda Thales Research & Technology RD 128 91767 Palaiseau, France {benoit.langlois, daniel.exertier, ghanshyamsinh.devda}@thalesgroup.com
Designing Real-Time and Embedded Systems with the COMET/UML method
By Hassan Gomaa, Department of Information and Software Engineering, George Mason University. Designing Real-Time and Embedded Systems with the COMET/UML method Most object-oriented analysis and design
Web Services - Consultant s View. From IT Stategy to IT Architecture. Agenda. Introduction
Web Services - A Consultant s View From IT Stategy to IT Architecture Hans-Peter Hoidn, Timothy Jones, Jürg Baumann, Oliver Vogel February 12, 2003 Copyright IBM Corporation 2002 Agenda Introduction I.
UML Profiling Comes of Age Realizing the Potential of Domain-Specific Modeling
UML Profiling Comes of Age Realizing the Potential of Domain-Specific Modeling PATHS TO DOMAIN-SPECIFIC MODELING... 1 UML PROFILING... 2 The Origin of the UML Profiling Specifications... 2 The Vision...
Service Oriented Architectures
8 Service Oriented Architectures Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) [email protected] http://www.iks.inf.ethz.ch/ The context for SOA A bit of history
Multi-objective Design Space Exploration based on UML
Multi-objective Design Space Exploration based on UML Marcio F. da S. Oliveira, Eduardo W. Brião, Francisco A. Nascimento, Instituto de Informática, Universidade Federal do Rio Grande do Sul (UFRGS), Brazil
Enterprise Architecture at Work
Marc Lankhorst et al. Enterprise Architecture at Work Modelling, Communication and Analysis Third Edition 4y Springer Contents 1 Introduction to Enterprise Architecture 1 1.1 Architecture 1 1.2 Enterprise
Integrating Performance Characterization with Software Development
International Journal of Basic & Applied Sciences IJBAS-IJENS Vol: 11 No: 02 7 Integrating Performance Characterization with Software Development Abstract- The importance of integrating performance considerations
An Aspect-Oriented Product Line Framework to Support the Development of Software Product Lines of Web Applications
An Aspect-Oriented Product Line Framework to Support the Development of Software Product Lines of Web Applications Germán Harvey Alférez Salinas Department of Computer Information Systems, Mission College,
Aplicando enfoque MDE a aplicaciones WEB-SOA
Aplicando enfoque MDE a aplicaciones WEB-SOA María Consuelo Franky [email protected] Dpto. Ingeniería de Sistemas Universidad Javeriana Bogotá - 2010 http://sophia.javeriana.edu.co/~lfranky/ 1 Temario
SEARCH The National Consortium for Justice Information and Statistics. Model-driven Development of NIEM Information Exchange Package Documentation
Technical Brief April 2011 The National Consortium for Justice Information and Statistics Model-driven Development of NIEM Information Exchange Package Documentation By Andrew Owen and Scott Came Since
Domain-Specific Modelling for Cross-Platform Product Families
Domain-Specific Modelling for Cross-Platform Product Families Steven Kelly & Risto Pohjonen MetaCase Consulting, [email protected], [email protected] Abstract. Domain-specific modelling has proved its
Challenges and Opportunities for formal specifications in Service Oriented Architectures
ACSD ATPN Xi an China June 2008 Challenges and Opportunities for formal specifications in Service Oriented Architectures Gustavo Alonso Systems Group Department of Computer Science Swiss Federal Institute
Organization of DSLE part. Overview of DSLE. Model driven software engineering. Engineering. Tooling. Topics:
Organization of DSLE part Domain Specific Language Engineering Tooling Eclipse plus EMF Xtext, Xtend, Xpand, QVTo and ATL Prof.dr. Mark van den Brand GLT 2010/11 Topics: Meta-modeling Model transformations
An MDA Approach for the Development of Web applications
An MDA Approach for the Development of Web applications Santiago Meliá Beigbeder and Cristina Cachero Castro {santi,ccachero}@dlsi.ua.es Univesidad de Alicante, España Abstract. The continuous advances
Amit Sheth & Ajith Ranabahu, 2010. Presented by Mohammad Hossein Danesh
Amit Sheth & Ajith Ranabahu, 2010 Presented by Mohammad Hossein Danesh 1 Agenda Introduction to Cloud Computing Research Motivation Semantic Modeling Can Help Use of DSLs Solution Conclusion 2 3 Motivation
clooca : Web based tool for Domain Specific Modeling
clooca : Web based tool for Domain Specific Modeling Shuhei Hiya, Kenji Hisazumi, Akira Fukuda, and Tsuneo Nakanishi Kyushu University 744 Motooka Nishi-ku, Fukuoka 819-0395, Japan {hiya,nel,fukuda,[email protected]
Tool Support for Model Checking of Web application designs *
Tool Support for Model Checking of Web application designs * Marco Brambilla 1, Jordi Cabot 2 and Nathalie Moreno 3 1 Dipartimento di Elettronica e Informazione, Politecnico di Milano Piazza L. Da Vinci,
Using Model-Driven Development Tools for Object-Oriented Modeling Education
Using Model-Driven Development Tools for Object-Oriented Modeling Education Seiko Akayama 1, Kenji Hisazumi 2 Syuhei Hiya 1, and Akira Fukuda 3 1 Graduate School of Information Science and Electrical Engineering,
Overview. Stakes. Context. Model-Based Development of Safety-Critical Systems
1 2 Model-Based Development of -Critical Systems Miguel A. de Miguel 5/6,, 2006 modeling Stakes 3 Context 4 To increase the industrial competitiveness in the domain of software systems To face the growing
Applying Model-Driven Development to Reduce Programming Efforts for Small Application Development
Applying Model-Driven Development to Reduce Programming Efforts for Small Application Development Master s Thesis Maarten Schilt Applying Model-Driven Development to Reduce Programming Efforts for Small
Development of Enterprise Architecture of PPDR Organisations W. Müller, F. Reinert
Int'l Conf. Software Eng. Research and Practice SERP'15 225 Development of Enterprise Architecture of PPDR Organisations W. Müller, F. Reinert Fraunhofer Institute of Optronics, System Technologies and
Model Driven Testing of Web Applications Using Domain Specific Language
Model Driven Testing of Web Applications Using Domain Specific Language Viet-Cuong Nguyen Department of Computer Science and Engineering Faculty of Electrical Engineering Czech Technical University in
Towards Integrating Modeling and Programming Languages: The Case of UML and Java
Towards Integrating Modeling and Programming Languages: The Case of UML and Java Patrick Neubauer, Tanja Mayerhofer, and Gerti Kappel Business Informatics Group, Vienna University of Technology, Austria
Source Code Translation
Source Code Translation Everyone who writes computer software eventually faces the requirement of converting a large code base from one programming language to another. That requirement is sometimes driven
The Service Revolution software engineering without programming languages
The Service Revolution software engineering without programming languages Gustavo Alonso Institute for Pervasive Computing Department of Computer Science Swiss Federal Institute of Technology (ETH Zurich)
Information systems modelling UML and service description languages
Internet Engineering Tomasz Babczyński, Zofia Kruczkiewicz Tomasz Kubik Information systems modelling UML and service description languages Student Contact Hours: 25.02.2015- Location: 325 C3 room 25.03.2015:
Semantic-enabled Software Engineering and Development
Semantic-enabled Software Engineering and Development Bernhard Bauer, Stephan Roser Programming of Distributed Systems, University of Augsburg, 86135 Augsburg [bauer roser]@informatik.uni-augsburg.de Abstract:
A DSL-based Approach to Software Development and Deployment on Cloud
2010 24th IEEE International Conference on Advanced Information Networking and Applications A DSL-based Approach to Software Development and Deployment on Cloud Krzysztof Sledziewski 1, Behzad Bordbar
What is a metamodel: the OMG s metamodeling infrastructure
Modeling and metamodeling in Model Driven Development Warsaw, May 14-15th 2009 Gonzalo Génova [email protected] http://www.kr.inf.uc3m.es/ggenova/ Knowledge Reuse Group Universidad Carlos III de Madrid
Comparison of most adaptive meta model With newly created Quality Meta-Model using CART Algorithm
International Journal of Electronics and Computer Science Engineering 2492 Available Online at www.ijecse.org ISSN- 2277-1956 Comparison of most adaptive meta model With newly created Quality Meta-Model
Integrated Development of Distributed Real-Time Applications with Asynchronous Communication
Integrated Development of Distributed Real-Time Applications with Asynchronous Communication Marc Schanne International Workshop on Java Technologies for Real-time and Embedded Systems (JTRES) 26-28 September
Development of Tool Extensions with MOFLON
Development of Tool Extensions with MOFLON Ingo Weisemöller, Felix Klar, and Andy Schürr Fachgebiet Echtzeitsysteme Technische Universität Darmstadt D-64283 Darmstadt, Germany {weisemoeller klar schuerr}@es.tu-darmstadt.de
Model Driven Benchmark Generation for Web Services
Model Driven Benchmark Generation for Web Services Liming Zhu, Ian Gorton, Yan Liu Empirical Software Engineering Program, National ICT Australia & School of Computer Science and Engineering University
today 1,700 special programming languages used to communicate in over 700 application areas.
today 1,700 special programming languages used to communicate in over 700 application areas. Computer Software Issues, an American Mathematical Association Prospectus, July 1965, quoted in P. J. Landin
MDA Journal A BPT COLUMN. David S. Frankel. January 2004. Until February. David Frankel
MDA Journal MDA Journal January 2004 Over the past year, Microsoft has given indications that it takes model-driven approaches to software seriously. Statements emanated from the top of the company about
Implementing reusable software components for SNOMED CT diagram and expression concept representations
1028 e-health For Continuity of Care C. Lovis et al. (Eds.) 2014 European Federation for Medical Informatics and IOS Press. This article is published online with Open Access by IOS Press and distributed
A Service-oriented Architecture for Business Intelligence
A Service-oriented Architecture for Business Intelligence Liya Wu 1, Gilad Barash 1, Claudio Bartolini 2 1 HP Software 2 HP Laboratories {[email protected]} Abstract Business intelligence is a business
Ontology-Driven Software Development in the Context of the Semantic Web: An Example Scenario with Protégé/OWL
Ontology-Driven Software Development in the Context of the Semantic Web: An Example Scenario with Protégé/OWL Holger Knublauch Stanford Medical Informatics, Stanford University, CA [email protected]
Base One's Rich Client Architecture
Base One's Rich Client Architecture Base One provides a unique approach for developing Internet-enabled applications, combining both efficiency and ease of programming through its "Rich Client" architecture.
Mapping between Levels in the Metamodel Architecture
Mapping between Levels in the Metamodel Architecture José Álvarez, Andy Evans 2, Paul Sammut 2 Dpto. de Lenguajes y Ciencias de la Computación, University Málaga, Málaga, 2907, Spain [email protected]
Model Based Software Development: Issues & Challenges
N Md Jubair Basha 1, Salman Abdul Moiz 2 & Mohammed Rizwanullah 3 1&3 IT Department, Muffakham Jah College of Engineering & Technology, Hyderabad, India 2 IT Department, MVSR Engineering College, Hyderabad,
Integration of Application Business Logic and Business Rules with DSL and AOP
Integration of Application Business Logic and Business Rules with DSL and AOP Bogumiła Hnatkowska and Krzysztof Kasprzyk Wroclaw University of Technology, Wyb. Wyspianskiego 27 50-370 Wroclaw, Poland [email protected]
Modelling of Enterprise Portals with Domain- Specific Language
Master Thesis Software Engineering Thesis no: MSE-2012:98 August 2012 Modelling of Enterprise Portals with Domain- Specific Language Dominik Wasilewski School of Engineering Blekinge Institute of Technology
SOA REFERENCE ARCHITECTURE: WEB TIER
SOA REFERENCE ARCHITECTURE: WEB TIER SOA Blueprint A structured blog by Yogish Pai Web Application Tier The primary requirement for this tier is that all the business systems and solutions be accessible
CHAPTER 2 LITERATURE SURVEY
CHAPTER 2 LITERATURE SURVEY This chapter describes the survey of existing literature on multiple views. Later, it presents literature survey conducted on frameworks for tool comparison and stakeholder
Modeling Cloud Messaging with a Domain-Specific Modeling Language
Modeling Cloud Messaging with a Domain-Specific Modeling Language Gábor Kövesdán, Márk Asztalos and László Lengyel Budapest University of Technology and Economics, Budapest, Hungary {gabor.kovesdan, asztalos,
A UML 2 Profile for Business Process Modelling *
A UML 2 Profile for Business Process Modelling * Beate List and Birgit Korherr Women s Postgraduate College for Internet Technologies Institute of Software Technology and Interactive Systems Vienna University
Model-Driven Development of a Biosignal Analysis Framework: Benefits and Impacts on Processes. Nikolas Hofmann 08.11.2012
Model-Driven Development of a Biosignal Analysis Framework: Benefits and Impacts on Processes Nikolas Hofmann Introduction Biosignal analysis has versatile applications in medicine Mobile devices allow
Towards Flexible Business Process Modeling and Implementation: Combining Domain Specific Modeling Languages and Pattern-based Transformations
Towards Flexible Business Process Modeling and Implementation: Combining Domain Specific Modeling Languages and Pattern-based Transformations Steen Brahe 1 and Behzad Bordbar 2 1 Danske Bank and IT University
Use software to define silicon p. 15
April 2008 Use software to define silicon p. 15 >> Domain-specific modeling p.20 >> Efficient CRC calculation p.24 >> Linux development tools p.28 >> Verification enters the atomic age p.33 >> Advantages
PULP Scription: A DSL for Mobile HTML5 Game Applications
PULP Scription: A DSL for Mobile HTML5 Game Applications Mathias Funk and Matthias Rauterberg Department of Industrial Design, Eindhoven University of Technology, Den Dolech 2, 5600MB Eindhoven, The Netherlands
UPROM Tool: A Unified Business Process Modeling Tool for Generating Software Life Cycle Artifacts
UPROM Tool: A Unified Business Process Modeling Tool for Generating Software Life Cycle Artifacts Banu Aysolmaz 1 and Onur Demirörs 2 1, 2 Informatics Institute, Middle East Technical University, Ankara,
A Pattern-driven Generation of Security Policies for Service-oriented Architectures
A Pattern-driven Generation of Security Policies for Service-oriented Architectures Michael Menzel Hasso-Plattner-Institute Prof.-Dr.-Helmert Str. 2-3 14482 Potsdam, Germany michael.menzel @hpi.uni-potsdam.de
Eclipse BPMN Modeler Introducing Intalio Designer
Eclipse BPMN Modeler Introducing Intalio Designer Arnaud Blandin Ismael Ghalimi Hugues Malphettes Intalio Inc, EMEA Manager Intalio Inc, CEO Intalio Inc, Lead Developer 6 rue du conseil general 1205 Geneva
Embedded/Real-Time Software Development with PathMATE and IBM Rational Systems Developer
Generate Results. Real Models. Real Code. Real Fast. Embedded/Real-Time Software Development with PathMATE and IBM Rational Systems Developer Andreas Henriksson, Ericsson [email protected]
MDA Transformations Applied to Web Application Development 1
MDA Transformations Applied to Web Application Development 1 Santiago Meliá 1, Andreas Kraus 2, and Nora Koch 2, 3 1 Universidad de Alicante, Spain 2 Ludwig-Maximilians-Universität München, Germany 3 F.A.S.T
Towards Collaborative Requirements Engineering Tool for ERP product customization
Towards Collaborative Requirements Engineering Tool for ERP product customization Boban Celebic, Ruth Breu, Michael Felderer, Florian Häser Institute of Computer Science, University of Innsbruck 6020 Innsbruck,
Systems and software product line engineering with SysML, UML and the IBM Rational Rhapsody BigLever Gears Bridge.
Global distributed development White paper July 2009 Systems and software product line engineering with SysML, UML and the IBM Rational Rhapsody BigLever Gears Bridge. Integrating MDD and SPL to effectively
Model-Driven Development: A Metamodeling Foundation
Model-Driven Development: A Metamodeling Foundation Colin Atkinson University of Mannheim 68161 Mannheim, Germany [email protected] Thomas Kühne Darmstadt University of Technology 64283
Introduction to Service Oriented Architectures (SOA)
Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction
Objectives. Distributed Databases and Client/Server Architecture. Distributed Database. Data Fragmentation
Objectives Distributed Databases and Client/Server Architecture IT354 @ Peter Lo 2005 1 Understand the advantages and disadvantages of distributed databases Know the design issues involved in distributed
GenericServ, a Generic Server for Web Application Development
EurAsia-ICT 2002, Shiraz-Iran, 29-31 Oct. GenericServ, a Generic Server for Web Application Development Samar TAWBI PHD student [email protected] Bilal CHEBARO Assistant professor [email protected] Abstract
Chapter 13: Program Development and Programming Languages
Understanding Computers Today and Tomorrow 12 th Edition Chapter 13: Program Development and Programming Languages Learning Objectives Understand the differences between structured programming, object-oriented
All you need are models Anneke Kleppe, Klasse Objecten
Model Driven Architecture All you need are models Anneke Kleppe, Klasse Objecten Contents Limited Vision on MDA Modeling Maturity Levels Models Model Driven Development Model Driven Architecture MDA in
Model-Driven Architecture: Vision, Standards And Emerging Technologies
1 Model-Driven Architecture: Vision, Standards And Emerging Technologies Position Paper Submitted to ECOOP 2001 Workshop on Metamodeling and Adaptive Object Models John D. Poole Hyperion Solutions Corporation
GECO: Automatic Generator-Composition for (Aspect-oriented) DSLs
GECO: Automatic Generator-Composition for (Aspect-oriented) DSLs Doctoral Symposium - MODELS 2014 Reiner Jung Christian-Albrechts-University Kiel, Germany 30.09.2014 Domain-specific Languages Motivation
Visual Modelling: past, present and future
OMG Home Page UML Resource Page Visual Modelling: past, present and future Andrew Watson Vice-President and Technical Director Object Management Group TM The history of visual modelling in the software
Structure of Presentation. The Role of Programming in Informatics Curricula. Concepts of Informatics 2. Concepts of Informatics 1
The Role of Programming in Informatics Curricula A. J. Cowling Department of Computer Science University of Sheffield Structure of Presentation Introduction The problem, and the key concepts. Dimensions
Introduction to Generative Software Development
Introduction to Generative Software Development Krzysztof Czarnecki University of Waterloo [email protected] www.generative-programming.org Goals What is to be achieved? Basic understanding of Generative
Software Engineering: Reflections on an Evolving Discipline
70 International Journal of Information Systems and Software Engineering for Big Companies (IJISEBC) Software Engineering: Reflections on an Evolving Discipline Ingeniería de software: Reflexiones sobre
