ODB Design: Handling Associations and Inheritance in ODL

Slides:



Advertisements
Similar presentations
Chapter 6 Advanced Data Modelling
Advertisements

ODMG Standard: Object Model1 OBJECT-ORIENTED DATABASE SYSTEMS ODMG Standard: Object Model Susan D. Urban and Suzanne W. Dietrich Department of Computer.
Lecturer: Sebastian Coope Ashton Building, Room G.18 COMP 201 web-page: Lecture.
Modelling classes Drawing a Class Diagram. Class diagram First pick the classes –Choose relevant nouns, which have attributes and operations. Find the.
Databases Illuminated Chapter 7 The Object-Oriented Model.
1 ODB Design Handling Associations in ODL M. Akhtar Ali School of Informatics.
1 ODB Design: Handling Associations and Inheritance in ODL M. Akhtar Ali School of Informatics.
ZEIT2301 Design of Information Systems Structural Design: Class Diagrams School of Engineering and Information Technology Dr Kathryn Merrick.
Object Query Language (OQL) and Language Binding
Seminar #: 9 (Object Oriented Database Schema in ODL) Advanced Databases (CM036) 1 Seminar 9 : OODB Schema in ODL Purpose To understand how an OODB is.
Lab 04.
University of Toronto Department of Computer Science © Steve Easterbrook. This presentation is available free for non-commercial use with attribution.
Unit 1 INTRODUCTION TO MODELING AND CLASS MODEL Ref : L7-UML.PDF.
Unified Modeling Language © 2002 by Dietrich and Urban1 ADVANCED DATABASE CONCEPTS Unified Modeling Language Susan D. Urban and Suzanne W. Dietrich Department.
Lecture 1: UML Class Diagram September 12, UML Class Diagrams2 What is a Class Diagram? A class diagram describes the types of objects in the system.
Karolina Muszyńska Based on: S. Wrycza, B. Marcinkowski, K. Wyrzykowski „Język UML 2.0 w modelowaniu SI”
Seminar #: 10 (Object Oriented Database Design) Advanced DB Technologies (CG096) 1 Seminar 10 : OODB Design Purpose To understand how an OODB is structured.
CS212: Object Oriented Analysis and Design Lecture 33: Class and Sequence Diagram.
UML Class Diagram notation Indicating relationships between classes SE-2030 Dr. Mark L. Hornick 1.
The ODMG Standard for Object Databases
Object-Oriented Analysis and Design Use cases Finding classes Collaboration and Sequence diagrams Associations between classes.
Seminar #: 10a (Object Oriented Database Design) Advanced Databases (CM036) 1 Seminar 10a : OODB Design Purpose This seminar is the continuation of seminar.
Class Diagram Lecture # 1. Class diagram A Class Diagram is a diagram describing the structure of a system shows the system's classes Attributes operations.
1 ODB Design Handling Inheritance in ODL M. Akhtar Ali School of Informatics.
1 ODMG: ODL and OQL This lecture is a short version of: Lecture 11 (on ODL) & Lecture 12 (on OQL) M. Akhtar Ali School of Informatics.
Lecture # 14 Chapter # 5 The Relational Data Model and Relational Database Constraints Database Systems.
ER Diagrams ● Many different notations are available ● From wikipedia:wikipedia: Entity-relationship modelwikipedia: Entity-relationship model ● How do.
 Class and Diagram  Representation of Class Name Attributes Operations  Visibility of Attributes and Operations.
Entity Relationship (E-R) Model
Data Modeling Using the Entity- Relationship (ER) Model
Comp 1100 Entity-Relationship (ER) Model
Databases (CS507) CHAPTER 7.
Business System Development
Enhanced Entity-Relationship (EER) Model
The Enhanced Entity- Relationship (EER) Model
UML Diagrams: Class Diagrams The Static Analysis Model
Enhanced Entity-Relationship and Object Modeling Objectives
Entity-Relationship Model
Session 2 Welcome: The sixth learning sequence
Visit for more Learning Resources
Seminar 10 : OODB Design (Self-Study)
Entity-Relationship Model
Chapter 2: Entity-Relationship Model
Chapter 7: Entity-Relationship Model
Class diagram Description
Chapter 7: Entity-Relationship Model
Seminar 6 : OODB Schema in ODL
UML Class & Object Diagram II
Entity-Relationship Model
Outline of the ER Model By S.Saha
Seminar 9: OODB Design (Self Study)
UML Class Diagrams: Basic Concepts
Object Oriented Analysis and Design
Chapter 18: Refining Analysis Relationships
Software Engineering Lecture #11.
Module 8 – Database Design Using the E-R Model
UML Class Diagram.
Software Engineering Lecture 10.
ISC321 Database Systems I Chapter 10: Object and Object-Relational Databases: Concepts, Models, Languages, and Standards Spring 2015 Dr. Abdullah Almutairi.
CS4222 Principles of Database System
Chapter 5 Advanced Data Modeling
Chapter 7: Entity-Relationship Model
Database Processing: David M. Kroenke’s Chapter Five:
Mapping an ERD to a Relational Database
Database EER.
Object Oriented System Design Class Diagrams
Enhanced Entity-Relationship (EER) Modeling
Chapter 6b: Database Design Using the E-R Model
UML  UML stands for Unified Modeling Language. It is a standard which is mainly used for creating object- oriented, meaningful documentation models for.
Presentation transcript:

ODB Design: Handling Associations and Inheritance in ODL Dr. Akhtar Ali School of Computing, Engineering and Information Sciences http://computing.unn.ac.uk/staff/cgma2

Lecture outline Different ways of representing links between objects Multiplicity of Associations in UML Types of Associations in UML Mapping Associations in ODL Modelling with inheritance Different kinds of inheritance Handling inheritance in ODL Summarizing OODB Design Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Different ways of representing links Single valued attribute Single reference Collection valued attribute Collection of references A B A B A B1, B2, … Bn A B1 B2 Bn Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Multiplicity of associations in UML 0..1 (to-one, optional) 1..1 (to-one, mandatory) 0..* (to-many, optional) 1..* (to-many, mandatory) Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

UNN-IS COMPLETE CLASS DIAGRAM Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Types of Associations: Bi-Directional These are true relationships so they require automatic referential integrity (in UML shown as lines without arrows or symbols). Since bi-directional, both participating classes (e.g., A and B) know about each other. Any changes to the state (e.g., initialising relationship) of an object of class A may affect the state of some object(s) of class B and vice versa. For example, when a Student object’s enrolledOn relationship is initialised with a reference to a Course object, that Course object’s students relationship will be automatically updated to include that Student object as one of the students enrolled on the course. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Types of Associations: Aggregation Aggregation represents a part-whole relationship between two classes. Two kinds of Aggregation: Weak or shared aggregation (shown by ) Lets you model a part-whole relationship in which one object owns another object, but yet other objects can own that object as well. For example, several Person objects may share a same Address object. However, if no Person or Department object is associated with an Address object then that Address object should be deleted. Strong aggregation/composition (shown by ) Lets you model the part-whole relationship where one object exclusively owns another object. The life-time of the part depends on the life-time of the whole object. For example, a Person object owns a Passport object exclusively and whenever a Person object is deleted any associated Passport objects are also deleted. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Bi-Directional Associations in ODL Syntax diagram of relationship declaration in ODL Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Bi-Directional Associations in ODL … Implementing the to-one (1..1) relationship from Student to Course class. relationship Course enrolledOn inverse Course::students; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Bi-Directional Associations in ODL … Implementing the to-many (0..*) relationship from Course to Student class. relationship set<Student> students inverse Student::enrolledOn; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Aggregation in ODL Week Aggregation (part-whole relationship) Maps onto an attribute in the aggregating class. Single valued (if 0..1 or 1..1). Collection valued (if 0..* or 1..*). For example, a Course is a whole object made up of several Module objects. The modules aggregation in the Course class is defined as follows: attribute set<Module> modules; The application need to maintain the integrity of modules attribute and to make sure that the set must contain at least one reference to a module object. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Aggregation in ODL … Strong Aggregation (part-whole relationship) Maps onto an attribute in the aggregating class. Single valued (if 0..1 or 1..1). Collection valued (if 0..* or 1..*). The aggregated class becomes a structured literal if it does not participate in any association with another class. Otherwise, it becomes a self-standing and independent class i.e., it can be defined the same way as other classes. For example, a Person object owns at least one or more Passport objects. The aggregated class: Passport becomes a structure: struct Passport { string passportNum; string nationality; date issueDate; date expiryDate; }; The passports aggregation in the Person class is defined as follows: attribute set<Passport> passports; No need for referential integrity for the passports attribute. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Association Classes When the association is one-to-one The association can be implemented as bi- or uni-directional depending on the situation. Add the attributes of the Association class to the participating class whose objects are more likely to get involved in the relationship. For example, suppose that every department has a chair who is one of the lecturer’s in the department. It would be better to define the association as an attribute (uni-directional relationship) in Department including startDate as only few lecturer will ever participate in the relationship. attribute Lecturer hasChair; attribute date startDate; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Association Classes … When the association is one-to-many The association can be implemented as bi- or uni-directional depending on the situation though preferably bi-directional. Add the attributes of the Association class to the participating class on the to-many side. For example, part-time lecturers works for a department for certain hours. It is better to use bi-directional relationship for the above. class PartTimeLecturer { ... relationship Department worksFor inverse Department::partTimeStaff; attribute unsigned short hours; }; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Association Classes … When the association is many-to-many The association class becomes a self-standing ODL class with bi-directional relationships to both participating classes. The attributes of the association class becomes attribute of the ODL class representing it. For example, the many-to-many association between Student and Module (having the association class) becomes: class StudentModule (extent AllStudentMoudles) { attribute unsigned short marks; relationship Student ofStudent inverse Student::takes; relationship Module forModule inverse Module::takenBy; }; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Association Classes … When the association is many-to-many … The Student class will include to-many relationship with StudentModule class: relationship list<StudentModule> takes inverse StudentModule::ofStudent; list is used to keep track of the order in which modules were taken. The Module class will include to-many relationship with StudentModule class: relationship set<StudentModule> takenBy inverse StudentModule::forModule; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Association Classes … But in some situations you may implement many-to-many Association classes differently. That is you may embed the association class inside one of the participating classes if navigation from both sides is not desirable/required. For example: In the above case the association class can be embedded inside the Invoice class if it is not necessary for products to have information about invoices on which they appear. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Association Classes … struct ItemType { unsigned short units; Product item; }; class Invoice (...) { ... // attributes etc attribute set<ItemType> items; class Product (...) { ... // attributes etc, no need to define attribute // of type Invoice or ItemType or relationship // with Invoice class. Invoice objects will not be dependent upon Product objects or will not require joins or navigation to obtain information about items. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Modelling with Inheritance Inheritance is usually termed as specialization/generalization relationship among super-classes and sub-classes. Super-class: An entity type or class that includes one or more distinct sub-groupings of its instances. Sub-class: A distinct sub-grouping of instances of an entity type or class. Each instance of a sub-class is also an instance of the super-class. Generalization relationship specifies that a super-class generalizes the properties of several sub-classes. The Super-class contains the properties and behaviour that the sub-classes share. All Sub-classes inherit the properties and behaviour of the super-class. Specialization relationship specifies that several sub-classes are in some way specialized form of the super-class. A Sub-class may include properties not present in the super-class or other sub-classes thereby making it distinguished. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Specialization Process The process of maximizing the differences between members of an entity by identifying their distinguishing characteristics. It is a top-down approach to defining a set of super-classes and their sub-classes. Once super-classes and sub-classes are identified, attributes and operations specific to sub-classes and their relationships with other classes are then identified. For example, having defined Person class, we then define Lecturer and Student classes to be sub-classes of Person class. Given the Student class, there are differences between under-graduate and post-graduate students e.g., under-graduate have personal tutors but post-graduates don’t. Also, post-graduate write dissertation where as under-graduate don’t. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Generalization Process The process of minimizing the differences between members of an entity by identifying their common characteristics. It is a bottom-up approach which results in the identification of a generalized super-class from the original entity types. We try to identify similarities among the original entity types e.g., common attributes, relationships, and operations. For example, full-time lecturers may be module tutor and supervise post-graduate’s dissertations, whereas part-time lecturer only teach on certain modules and work for a department for certain hours. This leads to a generalized Lecturer as super-class of more specialized classes FullTimeLecturer and PartTimeLecturer as its sub-classes. Generalization can be seen as reverse of specialization. In practice, both processes are used to complement each other. That’s we refer to them as specialization/generalization. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Different kinds of inheritance Single verses Multiple Inheritance In Single inheritance, a sub-class has only one super-class. In Multiple inheritance, a sub-class has more than one super-class. Inheritance of Behaviour A sub-class inherits only the behaviour (operations) of a super-class. The super-class in this case usually only defines operations i.e., an interface. For example, defining a common interface for students and lecturers. It is also known as is-a or is-a-kind relationship. Inheritance of State When a sub-class extends a super-class by adding attributes, operations or relationships and both of them are concrete classes. The sub-class inherits every thing defined in the super-class. For example, Lecturer and Student classes inherit all the attributes and operations of Person class. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Interface verses Class An interface is a classifier that represents an abstract collection of operations. A class may have one or more interfaces, and an interfaces can group operations of several different classes. Although Person class is super-class of Student and Lecturer, yet it would be useful to define a common interface. Given the Identification interface, we can have several classes that would realize the same interface. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Example Class Diagram for UNN-IS Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Handling inheritance in ODL The inheritance of behaviour is represented by “:” For example: class Person : Identification {...}; Defines that Person class inherits all the operations defined in the Identification interface. The object type after the : must be an interface. The inheritance of state is represented by “extends” class Student extends Person {...}; Defines that Student class inherits all the operations, relationships and attributes defined in the Person class. A class extends another class, an interface may inherit from another interface but not from a class. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Implementing Inheritance in UNN-IS interface Identification { short getAge(); void changeAddress(in Address addr); date getBirthDate(); string getName(); string getGender(); set<Address> getAddresses(); }; class Person : Identification {...}; class Student extends Person {...}; class Lecturer extends Person {...}; class UGStudent extends Student {...}; class PGStudent extends Student {...}; class FullTimeLecturer extends Lecturer {...}; class PartTimeLecturer extends Lecturer {...}; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Summarizing OODB Design: Classes Each UML class becomes an ODL class. Each attribute or method in a UML class becomes an attribute or operation of an ODL class with appropriate types. Specify a suitable extent name unless the class diagram explicitly indicates otherwise. Specify a unique key if one or more attributes of a UML class are shown in bold or tagged with {PK}. For a composite attribute, specify a structure literal type. Specify a suitable positive integer type (i.e. unsigned short or unsigned long) if an attribute / operation of a UML class has type int {+} or integer {+}. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Summarizing OODB Design: Associations Bi-Directional Associations Define relationships in both classes with appropriate types and inverses. Aggregations Week: Define a single or collection valued attribute of an appropriate type in the aggregating class. Strong: Define the aggregated class as and define a single or collection valued attribute of the struct type in the aggregating class. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Summarizing OODB Design: Associations… Association Classes One-to-one: Define a single or collection valued attribute and include the attributes of the association class in one of the participating classes. One-to-many: Define a bi-directional relationship in both classes and include attributes of the association class in the class on the to-many side. Many-to-many: Define a new class for the association class including all of its attributes. Define bi-directional relationships between the new class and the participating classes with appropriate types and inverses. In certain cases (e.g. when navigation from classes at both ends of the association is not required) it be desirable to embed the association class in one of the classes that participate in the association. See an example of this scenario near the end of week 11 lecture. Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases

Summarizing OODB Design: Inheritance Single Inheritance interface A {...}; class B {...}; class C : A {...}; interface D : A {...}; Multiple Inheritance class E : D extends B {...}; Inheritance of Behaviour Inheritance of State class F extends E {...}; Advanced Databases (CM036) – Lecture # 10: The ODMG Standard for Object Databases