software life cycle chapter 12 outline
play

Software Life Cycle Chapter 12, Outline Software Life Cycle - PDF document

Object-Oriented Software Engineering Conquering Complex and Changing Systems Software Life Cycle Chapter 12, Outline Software Life Cycle Waterfall model and its problems Pure Waterfall Model V-Model Sawtooth Model


  1. Object-Oriented Software Engineering Conquering Complex and Changing Systems Software Life Cycle Chapter 12,

  2. Outline ♦ Software Life Cycle � Waterfall model and its problems � Pure Waterfall Model � V-Model � Sawtooth Model � Alternative process models � Boehm’s Spiral Model � Issue-based Development Model (Concurrent Development) ♦ Process Maturity Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 2

  3. Inherent Problems with Software Development ♦ Requirements are complex � The client usually does not know all the functional requirements in advance ♦ Requirements may be changing � Technology enablers introduce new possibilities to deal with nonfunctional requirements ♦ Frequent changes are difficult to manage � Identifying milestones and cost estimation is difficult ♦ There is more than one software system � New system must often be backward compatible with existing system (“legacy system”) � Phased development: Need to distinguish between the system under development and already released systems Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 3

  4. Definitions ♦ Software lifecycle modeling: Attempt to deal with complexity and change ♦ Software lifecycle: � Set of activities and their relationships to each other to support the development of a software system ♦ Software development methodology: � A collection of techniques for building models - applied across the software lifecycle Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 4

  5. Software Life Cycle ♦ Software construction goes through a progression of states Conception Adulthood Childhood Retirement Childhood Post- Pre- Development Development Development Development Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 5

  6. Typical Software Lifecycle Questions ♦ Which activities should I select for the software project? ♦ What are the dependencies between activities? � Does system design depend on analysis? Does analysis depend on design? ♦ How should I schedule the activities? � Should analysis precede design? � Can analysis and design be done in parallel? � Should they be done iteratively? Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 6

  7. Possible Identification of Software Development Activities Requirements Analysis What is the problem? Problem Problem Domain Domain System Design What is the solution? What are the mechanisms that best implement the Program Design solution? Implementation How is the solution Implementation Program Implementation constructed? Domain Domain Is the problem solved? Testing Can the customer use the solution? Delivery Are enhancements needed? Maintenance Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 7

  8. Alternative Identification of Software Development Activities Requirements Analysis What is the problem? Problem Domain What is the solution? System Design What is the solution in the context Object Design of an existing hardware system? Implementation Domain Implementation How is the solution constructed? Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 8

  9. Software Development as Application Domain: A Use Case Model Software development <<include>> <<include>> <<include>> Problem definition System development System operation Client Project manager Developer Administrator End user Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 9

  10. Software Development as Application Domain: Simple Object Model Software Development Object Design Problem Statement Document Requirements Analysis Executable system Document System Design Test Manual Document Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 10

  11. Software life cycle Object Model of the Software Life Cycle * Process group * Process * Phase * Work Product produces * consumes Activity Task * Resource Participant Time Money Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 11

  12. IEEE Std 1074: Standard for Software Lifecycle Process Group IEEE Std 1074 IEEE Std 1074 Cross- Cross- Develop- Pre- Post- Project Develop- Pre- Post- Project Development Development ment Development Development Management ment Development Development Management (Integral Processes) (Integral Processes) > Project Initiation > Requirements > V & V > Installation > Concept >Project Monitoring Analysis > Configuration > Operation & Exploration &Control > Design Management Support > System > Software Quality > Implemen- > Documen- > Maintenance Allocation Management tation tation > Retirement > Training Processes Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 12

  13. Processes, Activities and Tasks ♦ Process Group: Consists of Set of Processes ♦ Process: Consists of Activities ♦ Activity: Consists of sub activities and tasks Process Development Process Development Group Group Process Design Process Design Design Design Activity Activity Database Database Make a Make a Task Task Purchase Purchase Recommendation Recommendation Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 13

  14. Example ♦ The Design Process is part of Development ♦ The Design Process consists of the following Activities � Perform Architectural Design � Design Database (If Applicable) � Design Interfaces � Select or Develop Algorithms (If Applicable) � Perform Detailed Design (= Object Design) ♦ The Design Database Activity has the following Tasks � Review Relational Databases � Review Object-Oriented Databases � Make a Purchase recommendation � .... Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 14

  15. Modeling Dependencies in a Software Lifecycle Problem System System definition development operation activity activity activity System development activity System upgrade activity Market creation activity • Note that the dependency association can mean one of two things: • Activity B depends on Activity A • Activity A must temporarily precede Activity B • Which one is right ? Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 15

  16. Life-Cycle Model: Variations on a Theme ♦ Many models have been proposed to deal with the problems of defining activities and associating them with each other ♦ The waterfall model � First described by Royce in 1970 ♦ There seem to be at least as many versions as there are authorities - perhaps more Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 16

  17. Project Initiation The Waterfall Model of the Process Concept Software Life Cycle Exploration Process System Allocation Process Requirements Process Design Process Implementation Process Verification & Validation Process Installation Process Operation & Support Process Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 17

  18. Problems with Waterfall Model ♦ Managers love waterfall models: � Nice milestones � No need to look back (linear system), one activity at a time � Easy to check progress : 90% coded, 20% tested ♦ Different stakeholders need different abstractions � => V-Model ♦ Software development is iterative � During design problems with requirements are identified � During coding, design and requirement problems are found � During testing, coding, design& requirement errors are found � => Spiral Model ♦ System development is a nonlinear activity � => Issue-Based Model Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 18

  19. V Model: Distinguishes between Development and Verification Activities Client’s Understanding Level of Detail Developer’s Understanding Requirements Acceptance Low Elicitation Testing Problem with V-Model: Client’s Perception is the same as the Developer’s Perception System Analysis Testing Design Integration Testing Object Design Unit Testing High Project Time Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 19

  20. Client’s Understanding Sawtooth Model Developer’s Understanding Client Requirements Prototype Prototype Client Elicitation Demonstration 1 Demonstration 2 Acceptance Developer System Integration & Test Requirements Analysis Integration & Test System Design Object Unit Test Design Implementation Bernd Bruegge & Allen Dutoit Object-Oriented Software Engineering: Conquering Complex and Changing Systems 20

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend