Stéphane Leblanc Version 0 (2012-04-30)



Download 177.38 Kb.
Page1/6
Date06.08.2017
Size177.38 Kb.
#28011
  1   2   3   4   5   6




AoUrnToRam

Developer's Guide




Author

Stéphane Leblanc

Version 1.0.0 (2012-04-30)

Table of Contents


Setting Up the AoUrnToRam Development Environment 3

Setup Eclipse 3

Check Out the Source Files 3

Launch AoUrnToRam 3

Who is This Guide For? 4

Transformations Overview 4

Source Code Organization 5

Tests 7


Unit Testing 8

Test Class 9

Test Method 9

Integration Testing 11

Exploratory Testing 12

Kermeta IDE 13

Design Decisions 15

Namespace Alias vs. Class Name Prefix 15

Aspect vs. Visitor 15

Build/Link Pattern from Model-to-Model Transformation 16

Pretty Printer Pattern for Model-to-Text Transformation 21

Validation 21

Linking Steps 22

Merging Steps 23

Plug-in from the Same Concern 24

Plug-in from Different Concerns 25

Code Generation 27

Update Ref 27

Gen TestRunner 28

Generate Jucm_OneFileWorkaround.ecore 28

Interfacing with the RAM Tool 29

Releasing a New Version of AoUrnToRam 30

AoURN Metamodel - High Level View 31

AoURN Metamodel - UCM Map Level View 33

Intermediate Workflow Metamodel - Global View 34

Intermediate Workflow Metamodel - Stub View 35



RAM Metamodel 37


Setting Up the AoUrnToRam Development Environment

Setup Eclipse


  1. Download the Eclipse Modeling Tools
    Note: Use the 64-bit version if your CPU/OS supports it.
    Latest tested version: 3.7 Indigo
    http://www.eclipse.org/downloads/packages/eclipse-modeling-tools/indigosr2

  2. Install "Kermeta IDE/Kermeta compiler" from the Eclipse update site
    Latest tested version: Kermeta compiler 1.4.0
    http://www.kermeta.org/update

  3. For performance reasons, Kermeta requires more memory than standard eclipse applications
    In order to increase the heap size, set -Xmx3000M in $EclipseDir$\eclipse.ini.
    On 32-bit CPU/OS, the maximum value is -Xmx1200M
    For details, see this post.

  4. Install "Web Tools Platform (WTP)" from the Eclipse update site
    (Required to compile jUcmNav)
    Latest tested version: 3.3.2
    http://download.eclipse.org/webtools/repository/indigo/

  5. (Optional) Install the RAM Tool
    Contact the RAM Tool development team to obtain the RAM Tool.

Check Out the Source Files


  1. Checkout svn://cserg0.site.uottawa.ca/projetseg/trunk

  2. Import aoUrnToRam, codeGen, ReactiveWorkflow, seg.jUCMNav, seg.jUCMNav.aoUrnToRamPlugin
    File - Import - General - Existing Project into Workspace

  3. Import the launch configurations
    Import - Run/Debug - Launch Configurations and then select the aoUrnToRamWorkspace/toImport folder

  4. Open the Kermeta perspective in order to get the Kermeta menu
    Window - Open Perspective- Others

Launch AoUrnToRam


Use the run button (Play sign down arrow - Run configuration) to launch:

  • jUcmNav
    Eclipse Application - jUcmNav
    Right click on the UCM - Export - Export whole URN file - File type: Ram Reactive Workflows

  • Launch all integration tests
    (Does not depend on jUCMNav)
    Kermeta Constraint Application - Integration

  • Launch all unit tests
    (Does not depend on jUCMNav)
    Kermeta Constraint Application - TDD All

  • See Table for other launch configurations

Who is This Guide For?


This guide is intended for developers who want to maintain and extend the AoUrnToRam transformation. The guide assumes that the reader has previously read AoUrnToRam from the Outside In to have an overall understanding of the Aspect-oriented User Requirement Notation (AoURN), the Reusable Aspect Models (RAM) and how an AoURN model can be transformed into RAM models. The guide also assumes that the reader is familiar with object-oriented programming, but it does not require you to have any knowledge of Kermeta. However, if you are not familiar with aspect-oriented programming, you should read section 1.5 and section 2.20 of the Kermeta manual before you start reading this guide. Finally, if you are new to Kermeta, having a look at the Kermeta manual before you start coding would be a good idea.

Transformations Overview


Although users perceive AoUrnToRam as one transformation, AoUrnToRam is really a composition of many transformations. Figure provides an overview of how these transformations collaborate to transform Aspect-oriented Requirements into Design Models. Note that iwToIwInsertInputProcessingNodes has to be executed before iwToIwLinkSteps. The other transformations can be executed in any order.

c:\users\s\files\h2012\project\devguide\transformationsoverview.bmpFigure . Transformation Overview


Source Code Organization




Figure . Workspace Organization



Figure . Kermeta Code Organization

The main project in the aoUrnToRamWorkspace is aoUrnToRam. It is possible to invoke Java code from Kermeta code in order to overcome the limitations of the Kermeta language. The src folder contains this Java code. The Kermeta code of aoUrnToRam depends on this Java code; therefore, it is required to add the aoUrnToRam project to the runtime Java Classpath when creating a new launch configuration (see Figure . Runtime ClasspathFigure ). Moreover, any exceptions thrown from the java code is logged into aoUrnToRamWorkspace\aoUrnToRam.javaExternalCall.log.

The img folder contains all the images used by GraphViz to generate the step views. The kermeta folder contains the source files that define the transformations. The kermeta folder will be expanded and explained in details later in this section. The AoURN metamodel, the Intermediate Workflow metamodel and the RAM metamodel are in the metamodel folder. The RAM models on which depend the step class diagrams yielded by the AoUrnToRam transformation are in the ramLib folder. The GraphViz executable is in the thirdparty folder.

The codeGen project contains the Java source files of the code generator created to support the development of AoUrnToRam.

The ReactiveWorkflow project contains fake classes that can be used as substitute for the Reactive Workflow Framework, which does not exist yet. This allows for compiling and executing the Java code yielded by the AoUrnToRam transformation (for more details, see the Integration Testing Section).

The project seg.jUCMNav contains the source of jUCMNav. JUCMNav is the editor for AoURN models. The project seg.jUCMNav.aoUrnToRamPlugin is a jUCMNav plugin that allows for launching the AoUrnToRam transformation from jUCMNav.

As shown in Figure , each transformation of Figure has its own folder. The aoUrnToRam transformation is the main entry point from where all the other transformation are invoked. Each transformation has its corresponding *.test folder that contains the related tests. The input files for the integration tests are in aoUrnToRam.test\jucm.

The folder iw contains the code shared by all the transformations having an Intermediate Workflow model as source and the folder iw.testUtil contains the code shared by all the unit tests related to a transformation having an Intermediate Workflow model as source. The folder testUtil contains the code shared by all tests. The folder textView contains the code shared by all M2T transformations (Model to Text). Finally, the folder util contains extensions to the Kermeta framework shared by all the transformations.


Figure . Runtime Classpath




Download 177.38 Kb.

Share with your friends:
  1   2   3   4   5   6




The database is protected by copyright ©ininet.org 2024
send message

    Main page