1 / 22

A UML Class Diagram Analyzer

A UML Class Diagram Analyzer. Tiago Massoni Rohit Gheyi Paulo Borba. Software Productivity Group Informatics Center – UFPE October 2004. UML and Critical Systems. UML Growing interest Explore concepts Address important problems OCL to specify complex constraints

ulema
Download Presentation

A UML Class Diagram Analyzer

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. A UML Class Diagram Analyzer Tiago Massoni Rohit Gheyi Paulo Borba Software Productivity Group Informatics Center – UFPE October 2004

  2. UML and Critical Systems • UML • Growing interest • Explore concepts • Address important problems • OCL to specify complex constraints • Complex structures with class diagrams

  3. UML/OCL and Tools • Lack of semantics • Some have proposed approaches • Did not stimulate tools for automatic analysis • Absence of tool support • Additional trouble in critical systems • Structural modeling errors are hard to detect

  4. Subtle Errors when Modeling Critical Systems • Structural errors • OCL invariants may turn a class diagram over-constrained or inconsistent • Under-constrained diagrams allow incorrect implementations • These problems are desirable to be automatically detected…

  5. Contributions • Approach for automatic analysis of UML class diagrams • A precise semantics for class diagrams is given • Semantic model: Alloy • Object modeling language • Analysis tool for concrete feedback • Modeled several critical systems

  6. Contributions • Semantics by mapping • Mapping rules from diagrammatic and OCL class invariants to Alloy • We leverage automatic analysis of Alloy to class diagrams • Automatic generation of snapshots • Assertion checking

  7. Outline • Alloy • Semantics for UML class diagrams • Example • Alloy in Critical Systems

  8. Alloy • MIT – Software Design Group (Daniel Jackson) • Simple language for declarative modeling • Primarily structural properties • Sets, relations and predicate logic • Alloy Analyzer

  9. UML to Alloy fact BankProperties { Account = ChAcc all a:Account|lone a.~accs bk = ~accs } sig Bank { accs: set Account } sig Account{ bk: set Bank } sig ChAcc extends Account {}

  10. Semantics for Class Diagrams • Initial focus on structural properties • Avoided constructs with undefined semantics • Diagrammatic constructs • Classes and interfaces: signatures • Binary associations and attributes: relations • Generalization: extends

  11. Semantics for Class Diagrams • OCL invariants: Alloy facts • Universally quantified on self

  12. Analysis Example

  13. Analysis Example Snapshot 1 : scope of two Customers and their personal accounts aren’t related at all (they could be in different banks)

  14. Analysis Example Changing the diagram Snapshot 2 (still under-constrained)

  15. Analysis Example Adding an OCL constraint: context Bank inv customersAccountsInBank: self.custs.owned_accs->includes(self.accs) Snapshot 3 (great!)

  16. Analysis Example • I’d like to check whether every customer with cards has an account • Within the Customer context: self.card->notEmpty() implies self.owned_accs->notEmpty() • Counterexample:

  17. Applications of Alloy in Critical Systems • Radiation Therapy Machine • Operation Commutativity • Railway System • Access Control • Air-traffic control

  18. Conclusion • Visual identification of modeling problems • Covering many more states than any testing tool • Leverage the benefits to UML Class Diagrams • Future Work • Prototype (translation, analysis) • Behavioral Modeling • Case studies • Denotational semantics for class diagrams • Equivalence notion for models

  19. Software Productivity Group • www.cin.ufpe.br/spg • Model refactoring • Synchronization model-source code • Semantics • Formal Methods

  20. Putting Analysis to Work UML class diagram UML object diagrams semantic mapping translation Snapshot or counterexample Alloy model Alloy Analyzer (SAT Solver)

  21. Alloy Analyzer • Two kinds of analysis • Simulation • Assertion checking • Analysis • Bounded by a scope of objects and relations

  22. A UML Class Diagram Analyzer Tiago Massoni Rohit Gheyi Paulo Borba Software Productivity Group Informatics Center – UFPE October 2004

More Related