Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a MDSD/MDA success story for a real world application? [closed]

I am currently facing a situation where I as an advocate of test driven development have to compete with an advocate of model driven software development (MDSD) / model driven architecture (MDA).

In my opinion, code generation is a valuable tool in my toolbox and I make heavy use of templates and automation when needed. I also create diagrams in UML when I think this helps to understand the inner working or to discuss architecture on the white board. However, I strongly doubt that creating software via UML (creating statecharts and sequence diagrams to create working code not only skeletons of code) is more efficient for multi tier applications (database layer, business/domain layer and a Gui, maybe even distributed). It seems to me when it comes to MDSD, the CASE tooling suddenly isn't just a tool anymore but it is the thing to satisfy: As I see it, on the one hand, MDSDevelopers profit from the higher abstraction UML gives them but at the same time they are struggling with modifing the codegenerator/template/engine to fullfill their needs which might be easily implemented (and tested) if used another tool out of their toolbox (VisualStudio, Eclipse,...).

All this makes me wonder if there has been a success story (suceess being that the product was rolled out in time, within the budged and with only few bugs and parts of the software have been reused later on) for a real world application which fullfills this creteria and has been developed using a strict model driven approach:

  • it has nothing to do with the the Object Management Group (OMG) or with consultants related to MDSD/MDA/SOA/
  • the application is not related to Business Process Modelling and is not a CASE tool itself
  • the application is actively used by end user
  • it has at least three tiers, including a user interface which goes beyond displaying raw table values and is not one of the common MDA/MDSD examples ("how to model a coffee machine, traffic light, dishwasher").
like image 964
tobsen Avatar asked Jun 22 '10 20:06

tobsen


4 Answers

A tiny, but nevertheless useful testimonial on the use of MDSD has been posted on the Model Driven Software Network:

http://www.modeldrivensoftware.net/profiles/blogs/viva-mdd-follow-up-building-a?xg_source=activity

It is a relatively small app being developed, but still a good example of MDSD in action.

More success stories are listed at Metacase's site (http://www.metacase.com/cases/index.html). Metacase sells MetaEdit+, which implements DSM (Domain-Specific Modeling). DSM is just a form of MDSD.

I am also developing ABSE (Atom-Based Software Engineering), another form of MDSD, very close to DSM. ABSE is outlined at http://www.abse.info.

like image 168
Rui Curado Avatar answered Oct 21 '22 04:10

Rui Curado


I used MDA and code generation on an embedded system project using 4 processors connected via CAN. We had over 20 axes of motion and many, many sensors. The system was highly robust and maintainable as the mechanical components were evaluated and modified.

We worked in the models and generated code so the models were always up-to-date. We did a careful domain analysis to achieve subject matter isolation. The motor control required very high performance and so was not modeled or generated. Our network drivers were also hand-coded, and we wrote interfaces that allowed bridge services to send events to any service anywhere in the system as needed (although this was tightly controlled so as to minimize interprocessor dependencies).

Using the method took a bit of discipline, but having working models was great because they can be reviewed by non-software types.

Version control and differencing of the models was a bit of a challenge but we had a small, localized team so we were able to avoid merge issues.

The good people at Pathfinder Solutions (our tool vendor) can help mentor you through the project.

like image 32
Bruce Avatar answered Oct 21 '22 05:10

Bruce


You could also take a look at the slides from previous Code Generation conferences. Several of these talks were from successful case studies e.g. http://www.codegeneration.net/cg2009/slides.php

like image 2
Mark Dalgarno Avatar answered Oct 21 '22 06:10

Mark Dalgarno


I am working on one of the project for legacy modernization and its using MDA tool named Bluage. Its for a big healthcare organization and its in production so i could say that its successful. MDA is better in case of legacy modernization as it can generate KDM model from some technologies like pacbase which are going to be out of support.

like image 1
Rohan Avatar answered Oct 21 '22 04:10

Rohan