blob: c45b5f70cffe7c1dc9f3af20e7cfa2a2a3602196 [file] [log] [blame]
h2(#Integration). OCL Integration
The "OCLinEcore Editor":#OCLinEcore editor enables OCL to be embedded in Ecore. This section explains how that OCL is executed.
The "Complete OCL":#CompleteOCL editor enables OCL to be provided as a complementing document. This section explains how that complement is installed to become part of the complemented model.
The "Interactive OCL":#InteractiveOCL console allows you to load OCL and execute OCL expression interactively.
The "Java API":#ProgrammersGuide explains how you can take control of the OCL installation and activation.
h3(#Integration-OCLinEcore). OCL execution in Ecore / EMF Delegates
The EMF delegate mechanisms and EAnnotations that enable EMF to delegate to OCL to support
* validation of invariants
* execution of operation bodies
* evaluation of property initial and derived values
are described in the "Delegates":#Delegates section of the Programmers Guide.
h3(#Integration-Messages). Custom Validation Messages
Eclipse OCL supports the production of custom messages by defining a String-valued message expression as a parenthesized clause on an invariant.
h4. Underlying support
An OCL invariant is an expression that returns a true or false value.
In Juno and Kepler, Eclipse OCL supported an extension whereby a null return indicated an 'error' rather than a 'warning', and an invalid return was 'fatal'.
Luna supports a rich-invariant idiom whereby an invariant can compute a tuple of results, only one of which is actually returned by tooling that does not understand the idiom. Rather than
bc..
invariant InvariantName:
boolean-valued-invariant-expression;
p.
You can code additional information by recoding
ocl-status-expression
as
bc..
invariant InvariantName:
Tuple{
status=boolean-valued-invariant-expression,
message=string-valued-message-expression,
severity=integer-valued-severity-expression, -- -ve error,0 ok,+ve warn
... -- more custom fields as desired
}.status;
p.
The idiom is a little verbose, but compatible with all OCL tooling. Eclipse OCL provides some editor enhancements to make the usage more acceptable.
h4. Editor syntax
In the OCLinEcoreTutorial Example there is an alternative syntax for custom messages.
bc..
invariant SufficientCopies:
library.loans->select((book = self))->size() <= copies;
p.
may be changed to
bc..
invariant SufficientCopies('There are '
+ library.loans->select((book = self))->size().toString()
+ ' loans for the ' + copies.toString() + ' copies of \'' + name + '\''):
library.loans->select((book = self))->size() <= copies;
p.
to replace the default diagnostic:
bc..
The 'SufficientCopies' constraint is violated on 'Book b2'.
p.
by
bc..
There are 3 loans for the 2 copies of 'b2'.
p.
Unfortunately, in the Luna release, EMF does not support this customization. This must be activated explicitly using an EValidator that is aware of the ValidationDelegateExtension extended API. This is available by using the "OCLinEcoreEObjectValidator":#OCLinEcoreEObjectValidator.
h3(#Integration-CompleteOCL). CompleteOCL Validation
Integration of Complete OCL documents is harder because Complete OCL complements pre-existing models. These cannot always be aware of the existence of that complement, since the author of a model cannot know what complements may be added by its users.
The complete model formed from the primary models and the OCL complements is application-specific and so applications must gather the contributions together. Prior to the Indigo release, this restricted Complete OCL usage to Java applications that could gather the complements.
The "CompleteOCLEObjectValidator":#CompleteOCLEObjectValidator may be used to install a Complete OCL document.
In many editors an *OCL->Load Document* is available in the context menu to facilitate loading a complementary Complete OCL document.
!{width:70%}images/1600-load-document.png(LoadDocument)!
You may drag and drop one or more files from within Eclipse or outside Eclipse into the dialog, or use one of the browser buttons to locate a Complete OCL document.
h4. Browse Registered OCL Files...
The org.eclipse.ocl.examples.xtext.completeocl.complete_ocl_registry may be used to register Complete OCL files against the nsURIs that they complement. These extension points may be defined in plugins or projects. In either case clicking *Browse Registered OCL Files...* presents a list of registered Complete OCL documents applicable to the context from which the dialog was invoked.
h4. Browse File System...
The *Browse File System...* button present a file system explorer so that a Complete OCL document file can found anywhere.
h4. Browse Workspace...
The *Browse Workspace...* button present a workspace explorer so that a Complete OCL document file can found within the workspace.
h3. OCLinEcore for Xtext Validation
If you want to use OCLinEcore as a validation language for Xtext you must:
Use a manually maintained Ecore model to define your parsed grammar model, otherwise your embedded OCL will be lost each time you regenerate the editor. For non-trivial models, switching from auto-generated to manual maintenance is a good idea, since you may need to control changes carefully to maintain upward compatibility for existing models.
Modify the Validator class generated by genmodel to extend OCLinEcoreEObjectValidator rather than EObjectValidator. See "OCLinEcoreEObjectValidator":#OCLinEcoreEObjectValidator for details.
h3. Complete OCL for Xtext Validation
If you want to use Complete OCL as a validation language for Xtext, you may use the "CompleteOCLEObjectValidator":#CompleteOCLEObjectValidator to register the Complete OCL for EMF Validation. This may readily be achieved by reusing the empty example JavaValidator created by Xtext to install the Complete OCL. If your Xtext language is _States_, and your Complete OCL is _model/States.ocl_ in _StatesProject_ you should change your StatesJavaValidator to:
bc..
public class StatesJavaValidator extends AbstractStatesJavaValidator
{
@Override
public void register(EValidatorRegistrar registrar) {
super.register(registrar);
StatesPackage ePackage = StatesPackage.eINSTANCE;
URI oclURI = URI.createPlatformResourceURI(
"/StatesProject/model/States.ocl", true);
registrar.register(ePackage,
new CompleteOCLEObjectValidator(ePackage, oclURI));
}
}
p.