1 / 38

Systems Analysis and Design I

Learn about object interaction and collaboration through message passing, CRC cards, and various types of diagrams like sequence, communication, and interaction overview diagrams.

wlarsen
Download Presentation

Systems Analysis and Design I

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. Systems Analysis and Design I Session 6 Object Interaction

  2. Recap • Further discussion of class diagrams (Section 7.5.2, pp 198 – 201) • Stereotypes: entity, boundary, control; association class • Software and Specification Reuse • Section 20.2 (pp. 585 – 586) • Section 8.2 (pp. 234 – 237) • Section 8.4 (pp. 246 – 247) • Section 8.5.1 – 8.5.2 (pp. 252 – 253) • Adding Further Structure (to Class Diagrams) • Section 8.3.1 – 8.3.3 (pp. 237 – 244) • Section 14.4.4 (pp. 409 – 410) 2

  3. Today • Object Interaction and Collaboration • Section 9.2 (pp. 260 – 262) • CRC Cards • Section 7.6 (pp. 215 – 218) • Communication Diagrams • Section 7.4 (pp. 194 – 197) • Section 9.4 (pp. 280 – 284) • Sequence Diagrams • Section 9.3 – 9.3.3 (pp. 262 – 276) • Model Consistency • Section 9.7 (p. 289) 3

  4. Object Interaction & Collaboration • How do you communicate, interact, and collaborate? • Message Passing • Objects communicate by sending messages • This is a metaphor! • When an object sends a message to another object, an operation is invoked in the receiving object • The Campaign object sends a message to each of its Advert object • currentAdvertCost = anAdvert.getCost() • The aim of modelling object interaction is to determine the most appropriate scheme of message passing between objects to support a particular user requirement 4

  5. Object Interaction & Collaboration • Appropriate distribution of object responsibility improves software modularity • Each class tends not to be unduly complex, and as a result is easier to develop, to test and to maintain. • Each class is relatively small and self-contained, and as a result has a much greater potential for reuse. • The system is more resilient to changes in its requirements • (see next slide) • A modular system is easier • to be maintained and upgraded • to achieve high reliability • to be implemented in small, manageable increments 5

  6. Equivalent areas of change—a highly resilient system. Application that caters for these requirements Real-world requirements A small change in requirements causes a much greater change in software—not a resilient system. Application that caters for these requirements Real-world requirements 6

  7. CRC Cards • Class–Responsibility–Collaboration (CRC) cards • An effective technique for exploring the possible ways of allocating responsibilities to classes and the collaborations that are necessary to fulfil the responsibilities • Brainstorm the classes • Allocate each class to a team members • For each use case, role play the interaction to distribute responsibilities among classes: • each object identifies the object that he/she thinks is most appropriate to take on a needed responsibility for collaboration • each object should be as lazy as possible, refusing to take on any responsibility unless persuaded by its fellow objects 7

  8. Class Name: Responsibilities Collaborations Collaborations with other classes are listed here, together with a brief description of the purpose of the collaboration. Responsibilities of the class are listed in this section. Format of CRC Cards 8

  9. CRC Cards: Use Case Example Use Case: Add a new advert to a campaign A campaign can consist of many adverts. Details of each advert are entered into the system with a target completion date and estimated cost. Glossary: Campaign: Adverts are organised into campaigns in order to achieve a particular objective.... Client: A company or organisation that wishes to obtain the services to develop and manage an advertising campaign, and design and produce adverts for the campaign

  10. Class Name Client Responsibilities Collaborations Provide client information. Campaign provides campaigndetails. Provide list of campaigns. Class Name Campaign Responsibilities Collaborations Provide campaigninformation. Advert provides advert details. Provide list of adverts. Advert constructs new object. Add a new advert. Class Name Advert Responsibilities Collaborations Provide advert details. Construct adverts. 10

  11. Dynamic Analysis with UML • Sequence Diagrams • Communication Diagrams • Interaction Overview Diagrams • Timing Diagrams In UML 1.x, • communication diagrams are called collaboration diagrams • interaction overview diagrams and timing diagrams do not exist 11

  12. Sequence Diagrams • A sequence diagram shows an interaction between objects arranged in a time sequence. • Sequence diagrams can be drawn at different levels of detail and to meet different purposes at several stages in the development life cycle. • Sequence diagrams are typically used to represent the detailed object interaction that occurs for one use case or for one operation. 12

  13. sdAdd a new advert to a campaign Interaction Constraint :CampaignManager :Client :Campaign :Advert getName listCampaigns Combined Fragment (loop) Interaction Operator loop [For all client’s campaigns] getCampaignDetails listAdverts loop [For all campaign’s adverts] getAdvertDetails addNewAdvert Advert newAd:Advert Lifeline Activation or Execution Object creation Sequence diagram Frame label Sequence diagram is enclosed in a frame

  14. Sequence Diagrams: Basic elements • Objects (or subsystems, components or other connectable elements) involved in interaction appear horizontally across the page • Vertical dimension represents time • Each object is represented by a lifeline. • Once a message is received, the operation that has been invoked begins to execute • The period of time during which an operation executes is called the execution occurrence or activation of an operation • shown by a rectangle on the relevant lifeline. • Messages are usually shown by a solid horizontal arrow • A synchronous messageor procedural callis shown with a full arrowhead, • causes the invoking operation to suspend execution until the focus of control has been returned to it. • It is optional to show reply messages(with dashed arrows) • Why? Assume that control is returned to the originating object at the end of the activation in a destination object (except for asynchronous messages). 14

  15. Sequence Diagrams: Example sd Interaction Name State on lifeline showing pre-condition :LifelineB :LifelineA Synchronous (blocking) message Receive messaged Event Occurrence (msg.recieveEvent) Active Send message Event Occurrence (msg.sendEvent) msg a start of Execution Occurrence Execution Occurrence end of Execution Occurrence Message reply showing return of control Figure 9.4 on p. 265 16

  16. Boundary & Control Classes • Most use cases imply at least one boundary object that manages the dialogue between the actor and the system • The control object is represented by the lifeline :AddAdvert and this manages the overall object communication.

  17. sdAdd a new advert to a campaign :Client :Campaign :Advert :AddAdvert :CampaignManager loop [For all clients] getClient :AddAdvertUI startInterface selectClient showClientCampaigns listCampaigns loop [For all client’s campaigns] getCampaignDetails selectCampaign showCampaignAdverts listAdverts loop [For all campaign’s adverts] getAdvertDetails createNewAdvert addNewAdvert addNewAdvert Advert newAd:Advert Controllifeline Boundarylifeline

  18. Sequence Diagrams: Reflexive Message sdCheck campaign budget :CampaignManager :Client :Campaign :Advert getName listCampaigns loop [For all client’s campaigns] getCampaignDetails checkCampaignBudget loop [For all campaign’s adverts] getCost getOverheads Reflexive message A reflexive message that an object sends to itself is shown by a message arrow that starts and finishes at the same object lifeline. An object can send a message to itself. 19

  19. Sequence Diagrams: Flow Control • Sequencing is shown by arranging messages vertically in the order of their occurrences • Recall: the vertical dimension represents time. • Selection (branching)is shown by a combined fragment rectangle with the interaction operator ‘alt’ (a short form of alternatives) • The alt combined fragment has two (or more) compartments known as operands. • Each operand corresponds to one of the alternatives in the combined fragment and should have an interaction constraint to indicate under what conditions it executes. • Iteration (looping) is shown by a combined fragment rectangle with the interaction operator ‘loop’ • The interaction in the loop combined fragment repeats as long as the guard conditionin the interaction constraint evaluates as true. 22

  20. sd Add a new advert to a campaign if within budget :CampaignManager :Client :Campaign :Advert getName listCampaigns ref List client campaigns ref Get campaign budget addCostedAdvert alt [totalCost <= budget] newAd:Advert Advert alt interaction operator shows branching [else] newRequest:Request Request Two interaction operands, one for each alternative Figure 9.16 on p. 275 23

  21. sdAdd a new advert to a campaign Interaction Constraint Frame label :CampaignManager :Client :Campaign :Advert getName listCampaigns Combined Fragment (loop) Interaction Operator loop [For all client’s campaigns] getCampaignDetails listAdverts A sequence diagram is enclosed in a frame loop [For all campaign’s adverts] getAdvertDetails addNewAdvert Advert newAd:Advert Lifeline Activation or Execution Object creation Figure 9.3 on p. 263 24

  22. sd Delete advert :Advert :Campaign listAdverts loop getAdvertDetails deleteAdvert delete X Object destruction Sequence Diagrams:Object Creation and Destruction Figure 9.6 on p. 267 • Object creation is shown with the construction message (dashed arrow) going to the object symbol. • Object destruction is indicated by a large X on the lifeline on the destruction point. 26

  23. Sequence Diagrams: Handling Complexity • Complexity interactions can be modelled using various different techniques • Interaction fragments • Lifelines for subsystems or groups of objects • Continuations • Interaction Overview Diagrams 27

  24. Interaction fragments: Example ref interaction operator indicates interaction occurrence that references an interaction fragment Interaction fragment that is referenced inthe “Check campaign budget”sequence diagram sd Check campaign budget sd List client campaigns :CampaignManager :Client :Campaign :Advert getName :Client :Campaign listCampaigns ref listCampaigns List client campaigns loop Gate showing the message enter this interaction occurrence [For all client’s campaigns] getCampaignDetails Gate showing the message enter this Interaction Fragment ref Get campaign budget 28

  25. sd Get campaign budget :CampaignManager :Campaign :Advert checkCampaignBudget loop [For all campaign’s adverts] getCost getOverheads Interaction Fragment example (cont’d) Interaction fragment that is also referenced in Check campaign budget sequence diagram

  26. sdAdd a new advert to a campaign :Client :Campaign :Advert :AddAdvert :CampaignManager loop [For all clients] getClient :AddAdvertUI startInterface selectClient showClientCampaigns listCampaigns loop [For all client’s campaigns] getCampaignDetails selectCampaign showCampaignAdverts listAdverts loop [For all campaign’s adverts] getAdvertDetails createNewAdvert addNewAdvert addNewAdvert Advert newAd:Advert Controllifeline Boundarylifeline Lifelines for subsystems or groups of objects Complex interactions can also be split up using lifelines to represent groups objects and their interactions or to present subsystems.

  27. sdAdd a new advert to a campaign :ClientCampaigns ref ClientCampaignAds :AddAdvert :CampaignManager loop [For all clients] getClient :AddAdvertUI startInterface selectClient showClientCampaigns listCampaigns selectCampaign showCampaignAdverts listAdverts createNewAdvert addNewAdvert addNewAdvert Lifelines for subsystems or groups of objects Lifeline representing the interaction between a group of objects Complex interactions can also be split up using lifelines to represent groups objects and their interactions or to present subsystems.

  28. sdClientCampaignAds :Client :Campaign :Advert getClient listCampaigns loop [For all client’s campaigns] getCampaignDetails listAdverts loop [For all campaign’s adverts] getAdvertDetails addNewAdvert Advert newAd:Advert Sequence diagram referenced in the Add a new advert to a campaign sequence diagram

  29. sd Authorise expenditure sd Calculate costs :LifelineA :LifelineB :LifelineC :LifelineA :LifelineB :LifelineC getCost ref getCost Calculate costs alt [Within budget] ref Identify under spend alt [Within budget] Within budget Budget spent Budget spent Within budget authorize [else] [else] stopExpenditure Using Continuations NB: Dashed arrows are NOT part of UML! Continuations are used to link sequence diagrams

  30. Communication Diagrams • Communication diagrams hold the same information as sequence diagrams • Can be drawn at various levels of detail and during different stages in the system development process • Communication diagrams show links between objects that participate in the collaboration • offer a view of object interactions that is easy to relate to the underlying collaborations because of visibility of links between objects (lifelines) • No time dimension, sequence order is captured with sequence numbers • Not suitable for complex interactions 34

  31. :Campaign anAdvert:Advert getCost Communication Diagrams: Notation • Message order is captured with sequence numbers, which are written in a nested style to indicate the nesting of control within the interaction that is being modelled: • e.g., message 3.1.2 occurs after message 3.1.1, and both are contained with the activation of message 3.1 currentAdvertCost = anAdvert.getCost() 35

  32. sdAdd a new advert to a campaign :Client :Campaign :Advert :AddAdvert :CampaignManager loop [For all clients] getClient :AddAdvertUI startInterface selectClient showClientCampaigns listCampaigns loop [For all client’s campaigns] getCampaignDetails selectCampaign showCampaignAdverts listAdverts loop [For all campaign’s adverts] getAdvertDetails createNewAdvert addNewAdvert addNewAdvert Advert newAd:Advert Controllifeline Boundarylifeline

  33. Communication Diagrams: Example sd Add a new advert to a campaign 5: createNewAdvert 5.1: addNewAdvert 4: selectCampaign 4.1: showCampaignAdverts 4.1.2 *[For all campaign’s adverts]: getAdvertDetails 3: selectClient 3.1: showClientCampaigns :AddAdvert :AddAdvertUI :Advert 5.1.1: addNewAdvert :CampaignManager 2: startInterface 4.1.1: listAdverts 3.1.2 *[For all client’s campaigns]: getCampaignDetails 1 *[For all clients]: getClient 3.1.1: listCampaigns 5.1.1.1: Advert :Client :Campaign newAd:Advert Figure 9.21 on p. 282 37

  34. Communication Diagrams: Message Labels 38

  35. sd checkCampaignBudget sdCheck campaign budget checkCampaignBudget :CampaignManager 2: getOverheads :Client :Campaign :Advert :Campaign getName 1*[For all adverts]: getCost listCampaigns The direction in which a link can be navigated loop [For all client’s campaigns] may be shown if required. :Advert getCampaignDetails checkCampaignBudget loop [For all campaign’s adverts] getCost getOverheads

  36. Model Consistency • The communication/sequence diagrams should be mutually consistent with the class diagrams • The allocation of operations to objects must be consistent with the class diagram and the message signature must match that of the operation • Can be enforced through CASE tools • Every sending object must have the object reference for the destination object • Either an association exists between the classes or another object passes the reference to the sender • Message pathways should be carefully analysed. • This issue is key in determining association design 40

  37. Take Home Messages • Object Interaction and Collaboration • CRC Cards • Communication Diagrams • Sequence Diagrams • Model Consistency 41

More Related