1 / 17

Concern Management for Constructing Model Compilers -- Towards effective MDA

MACS 2005 First International Workshop on the Modeling and Analysis of Concerns in Software. Concern Management for Constructing Model Compilers -- Towards effective MDA. Naoyasu Ubayashi (Kyushu Institute of Technology) Tetsuo Tamai (University of Tokyo)

azuka
Download Presentation

Concern Management for Constructing Model Compilers -- Towards effective MDA

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. MACS 2005First International Workshop on theModeling and Analysis of Concerns in Software Concern Management for Constructing Model Compilers-- Towards effective MDA Naoyasu Ubayashi (Kyushu Institute of Technology) Tetsuo Tamai (University of Tokyo) Shinji Sano, Yusaku Maeno, Satoshi Murakami (Kyushu Institute of Technology) 16 May 2005

  2. Overview • MDA and model compiler • Motivation • AspectM : Aspect-oriented modeling language • Constructing a model compiler using AspectM • Discussion • Related work • Conclusion

  3. 1. MDA and model compiler MDA and model compiler OOSD MDA CIM Analysis PIM Design model compiler PSM We can regard PIMs as new kinds of reusable software components because they can be reused even if a platform is changed. Coding Source code MDA: Model-Driven Architecture PIM: Platform Independent Model CIM: Computation Independent Model PSM: Platform Specific Model

  4. 1. MDA and model compiler Example of Model Transformation Platform: Struts Step1: merge PIMs 1) merge PIM classes Step 2: transform the merged class to an action form bean class platform concerns crosscut over model elements 2) change the name of merged class 3) inherit ActionForm 4) add setter/getter PSM PIM Step 3: create an action class 5) create an action class 6) inherit Action 7) add execute method 8) add a method body

  5. 2. Motivation Motivation-- for constructing an effective model compiler Multiple concerns • We need to take account of not only platform concerns but also other kinds of model transformation concerns including optimization, real-time constraints, and deployment. • It is necessary to allow a modeler to customize transformation rules because model modifications for dealing with these concerns may be specific to an application. Extensibility

  6. 2. Motivation Our Approach • We propose a method for constructing an extensible model compiler based on aspect-orientation. • Aspect-orientation is useful for platform descriptions because they crosscut over many model elements. • A modeler can extend model transformation rules by defining new aspects in the process of modeling. Aspect Aspect UML model UML model weave UML model UML model PIM PSM Extensible model compiler

  7. 3. AspectM Aspect-orientationat the modeling-level (example) join point (class) pointcut advice classA classA || classB (extract join point whose name is classA or classB) add new attributes add new operations attributes new attributes classA attributes operations new operations operations classB classB attributes join point (class) attributes new attributes operations operations new operations classC join point (class) attributes operations Extension of JPMs (Join Point Models) in AOP

  8. 3. AspectM JPMs for model transformations 1)merge PIM classes CM 2) change the name ofmerged class RN 3) inherit ActionForm RL 4) add setter/getter OC 5) create an action class NE 6) inherit Action RL 7) add execute method OC 8) add a method body PA PA(pointcut & advice),CM(composition),NE(new element),OC(open class),RN(rename),RL(relation)

  9. 3. AspectM JPMs for dealing with multiple model transformation concerns

  10. 3. AspectM AspectM • AspectM is an aspect-oriented modeling language that supports six kinds of JPMs. • In AspectM, an aspect can be described in either a diagram or an XML format. • AspectM provides the two kinds of aspects: ordinary aspect and component aspect. A component aspect is a special aspect for composing aspects. • An aspect can have parameters for supporting generic facilities. By filling parameters, an aspect for a specific purpose is generated.

  11. 3. AspectM Example of AspectM descriptions aspect << CM >> mergeClasses Step1: merge PIMs inputClasses : class { pointcut-body=“cname(Message) || cname(MessageProfile)” } Step 2: transform the merged class to an action form bean class merge [inputClasses] : merge-by-name { advice-body=“PostMessage” } Step 3: create an action class <aspect name=“mergeClasses” type=“ordinary” jpm=“CM" > <pointcut name=“inputClasses” type=“class”> <pointcut-body> cname(Message) || cname(MessageProfile) </pointcut-body> </pointcut> <advice name=“merge” type=“merge-by-name” ref-pointcut=“inputClasses”> <ref-pointcut> message-classes </ref-pointcut> <advice-body> PostMessage </advice-body> </advice> </aspect>

  12. 4. Constructing a model compiler Implementation of model compiler Aspect diagram (XML) Model Compiler XSLT style sheet for converting aspect (XML) to XSLT style sheet XSLT processor The first transformation phase XSLT style sheet for converting UML (XML) to UML (XML) The second transformation phase XSLT processor UML diagram (XML) UML diagram (XML)

  13. 4. Constructing a model compiler Dealing with multiple concerns <aspect name=“mergeClasses” type=“ordinary” jpm=“CM" > <pointcut name=“inputClasses” type=“class”> <pointcut-body> cname(Message) || cname(MessageProfile) </pointcut-body> </pointcut> <advice name=“merge” type=“merge-by-name” ref-pointcut=“inputClasses”> <ref-pointcut> message-classes </ref-pointcut> <advice-body> PostMessage </advice-body> </advice> </aspect> concern for merging models <aspect name=“deleteAttribute“ type="ordinary" jpm="OC"> <pointcut name="postMessageClass" type="class"> <pointcut-body>cname(PostMessage)</pointcut-body> </pointcut> <advice name="deleteDate" adviceType="delete-attribute“ ref-pointcut="postMessageClass"> <advice-body>date</advice-body> </advice> </aspect> concern for optimizing memory usage <aspect name="loggingSetter" type="ordinary" jpm="PA"> <pointcut name="allSetter" type="method"> <pointcut-body>oname(set*)</pointcut-body> </pointcut> <advice name="logSetter" adviceType="before“ ref-pointcut="allSetter"> <advice-body>Log.write()</advice-body> </advice> </aspect> concern for logging A modeler can extend model transformation rules by defining new aspects in the process of modeling.

  14. 4. Constructing a model compiler Towards product-line engineering defined by modelers Aspect library for other platforms Product X : Application-specific aspects Aspect library for .NET weave Aspect library for J2EE UML diagrams Aspect library for other product-lines Product Y : Application-specific aspects weave Aspect library for product-line B UML diagrams Aspect library for product-line A Aspects are useful for product-line engineering in which a variety of PSMs are generated from a single set of PIMs.

  15. 5. Discussion Discussion-- Aspect-orientation vs. meta programming • Someone might claim that AspectM is not an aspect-oriented language but a meta language for model transformations. • AspectM can describe not only model transformation concerns but also ordinary crosscutting concerns such as logging. • AspectM unifies (lightweight) meta-programming with ordinary aspect-orientation by extending the idea of JPMs. lightweight meta-programming aspect-orientation JPMs

  16. 6. Related work Related work Aspect-oriented domain modeling (AODM) [J.Gray et. al. 2003] AODM introduced a language called ECL that provides facilities for adding model elements such as attributes and relations. Persistence as an Aspect [A.Rashid and R.Chitchyan 2003] Aspect-oriented mechanisms (+ reflection) for describing database concerns are proposed. QVT [OMG] QVT (Queries, Views, and Transformations) is a model transformation language. Draco [J. Neighbors 1984] In Draco, software development processes were considered as a series of transformations.

  17. 7. Conclusion Conclusion • We proposed a method for constructing an extensible model compiler that can deal with multiple model transformation concerns. • A modeler can extend model transformation rules by defining new aspects in the process of modeling.

More Related