Presentation is loading. Please wait.

Presentation is loading. Please wait.

Slide 10C.52 © The McGraw-Hill Companies, 2005 Object-Oriented and Classical Software Engineering Sixth Edition, WCB/McGraw-Hill, 2005 Stephen R. Schach.

Similar presentations


Presentation on theme: "Slide 10C.52 © The McGraw-Hill Companies, 2005 Object-Oriented and Classical Software Engineering Sixth Edition, WCB/McGraw-Hill, 2005 Stephen R. Schach."— Presentation transcript:

1 Slide 10C.52 © The McGraw-Hill Companies, 2005 Object-Oriented and Classical Software Engineering Sixth Edition, WCB/McGraw-Hill, 2005 Stephen R. Schach srs@vuse.vanderbilt.edu

2 Slide 10C.53 © The McGraw-Hill Companies, 2005 CHAPTER 10 — Unit C REQUIREMENTS

3 Slide 10C.54 © The McGraw-Hill Companies, 2005 Continued from Unit 10B

4 Slide 10C.55 © The McGraw-Hill Companies, 2005 10.9 Continuing the Requirements Workflow: The Osbert Oglesby Case Study l More details of each use case are needed now l First consider use cases  Buy a Painting, and  Sell a Painting l To refine the descriptions, determine what attributes need to be input when a painting is bought and when a painting is sold

5 Slide 10C.56 © The McGraw-Hill Companies, 2005 Attributes : The Osbert Oglesby Case Study l Attributes when buying a painting include:  Title of work, name of artist, date of painting, classification, medium, purchase price, name and address of seller  (The complete list of attributes appears in the textbook in Figure 10.14 — see over) l Attributes when selling a painting are:  Date of sale, name of buyer, address of buyer, actual selling price

6 Slide 10C.57 © The McGraw-Hill Companies, 2005 Attributes : The Osbert Oglesby Case Study (contd) Figure 10.14

7 Slide 10C.58 © The McGraw-Hill Companies, 2005 Continuing the Requirements Workflow: The Osbert Oglesby Case Study l Now the algorithm for computing the maximum purchase price is considered l Classify the painting as a  Masterpiece  Masterwork, or  Other painting

8 Slide 10C.59 © The McGraw-Hill Companies, 2005 Maximum Price for a Masterpiece: The Osbert Oglesby Case Study l Scan worldwide auction records over the past 25 years for the most similar work by the same artist l Use the auction purchase price of the most similar work as the base price l The maximum purchase price is found by adding 8.5 percent to the base price, compounded annually, for each year since that auction

9 Slide 10C.60 © The McGraw-Hill Companies, 2005 Maximum Price for a Masterwork: The Osbert Oglesby Case Study l Compute the maximum purchase price as if the painting were a masterpiece by the same artist l If the picture was painted in the 21st century, multiply this figure by 0.25 l Otherwise, multiply it by (21 – c)/(22 – c), where c is the century in which the work was painted (12 < c < 21)

10 Slide 10C.61 © The McGraw-Hill Companies, 2005 Maximum Price for an Other Painting: The Osbert Oglesby Case Study l Measure the dimensions of the canvas l The maximum purchase price is then given by the formula F  A, where  F is a constant for that artist (fashionability coefficient), and  A is the area of the canvas in square centimeters l If there is no fashionability coefficient for that artist, Osbert will not buy the painting

11 Slide 10C.62 © The McGraw-Hill Companies, 2005 Coefficient of Similarity: The Osbert Oglesby Case Study l For a masterpiece or masterwork, the coefficient of similarity between two paintings is computed as follows:  Score 1 for a match on medium, otherwise 0  Score 1 for a match on subject, otherwise 0  Add these two numbers, multiply by the area of the smaller painting, and divide by the area of the larger  The resulting number is the coefficient of similarity

12 Slide 10C.63 © The McGraw-Hill Companies, 2005 Coefficient of Similarity: The Osbert Oglesby Case Study (contd) l If the coefficient of similarity between the painting under consideration and all the paintings in the file of auction data is zero, then Osbert will not buy that masterwork or masterpiece

13 Slide 10C.64 © The McGraw-Hill Companies, 2005 Fashionability Coefficients: The Osbert Oglesby Case Study l The software product must include a list of artists and their corresponding F values l The value of F can vary from month to month, depending on the current fashionability of an artist l Osbert determines the value of F on the basis of his knowledge and experience  He changes the value if prices for work by an artist increase or decrease

14 Slide 10C.65 © The McGraw-Hill Companies, 2005 Auction Data : The Osbert Oglesby Case Study l The software product must utilize information on worldwide auction sales of masterpieces over the past 25 years l Each month Osbert receives a CD with updated worldwide auction prices; these prices are never modified by Osbert

15 Slide 10C.66 © The McGraw-Hill Companies, 2005 Updated Use Cases: The Osbert Oglesby Case Study l The use-case descriptions must reflect this information The resulting description of the Buy a Painting use case is shown in Figure 10.14 (see 9 slides back)

16 Slide 10C.67 © The McGraw-Hill Companies, 2005 Updated Use Cases: The Osbert Oglesby Case Study The description of the Sell a Painting use case: Figure 10.15

17 Slide 10C.68 © The McGraw-Hill Companies, 2005 Reports: The Osbert Oglesby Case Study l There are three reports:  Purchases during the past year  Sales during the past year  Detection of new trends l Sample reports show Osbert’s needs are as follows (question marks in the first or last name of artist, or in the title or date of the work are to be included in all reports):

18 Slide 10C.69 © The McGraw-Hill Companies, 2005 Report of Purchases during the Past Year: The Osbert Oglesby Case Study l A report is needed to display all the paintings purchased during the past year  The average ratio of the purchase price to the suggested maximum price is required at the end of the report Figure 10.16

19 Slide 10C.70 © The McGraw-Hill Companies, 2005 Report of Sales during the Past Year: The Osbert Oglesby Case Study l A report is needed to display all the paintings sold during the past year  The average ratio of the actual selling price to the target selling price is required at the end of the report Figure 10.17

20 Slide 10C.71 © The McGraw-Hill Companies, 2005 Report of Trends during the Past Year: The Osbert Oglesby Case Study l A report showing artists whose works Osbert has sold at a price that has exceeded the target selling price in every instance during the past year  To appear in this report, at least two of the artist’s works must have been sold by Osbert during that period Figure 10.18

21 Slide 10C.72 © The McGraw-Hill Companies, 2005 Updated Use Cases: The Osbert Oglesby Case Study The updated description of the Produce a Report use case, incorporating the details listed earlier, appears in Figure 10.19 (see over)

22 Slide 10C.73 © The McGraw-Hill Companies, 2005 Updated Use Cases: The Osbert Oglesby Case Study (contd) Figure 10.19

23 Slide 10C.74 © The McGraw-Hill Companies, 2005 10.10 The Test Workflow: The Osbert Oglesby Case Study l There is a serious omission  The use case for updating a fashionability coefficient has been overlooked Missing use case Update a Fashionability Coefficient Figure 10.20

24 Slide 10C.75 © The McGraw-Hill Companies, 2005 The Test Workflow: The Osbert Oglesby Case Study (contd) The description of the use case Update a Fashionability Coefficient Figure 10.21

25 Slide 10C.76 © The McGraw-Hill Companies, 2005 Second Iteration of the Use-Case Diagram: The Osbert Oglesby Case Study l Incorporate all four use cases Figure 10.22

26 Slide 10C.77 © The McGraw-Hill Companies, 2005 The Test Workflow: The Osbert Oglesby Case Study (contd) l A fault was detected  There was a missing use case  The existing artifacts did not need to be changed l Two additional artifacts had to be added  A use case, and  Its description

27 Slide 10C.78 © The McGraw-Hill Companies, 2005 The Test Workflow: The Osbert Oglesby Case Study (contd) l The Unified Process is iterative and incremental  Members of the development team must always be aware that changes and extensions to the current version of the software product may have to made at any time

28 Slide 10C.79 © The McGraw-Hill Companies, 2005 10.11 The Classical Requirements Phase l There is no such thing as “object-oriented requirements”  The requirements workflow has nothing to do with how the product is to be built l However, the approach presented in this chapter is  Model oriented, and therefore  Object oriented

29 Slide 10C.80 © The McGraw-Hill Companies, 2005 The Classical Requirements Phase (contd) l The classical approach to requirements  Requirements elicitation  Requirements analysis  Construction of a rapid prototype  Client and future users experiment with the rapid prototype

30 Slide 10C.81 © The McGraw-Hill Companies, 2005 10.12 Rapid Prototyping l Hastily built (“rapid”)  Imperfections can be ignored l Exhibits only key functionality l Emphasis on only what the client sees  Error checking, file updating can be ignored l Aim:  To provide the client with an understanding of the product

31 Slide 10C.82 © The McGraw-Hill Companies, 2005 Rapid Prototyping (contd) l A rapid prototype is built for change  Languages for rapid prototyping include 4GLs and interpreted languages

32 Slide 10C.83 © The McGraw-Hill Companies, 2005 10.13 Human Factors l The client and intended users must interact with the user interface l Human-computer interface (HCI)  Menu, not command line  “Point and click”  Windows, icons, pull-down menus

33 Slide 10C.84 © The McGraw-Hill Companies, 2005 Human Factors (contd) l Human factors must be taken into account  Avoid a lengthy sequence of menus  Allow the expertise level of an interface to be modified  Uniformity of appearance is important  Advanced psychology vs. common sense? l Rapid prototype of the HCI of every product is obligatory

34 Slide 10C.85 © The McGraw-Hill Companies, 2005 10.14 Reusing the Rapid Prototype l Reusing a rapid prototype is essentially code-and- fix l Changes are made to a working product  Expensive l Maintenance is hard without specification and design documents l Real-time constraints are hard to meet

35 Slide 10C.86 © The McGraw-Hill Companies, 2005 Reusing the Rapid Prototype (contd) l One way to ensure that the rapid prototype is discarded  Implement it in a different language from that of the target product l Generated code can be reused l We can safely retain (parts of) a rapid prototype if  This is prearranged  Those parts pass SQA inspections  However, this is not “classical” rapid prototyping

36 Slide 10C.87 © The McGraw-Hill Companies, 2005 10.15 CASE Tools for the Requirements Workflow l We need graphical tools for UML diagrams  To make it easy to change UML diagrams  The documentation is stored in the tool and therefore is always available l Such tools are sometimes hard to use l The diagrams may need considerable “tweaking” l Overall, the strengths outweigh the weaknesses

37 Slide 10C.88 © The McGraw-Hill Companies, 2005 CASE Tools for the Requirements Workflow (contd) l Graphical CASE environments extended to support UML include  System Architect  Software through Pictures l Object-oriented CASE environments include  Rose  Together  ArgoUML (open source)

38 Slide 10C.89 © The McGraw-Hill Companies, 2005 10.16 Metrics for the Requirements Workflow l Volatility and speed of convergence are measures of how rapidly the client’s needs are determined

39 Slide 10C.90 © The McGraw-Hill Companies, 2005 Metrics for the Requirements Workflow (contd) l The number of changes made during subsequent phases l Changes initiated by the developers  Too many changes can mean the process is flawed l Changes initiated by the client  Moving target problem

40 Slide 10C.91 © The McGraw-Hill Companies, 2005 10.17 Challenges of the Requirements Phase l Employees of the client organization often feel threatened by computerization l The requirements team members must be able to negotiate  The client’s needs may have to be scaled down l Key employees of the client organization may not have the time for essential in-depth discussions l Flexibility and objectivity are essential


Download ppt "Slide 10C.52 © The McGraw-Hill Companies, 2005 Object-Oriented and Classical Software Engineering Sixth Edition, WCB/McGraw-Hill, 2005 Stephen R. Schach."

Similar presentations


Ads by Google