1 / 36

Introduction to Model-Driven Software Development

This introduction provides an overview of Model-Driven Software Development (MDSD) and its benefits. It explains the concepts of domain-driven development and how it can make software development more efficient and domain-related. The text also explores the hierarchical structuring of domains and core concepts of MDSD.

reneej
Download Presentation

Introduction to Model-Driven Software Development

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Model-DrivenSoftware Development Introduction and Overview Markus Völtervoelter@acm.orgwww.voelter.de www.mdsd-buch.de www.mdsd-book.org

  2. Domain Driven Development • Domain Driven Development is about making software development more domain-related as opposed to computing related. It is also about making software development in a certain domain more efficient.

  3. How MDSD works • Developer develops model(s)based on certain metamodel(s), expressed using a DSL. • Using code generation templates, the model is transformed to executable code. • Alternative: Interpretation • Optionally, the generated code is merged with manually written code. • One or more model-to-model transformation steps may precede code generation.

  4. Reasons for DDD • Software Development is too complex andtoo expensive (now, this is a really new finding ) …… because: • There is too little reuse • Technology changes faster than developers can learn • Knowledge and practices are hardlycaptured explicitly and made available for reuse • Domain experts cannot understand all the technology stuff involved in software development • DDD aims at attacking some of these problems.We shall see how on the following slides.

  5. What is a „Domain“ • A definition could be:A domain is a bounded area of knowledge or interest. • Examples (from the world of Software) include: • eBanking • Embedded Software • Web-Based eBusiness Applications • Control Software for 4-Cylinder Diesel Engines • Astronomical Image Processing Software • Domains can have varios „scopes“ as well as various „flavours“ – see next slides.

  6. Hierarchical Structuring of Domains • Since Domains can be of any size or granularity, it is useful to structure domains hierarchically. • Automotive Example: • eBanking Example:

  7. „Kinds“ of Domains • In the context of software development it is also useful to distinguish (at least) two kinds of domains: • Technical Domains adress key technical issues related to software development such as • Distribution, Failover and Load-Balancin • Persistence and Transactions • GUI Design • Concurreny and Realtime • Functional Domains represent the business/professional issues; examples include • Banking • Human resource management • Insurance • Engine Controllers • Astronomical Telescope Control

  8. MDSD Core Concepts several Metametamodel target subdomains software software designexpertise architecture architecture bounded area of partial knowlege/interest composable multiple knowledge viewpoint multi-step transform Domain single-step compile semantics Model Ontology interpret no precise/ Domain roundtrip executable Specific Language graphical Metamodel textual

  9. Example 1: Model and Metamodel interface Sensor { operation start():void; operation stop():void; operation measure():float; } interface Controller { operation reportProblem(Sensor s, String errorDesc ):void; }

  10. Example 2: Model (J2ME apps)

  11. Example 2: Metamodel (J2ME apps)

  12. Example 3: Model (Components, Ports, Connectors) <system name=”weatherStation”> <node name=”main”> <container name=”main”> <instance name=”controller” type=”Control”/> </container> </node> <node name=”inside”> <container name=”sensorInside”> <instance name=”tempInside” type=”TemperatureSensor”>´ <param name=”unit” value=”centigrade”/> </instance> </container> </node> <node name=”outside”>…</node> <!-- temperature sensor outside --> <connector name="toSensorTempOutside"> <providedPort instance="tempOutside" port="measurementPort"> <requiredPort instance="controller" port="sensorsPort"> </connector> <connector name="fromSensorTempOutside"> <providedPort instance="controller" port="controllerPort"> <requiredPort instance="tempOutside" port="controllerPort> </connector> <!-- humidity sensor outside --> <connector name="toSensorHumOutside">…</connector> <connector name="fromSensorHumOutside">…</connector> <!-- temperature sensor inside --> <connector name="toSensorTempInside">…</connector> <connector name="fromSensorTempInside">…</connector> </system>

  13. Example 3: Metamodel (Components, Ports, Connectors)

  14. Example 4: Workflow Model (UML + Stereotypes)

  15. Example 4: Workflow Model II (UML + Stereotypes)

  16. Example 5: Power Grid

  17. Example 5: Power Grid Metamodel

  18. MDSD Core Values • We prefer to validate software-under-construction over validating software requirements • We work with domain-specific assets, which can be anything from models, components, frameworks, generators, to languages and techniques. • We strive to automate software construction from domain models; therefore we consciously distinguish between building software factories and building software applications • We support the emergence of supply chains for software development, which implies domain-specific specialization and enables mass customization

  19. MDSD Core Building Blocks • domain analysis • meta modelling • model-driven generation (and: model transformation) • template languages • domain-driven framework design • the principles for agile software development • the development and use of Open Source infrastructure

  20. MDSD and Requirements/Analysis • An often-asked question is: are MDSD models the same as requirements/analysis models? • They can be, but in general, theyare not. • Analyis/requirements modelsare non-computational, MDSD models are compuatational.  somewhere the „intellectual work of development and problem solving“ has to be put into the system. Usually, this is on the stage from requirements/analysis to (computational) MDSD models. • How can MDSD help with requirements? • Formalizing Requirements using a DSL is benefitial because requirements become unambigious. Adapted from Frankel‘s book on MDA

  21. MDA and Model Driven Software Development Overview • Focus: Platform Independence, (Tool) Interop MOF several target software software Metametamodel architecture architecture subdomains designexpertise Application bounded area of partial knowlege/interest composable PIM, PSM, .... QVT multiple viewpoint multi-step transform Domain single-step compile semantics Model Ontology interpret no precise/ Domain roundtrip executable Specific OCL, Action Semantics Language UML+Profiles graphical Metamodel textual

  22. Other related approaches • Microsoft’s Software Factories:Focus on Reuse, Efficient Development, DSLs • Domain-Specific (Visual) Modelling:Focus on (Visual) DSLs • Generative Programming:Focus on Efficiency, “Automatic Manufactoring”, Software System Families • Language-Oriented Programming:Focus on DSLs instead of Frameworks, incl. Editor/Debugger Support  all basically the same 

  23. MDSD and Agility • Agile Manifesto:We are uncovering better ways of developing software by doing it and helping others do it. Through this work we have come to value: - Individuals and interactions over processes and tools - Working software over comprehensive documentation - Customer collaboration over contract negotiation - Responding to change over following a plan That is, while there is value in the items on the right, we value the items on the left more. • MDSD-Models are no „paperwork“, they are the code which is translated to code automatically • Agility does not oppose tools in general – compilers are ok, model transformers are a kind of compiler

  24. MDSD and Agility II • Project automation (ant, cruisecontrol) is ok in „agile minds“, so is automation of the writing of repetitive code • Automation of the development process makes responding to change easier and faster (single source principle). • Changes in the model respond to changes in the functional requirements • Changes in the templates/transformations can be used to evolve the architecture • The customer on-site can be integrated better, if we have languages that are better related to domain concepts as opposed to 3GL code or the like. • Pair programming between developer and domain expert is more realistic.

  25. MDSD and Agility III • Tests can still be written manually (even before generation), generators can help is building mocks or scenarios • We do not recommend a waterfall that first builds generators and then builds apps, rather, both are iteratively evolved in parallel. • Domains Architectures are based on experience, not based on „big design upfront“ • Developers can do what they can do best: • Some deal with applications and customer requirements, • Others deal with technical architecture, platforms and generators • So: There is no problem with Agility and MDSD!

  26. Reasons for using MDSD • You want to provide a way for your domain-experts to formally specify their knowledge, and to provide a way for your technology people to define how this is implemented (using model transformations). • You might want to provide different implementations (i.e. more concrete models) for the same model, perhaps because you want to run it on different platforms (.NET, Java, CORBA). • You may want to capture knowledge about the domain, the technology, and their mapping in a clear, uncluttered format. • In general, you don’t want to bother with implementation details when specifying your functionality. • MDSD results in a fan-out, i.e. one set of models can be the source for transformations to several targets. • Another reason for using MDSD: You are working in the context of product lines and software system families and need to develop domain-specific assets.

  27. MDSD Benefits I • Models are free of implementation artifacts – they directly represent domain knowledge and are thus reusable. • Implementations for various platforms can be generated in principle – the technology change problem is adressed to some extend. • Technology freaks and domain experts can take care of „their business“ (transformations and models, respectively) and need to care of each other‘s problems only in a limited way. • Domain experts can play a direct role in development since they can more easily understand models expressed with a DSL as opposed to implementation code. Domain Experts play the central role they deserve!

  28. MDSD Benefits II • Development becomes more efficient since repetitive implementation code can be generated automatically. • Architectural contraints/rules/patterns can more easily be enforced, since the they are embedded in the templates rather than just being documented (and ignored).This is especially important in really large teams, often in the context of Product-Line Engineering and Software System Families. • Transformer/Generator can address cross-cutting concerns (just like an aspect weaver)

  29. MDSD Predjudices • MDSD does not require UML – any kind of modelling language is ok, graphical or textual • Precise and complete models… • … are not the the same as „visualized code“ – the abstraction level is higher • … are not the same as analysis models – analysis models are not computational • MDSD does not require – not even recommend – a waterfall. Development of the generative infrastructure is iterative and incremental. • You do not need big and expensive tools – a lot of small and useful open source tools are available. • You don‘t need to generate 100% of the code – it is ok, to also code some aspects in a 3GL.

  30. Benefits for Software Quality • MDSD requires an explicit, well-defined architecture. Defining an architecture this way improves the quality of the system (indpendent of whether it is generated or not). • Transformations capture expert knowledge. The generated code reflects this expert knowledge uniformly. • An Domain Archtitecture defines a strict programming model for the manually developed parts – again, uniformity and constrained-ness improves quality. • Generator does not produce accidental errors – either things are always right or always wrong. This makes finding errors easier! • Models can serve as an up-to-date and always current documentation.

  31. Benefits for Software Quality II • In general, MDSD forces you to take care of many good things, which you‘d like to have in any application development project: • Domain/Application Scoping • Variability Management • Well-Defined Software Architecture, Architecture Metamodelling • Trying to build a generator for a domain/target architecture enables your understanding of the domain/target architecture. This in itself is a huge benefit.

  32. No Free Lunch - Challenges • You need additional skills in your team (domain analysis , metamodelling, generator development, architecture) You need a couple of good people who usually aren‘t easy to get, and who aren‘t cheap. • Your development process needs to reflect the two-track nature of MDSD (domain architecture development, application development) • Sometimes tools require some „creative use“ and improvisation ( use open source!) • Remember: a fool with a tool is still a fool generator

  33. MDSD (compared to “normal” Software Development)

  34. MDSD Effort (stage 1)

  35. MDSD Effort (stage 2)

  36. Some advertisement  Update currently in progress, with Arno Haase and Sven Efftinge as additional coauthors • For those, who speak(or rather, read) german: Völter, Stahl: Modellgetriebene SoftwareentwicklungTechnik, Engineering, ManagementdPunkt, 2005www.mdsd-buch.de • A very muchupdated translation isunder way:Model-Driven Software Development, Wiley, Q2 2006www.mdsd-book.org

More Related