Writing MetaModel Constraints in Java Streams


Work in groups of 2 in this assignment.  So find a long-term partner.

A fundamental tenet of future software design is the elevation of programming beyond standard languages like C, C++, C#, and Java.  In Model Driven Engineering, the Object Constraint Language (OCL) is used to define and evaluate metamodel constraints. There are other languages besides OCL.  In this course, we use Java Streams to express constraints.  Java streams exhibit a flavor similar to OCL (so you're missing nothing) and Java is easier to learn.

In this assignment, you will write metamodel constraints as MDELite Java Streams.  You will need to read a bit about Java Streams to become familar with it. 


Preface 

1. Read about Java Streams

I gave a short tutorial in class on Java Streams and provided some in-class examples for you to try.  But you still need to brush-up on your knowledge. Listed below are some tutorials that you can consult, (try #1 first).  Frankly, I don't think any of them are particularly good.
  1. https://www.tutorialspoint.com/java8/java8_streams.htm
  2. https://docs.oracle.com/javase/8/docs/api/java/util/stream/Stream.html
  3. http://www.oracle.com/technetwork/articles/java/ma14-java-se-8-streams-2177646.html

2 Install MDELite8 Software

MDELite8 is a sixth-generation of experimental tools for writing MDE applications.  Install MDELite8. (You should have done this in the previous programming assignment). Follow its installation instructions and read its (short) main document.

Violet

USE THE VERSION OF VIOLET THAT COMES WITH MDELite8 -- the version that is downloadable from the violet web site is not usable for this assignment.

Violet is a Java-based tool that allows you to draw a number of different UML diagrams, including class diagrams. You can run Violet from MDELite8 by the invocation:
> java MDL.Violet 
Like many drawing tools, Violet is not very smart.  Look at the figure below.  Violet allows you to customize relationships between pairs of classes by drawing lines between boxes.  Once a line is drawn, you can say 'put a diamond at this end of the line', 'put an inheritance arrow at this other end', and so on, yielding a diagram that is UML-like, but nonsensical.  The figure below has several errors:  (1) inheritance links never have diamonds on them, (2) inheritance links don't have labels, and (3) inheritance links between classes are never dashed and always solid. 

Violet allows you to draw any nonsensical set of beautiful boxes and links, and to output them as an XML documents with a .violet extension.  If you click on the figure above, you will see the XML file that is produced.  I ask you -- who in God's name can read XML?? Continuing, you will also see that Violet is not very good at defining methods and variables -- it only provides a big fat text string in which you can scribble almost anything.  If you click on the figure below, you will see the MDELite Schema for Violet class diagrams and the tuples that define the above class diagram.  Notice that the content of the XML file is minimal in database form.



MetaModel Constraints

In the first part of this assignment, you will write MDELite8 Java Stream expressions to evaluate vpl database constraints. Fortunately, a violet-to-database translator has been written for you.  It is available in the MDELite8 toolset and can be invoked by:

> java Violett.ClassParser X.class.violet X.vpl.pl

and yes, Violett with 2 t's is correct (ask me why in class), where X is the name that you gave to the violet file (its full name is X.class.violet).  Violett.ClassParser is hardcoded to output tuples that conform to the vpl schema (vpl.schema.pl).

Note: what this means is that if the schema is changed, then VioletClassParser must be manually changed.  There is no reason for you to change vpl.schema.pl or Violett.ClassParser in this assignment.  Ever.

The naming scheme is important: "X.vpl.pl" -- X is as before, vpl is the name of database schema, and "pl" simply designates a fact file.  To test conformance, you will write the following Java program:

> java VPL.Conform X.vpl.pl 

which evaluates the database constraints that you apply to validate all vpl databases.   The way you get started is:

So again, you will (a) translate each of your .class.violet files to a vpl database using a provided MDELite tool and (b) write a set of English constraints for vpl databases, (c) translate these constraints into Java Stream expressions (this is your VPL.Conform program), and (d) check whether the .violet diagram conforms to your metamodel constraints. The next two sections provide background that you need to understand before you can do anything.

VPL Schemas and Databases

Before continuing, you should understand the set of tables that are generated.  The vpl schema consists of 2 tables, namely vBox and vAssociation.  In class, I explained the basic syntax of database schemas and their tuples. Here's the schema:

% vpl class database

dbase(vpl,[vBox,vAssociation]).

% type = c(class),i(nterface),n(ote). packages are skipped
table(vBox,[id,type,"name","fields","methods",x,y]).

% type1,type2 = c(lass) or i(nterface
% lineStyle = ""(solid) or "DOTTED"
% arrow1,2 = V, TRIANGLE, DIAMOND, BLACK_DIAMOND
% bentStyle = "", HV, VH, HVH, VHV
table(vAssociation,[id,cid1,type1,"role1","arrow1",cid2,type2,"role2","arrow2","bentStyle","lineStyle","middleLabel"]).

Here's what the above means:  


Your Java program, VPL.Conform, evaluates metamodel constraints using Java Streams that will check the correctness of .violet models of class diagrams.  There are all sorts of constraints that you could write on checking the validity of fields and methods. But because Violet simply mashes field and method declarations into a big fat text string, this makes it almost impossible to do fancy checking.  So to keep things simple -- and you should thank me for this --  do NOT write checks about method and field declarations!  Limit yourself to checking the following constraints:
Please check MDELite html documentation for constraints.  It is all that you should need.

In the process of developing VPL.Conform, do the following:
> java MDL.Violet create class diagram X.class.violet
> java Violett.ClassParser X.class.violet X.vpl.pl transform X.class.violet to X.vpl.pl
> java VPL.Conform X.vpl.pl see if X.vpl.pl conforms to constraints

The following zip file contains a set of 8 Violet designs that you are to validate.  For each file, present the list of error messages (if any) that your tool produces.  I presume that you will test your work on other Violet designs.  You should include them in your documentation too.

Start with this "shell" of a NetBeans Project

What to Submit to Canvas

Place all of the below in a zip file (including your Netbeans or Eclipse Project). The zip file must unzip into <yourName>/<YourFilesAndDirectories>Submit one zip file if you are working in a group.
  1. Your program needs to run correctly on Linux machines, even though you may have developed them on Macs and Windoze.  The TA will grade your program running on Linux.
  2. Your Java vplConform source.

  3. An easy to read english description of your program -- document anything that you have added beyond what was given in the shell.

  4. For each Violet example, the output of your conformance test and maybe the violet diagram for that example.

  5. A PDF file that the Grader should read to provide any information that is not obvious.  The contents of the PDF file can be minimal.

You should expect other violet files, of the Grader's choosing, will be used to evaluate your rules/constraints.