1 / 47

Object Constraint Language

Object Constraint Language. Design by Contract and Queries Dan Massey Y&L Consulting. OCL Topics. Object Constraint Language (OCL) OCL for Design by Contract OCL for Queries Another OCL Example. OCL Topics. Object Constraint Language (OCL) OCL for Design by Contract OCL for Queries

clark
Télécharger la présentation

Object Constraint Language

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. Object Constraint Language Design by Contract and Queries Dan Massey Y&L Consulting

  2. OCL Topics • Object Constraint Language (OCL) • OCL for Design by Contract • OCL for Queries • Another OCL Example

  3. OCL Topics • Object Constraint Language (OCL) • OCL for Design by Contract • OCL for Queries • Another OCL Example

  4. Object Constraint Language • OCL 2.0 • Product of the Object Management Group (OMG) • Add-on to the Unified Modeling Language (UML™) 2.0 specification • UML combined with OCL forms a solid base for Model Driven Architecture (MDA®)

  5. Model Driven Architecture • Work with Platform Independent Model (PIM) • Transform PIM into Platform Specific Model (PSM) • Transform PSM into implementation

  6. Model Constraints • Originally viewed as a way to constrain or to restrict values in a model • In addition OCL supports: • Query expressions • Derived values • Conditions • Business rules

  7. Reasons to use OCL • Express concepts that are not supported by UML diagrams • Make models more precise • Support transformation tools and code generation (MDA)

  8. Approach • We’re going to explore OCL by example to give you ideas as to where it might apply in your work. • At the end I’ll point you toward sources of more complete information.

  9. OCL Topics • Object Constraint Language (OCL) • OCL for Design by Contract • OCL for Queries • Another OCL Example

  10. Design by Contract • Why do we use contracts? • We know the rules. We know what happens if we break them. • Design by Contract does the same for software. • Provide a formal specification of behavior.

  11. More Design by Contract • winningBid():Bid is a signature, not a specification. It’s like giving someone a phone without providing the format for a correct phone number. • Are there any conditions that must be met for a call to winningBid() to succeed?

  12. And… Design by Contract • Specify preconditions, postconditions, and invariants. Defensive programming? • We’ll cover each of these in turn. • Bertrand Meyer is the father of DbC • http://www2.inf.ethz.ch/personal/meyer/

  13. Auction Domain • A partial auction domain to get us started. Includes “Auction,” “Bid,” and “Money.” • We have the structure, but what are the rules?

  14. OCL Expression Context • Every OCL expression takes place in a context: • contextAuction • contextAuction::winningBid():Bid

  15. Preconditions • Preconditions are the conditions that must be true prior to successfully invoking the method in question. • Often preconditions that fail result in exceptions.

  16. Example Preconditions • contextAuction::placeBid(bidder:Id,bid:Money) • pre:notbidder.oclIsUndefined() • pre:notbid.oclIsUndefined() • pre:bid.currency= • self.bids->first().amount.currency • pre:bid>self.currentBid().money

  17. Simple Preconditions • contextAuction::placeBid(bidder:Id,bid:Money) • pre:notbidder.oclIsUndefined() • pre:notbid.oclIsUndefined() • This operation requires a bidder identifier and a bid.

  18. Implementing Preconditions • … • publicvoid placeBid(Id bidder, • Money bid) { • if (bidder == null) { • thrownew NullPointerException( • “bidder may not be null”); • } • …

  19. More Involved Preconditions • contextAuction::placeBid(bidder:Id,bid:Money) • pre:bid.currency= • self.bids->first().amount.currency • pre:bid>self.currentBid().money • The bid must be in the same currency as the starting bid. The bid must be higher than the current high bid.

  20. Implementing Preconditions • … • if (bid.getAmount().getCurrency() != • ((Bid) bids.first()).getAmount() • .getCurrency()) { • thrownew IllegalArgumentException( • “currencies must match”); • } • …

  21. Assertion Temptation • // Don’t do this. Anyone who runs your app • // can “turn off” assertions. • … • assert bidder != null : • “bidder may not be null”; • assert bid.getAmount().getCurrency() == • ((Bid) bids.first()).getAmount() • .getCurrency() : • “currencies must match”; • …

  22. OCL Comments • contextAuction::placeBid(bidder:Id,bid:Money) • -- currencies must match • pre:bid.currency= • self.bids->first().amount.currency • prealwaysTrue:1=1 • -- and /**/ are valid comment forms in OCL

  23. More Preconditions • Preconditions are not limited to checking parameters. They can specify any condition that must be true prior to executing the operation. • What are some other possible preconditions?

  24. More Preconditions • contextAuction::winningBid():Bid • -- auction must end to have a winner • pre:TimeStamp::now()>=self.expires() • contextBid::>(bid:Bid):Boolean • -- _gt is our name for “>” • pre:notbid.oclIsUndefined()

  25. Invariants • Invariants are conditions that are always true. • They are always true. Think conservation of energy, not “the color of the sky is blue.”

  26. Invariants • If an invariant is violated something is wrong with the implementation of your system. • What are some invariants in our domain?

  27. Example Invariants • contextAuction • inv:self.expires()>self.start • contextBid • inv:self.amount.amount>0.0 • /* Note this could be specified in • the Auction context, but don’t. */

  28. Postconditions • Postconditions are the conditions that your operation guarantees will be true when it has completed. • The contract: You meet the preconditions and I’ll meet the postconditions.

  29. PostConditions • contextAuction::placeBid(bidder:Id, • bid:Money) • post: self.currentBid().amount=bid • Notice that the postcondition assumes serial or single-threaded execution. This postcondition isn’t necessarily enforceable in an unprotected multi-threaded context.

  30. PostConditions • contextAuction::placeBid(bidder:Id, • bid:Money) • post:self.currentBid()> • self.currentBid@pre() • Postconditions can reach back in time. • @pre references the value before the operation. • Another way to state a precondition…

  31. Implementing PostConditions • … • publicvoid placeBid(Id bidder, • Money bid) { • … • Bid preCurrentBid = this.currentBid(); • … • if (this.currentBid() <= preCurrentBid) { • …

  32. OCL Contracts • Add more formal specifications to your models. • Specify what will happen, without the how. • Start at component boundaries. • You can start out with simple contracts.

  33. OCL Topics • Object Constraint Language (OCL) • OCL for Design by Contract • OCL for Queries • Another OCL Example

  34. OCL as Query Language • You can think of OCL as equivalent to SQL when it comes to querying object models. • Borland’s ECO framework uses OCL for querying (as well as constraints, derived values, etc.) • Other query alternatives include OQL and Xquery

  35. Test Results Mini Domain • Below is a simple domain for describing test results from test sessions at a competition for teams of logicians. • This is our domain for examining OCL queries.

  36. Example Test Data Set • Here’s some example test result data from a logician competition.

  37. Derived Values • contextTestResult::compositeScore:Integer • derive:(2*logicScore)+illogicScore

  38. OCL Collection Operations • contextTestSession::numberOfResults:Integer • derive:results->size()

  39. OCL Collection Choices • Set: no duplicates, not ordered,result of navigating on association • OrderedSet: not sorted, just ordered • Bag: may contain duplicates, not ordered, • usually the result of navigating multiple associations • Sequence: an ordered Bag

  40. OCL Collections Classification

  41. OCL select() Query • contextTestSession::numberOfScoresOverTarget( target:Integer):Integer • body:results->select( compositeScore>target)->size()

  42. Translating OCL Queries • Let’s look at what a transformation tool might do with one of our queries in SQL. • SELECT COUNT(*) FROM test_resultsWHERE composite_score > :target;

  43. Returning a Collection • contextTestSession::testResultsForTeam( testTeam:Team):Set(TestResult) • body:results->select(team=testTeam)

  44. Building Up Queries • contextTestSession::averageScoreForTeam( testTeam:Team):Real • body:testResultsForTeam(testTeam).compositeScore • ->sum()/testResultsForTeam(testTeam)->size()

  45. Which Logicians Won? • contextTestSession::bestResults():Set(TestResult) • body:results->select(compositeScore= • results->sortedBy(compositeScore) ->last().compositeScore)

  46. OCL Resources • The Object Constraint Language, 2edJos Warmer and Anneke Kleppe • Klasse Objecten’s OCL pagehttp://www.klasse.nl/ocl/ • OCL 2.0 Specification at OMGhttp://www.omg.org/cgi-bin/doc?ptc/2003-10-14

  47. Questions and Answers

More Related