CSE 331 Software Design & Implementation Dan Grossman Winter 2014 Lecture 4 - Specifications (Based on slides by Mike Ernst, Hal Perkins)

Slides:



Advertisements
Similar presentations
Automated Theorem Proving Lecture 1. Program verification is undecidable! Given program P and specification S, does P satisfy S?
Advertisements

Copyright W. Howden1 Programming by Contract CSE 111 6/4/2014.
11-Jun-14 The assert statement. 2 About the assert statement The purpose of the assert statement is to give you a way to catch program errors early The.
Cs205: engineering software university of virginia fall 2006 Specifying Procedures David Evans
Addressing the Challenges of Current Software. Questions to Address Why? What? Where? How?
Annoucements  Next labs 9 and 10 are paired for everyone. So don’t miss the lab.  There is a review session for the quiz on Monday, November 4, at 8:00.
Specifications, continued. Announcements HW1 was due today at 2 HW2 will be out tonight No class on Tuesday, class next Friday Quiz 2 today Spring 15.
1 Design by Contract Building Reliable Software. 2 Software Correctness Correctness is a relative notion  A program is correct with respect to its specification.
CSE 331 Software Design & Implementation Dan Grossman Winter 2014 Lecture 2 – Reasoning About Code With Logic 1CSE 331 Winter 2014.
Object Oriented Design An object combines data and operations on that data (object is an instance of class) data: class variables operations: methods Three.
Recursion. Objectives At the conclusion of this lesson, students should be able to Explain what recursion is Design and write functions that use recursion.
Copyright © 2006 The McGraw-Hill Companies, Inc. Programming Languages 2nd edition Tucker and Noonan Chapter 18 Program Correctness To treat programming.
CS 330 Programming Languages 09 / 16 / 2008 Instructor: Michael Eckmann.
CSC 395 – Software Engineering Lecture 21: Overview of the Term & What Goes in a Data Dictionary.
Specifications. Announcements HW1 is due Friday To submit answers, commit Error in HW1: In problem 8, part 2 z = 0 should be z = MAX_INT 2.
Specifications Liskov Chapter 9 SWE 619 Last Updated Fall 2008.
CSE 331 Software Design & Implementation Dan Grossman Fall 2014 Data Abstraction: Abstract Data Types (ADTs) (Based on slides by Mike Ernst, David Notkin,
Cs205: engineering software university of virginia fall 2006 Semantics and Specifying Procedures David Evans
Slides by Vinod Rathnam with material from Alex Mariakakis Kellen Donohue, David Mailhot, and Hal Perkins Midterm Review.
Computer Science 340 Software Design & Testing Design By Contract.
Procedure specifications CSE 331. Outline Satisfying a specification; substitutability Stronger and weaker specifications - Comparing by hand - Comparing.
REFACTORING Lecture 4. Definition Refactoring is a process of changing the internal structure of the program, not affecting its external behavior and.
CS Fall 2007 Dr. Barbara Boucher Owens. CS 2 Text –Main, Michael. Data Structures & Other Objects in Java Third Edition Objectives –Master building.
SWE 619 © Paul Ammann Procedural Abstraction and Design by Contract Paul Ammann Information & Software Engineering SWE 619 Software Construction cs.gmu.edu/~pammann/
Question of the Day  On a game show you’re given the choice of three doors: Behind one door is a car; behind the others, goats. After you pick a door,
Question of the Day  On a game show you’re given the choice of three doors: Behind one door is a car; behind the others, goats. After you pick a door,
Low-Level Detailed Design SAD (Soft Arch Design) Mid-level Detailed Design Low-Level Detailed Design Design Finalization Design Document.
23-Oct-15 Abstract Data Types. 2 Data types A data type is characterized by: a set of values a data representation, which is common to all these values,
Intermediate 2 Software Development Process. Software You should already know that any computer system is made up of hardware and software. The term hardware.
CSE 331 Software Design & Implementation Hal Perkins Autumn 2012 Specifications (Slides by Mike Ernst) 1.
(c) University of Washington15-1 CSC 143 Java List Implementation via Arrays Reading: 13.
© Paul Ammann, 2008 Design by Contract Paul Ammann CS/SWE 332.
The Software Development Process
COP4020 Programming Languages Introduction to Axiomatic Semantics Prof. Robert van Engelen.
Lists Chapter 4. 2 Chapter Contents Specifications for the ADT List Redefining the Specifications Using the ADT List Using a List Is Like Using a Vending.
ANU COMP2110 Software Design in 2003 Lecture 10Slide 1 COMP2110 Software Design in 2004 Lecture 12 Documenting Detailed Design How to write down detailed.
SEG 4110 – Advanced Software Design and Reengineering Topic T Introduction to Refactoring.
Programming Techniques Lec03 Procedural Abstraction Software Engineering Fall 2005.
SWE 4743 Abstract Data Types Richard Gesick. SWE Abstract Data Types Object-oriented design is based on the theory of abstract data types Domain.
Programming & Debugging. Key Programming Issues Modularity Modifiability Ease of Use Fail-safe programming Style Debugging.
Loop Invariants and Binary Search Chapter 4.4, 5.1.
1 CSE 331 Specifications slides created by Marty Stepp based on materials by M. Ernst, S. Reges, D. Notkin, R. Mercer, Wikipedia
Recursion. Objectives At the conclusion of this lesson, students should be able to Explain what recursion is Design and write functions that use recursion.
Today… Modularity, or Writing Functions. Winter 2016CISC101 - Prof. McLeod1.
CSE 332: C++ Exceptions Motivation for C++ Exceptions Void Number:: operator/= (const double denom) { if (denom == 0.0) { // what to do here? } m_value.
Slides by Alex Mariakakis Section 5: Midterm Review.
CSE 374 Programming Concepts & Tools Hal Perkins Fall 2015 Lecture 17 – Specifications, error checking & assert.
Modular Decomposition, Abstraction and Specifications
Recursion Version 1.0.
Chapter 3 of Programming Languages by Ravi Sethi
Design by Contract Jim Fawcett CSE784 – Software Studio
Design by Contract Jim Fawcett CSE784 – Software Studio
CSE 374 Programming Concepts & Tools
Specifications Liskov Chapter 9
CSE 331 Software Design & Implementation
CSE 143 Error Handling [Section 2.8] 3/30/98 CSE 143.
Design by Contract Fall 2016 Version.
Subroutines Idea: useful code can be saved and re-used, with different data values Example: Our function to find the largest element of an array might.
CSE 331 Software Design and Implementation
Specifications, conclusion. Abstract Data Types (ADTs)
Exam 1 Review.
Programming Languages 2nd edition Tucker and Noonan
Specifications.
CSE 331 Software Design & Implementation
IMPORTANT NOTE Some parts of these section slides deal with null ints. This was a mistake, as primitives cannot be null. These issues have been corrected.
CSE 331 Software Design & Implementation specifications
Assertions References: internet notes; Bertrand Meyer, Object-Oriented Software Construction; 4/25/2019.
Computer Science 340 Software Design & Testing
Software Specifications
Programming Languages 2nd edition Tucker and Noonan
Presentation transcript:

CSE 331 Software Design & Implementation Dan Grossman Winter 2014 Lecture 4 - Specifications (Based on slides by Mike Ernst, Hal Perkins)

2 Goals of Software System Building Building the right system –Does the program meet the user’s needs? –Determining this is usually called validation Building the system right –Does the program meet the specification? –Determining this is usually called verification CSE 331: the second goal is the focus – creating a correctly functioning artifact –Surprisingly hard to specify, design, implement, test, and debug even simple programs 2CSE 331 Winter 2014

Where we are We’ve started to see how to reason about code We’ll build on those skills in many places: –Specification: What are we supposed to build? –Design: How do we decompose the job into manageable pieces? Which designs are “better”? –Implementation: Building code that meets the specification –Testing: Systematically finding problems –Debugging: Systematically fixing problems –Maintenance: How does the artifact adapt over time? –Documentation: What do we need to know to do these things? How/where do we write that down? 3CSE 331 Winter 2014

The challenge of scaling software Small programs are simple and malleable –Easy to write –Easy to change Big programs are (often) complex and inflexible –Hard to write –Hard to change Why does this happen? –Because interactions become unmanageable How do we keep things simple and malleable? 4CSE 331 Winter 2014

A discipline of modularity Two ways to view a program: –The implementer's view (how to build it) –The client's view (how to use it) It helps to apply these views to program parts: –While implementing one part, consider yourself a client of any other parts it depends on –Try not to look at those other parts through an implementer's eyes –Helps dampen interactions between parts Formalized through the idea of a specification 5CSE 331 Winter 2014

A specification is a contract A set of requirements agreed to by the user and the manufacturer of the product –Describes their expectations of each other Facilitates simplicity via two-way isolation –Isolate client from implementation details –Isolate implementer from how the part is used –Discourages implicit, unwritten expectations Facilitates change –Reduces the “Medusa effect”: the specification, rather than the code, gets “turned to stone” by client dependencies CSE 331 Winter 20146

Isn’t the interface sufficient? The interface defines the boundary between implementers and users: public interface List { public E get(int); public void set(int, E); public void add(E); public void add(int, E); … public static boolean isSub(List, List ); } Interface provides the syntax and types But nothing about the behavior and effects –Provides too little information to clients 7CSE 331 Winter 2014

Why not just read code? static boolean sub(List src, List part) { int part_index = 0; for (T elt : src) { if (elt.equals(part.get(part_index))) { part_index++; if (part_index == part.size()) { return true; } } else { part_index = 0; } return false; } Why are you better off with a specification? 8CSE 331 Winter 2014

Code is complicated Code gives more detail than needed by client Understanding or even reading every line of code is an excessive burden –Suppose you had to read source code of Java libraries to use them –Same applies to developers of different parts of the libraries Client cares only about what the code does, not how it does it 9CSE 331 Winter 2014

Code is ambiguous Code seems unambiguous and concrete –But which details of code's behavior are essential, and which are incidental? Code invariably gets rewritten –Client needs to know what they can rely on What properties will be maintained over time? What properties might be changed by future optimization, improved algorithms, or bug fixes? –Implementer needs to know what features the client depends on, and which can be changed 10CSE 331 Winter 2014

Comments are essential Most comments convey only an informal, general idea of what that the code does: // This method checks if “part” appears as a // sub-sequence in “src” static boolean sub(List src, List part){... } Problem: ambiguity remains –What if src and part are both empty lists? –When does the function return true ? 11CSE 331 Winter 2014

From vague comments to specifications Roles of a specification: –Client agrees to rely only on information in the description in their use of the part –Implementer of the part promises to support everything in the description Otherwise is perfectly at liberty Sadly, much code lacks a specification –Clients often work out what a method/class does in ambiguous cases by running it and depending on the results –Leads to bugs and programs with unclear dependencies, reducing simplicity and flexibility 12CSE 331 Winter 2014

Recall the sublist example static boolean sub(List src, List part) { int part_index = 0; for (T elt : src) { if (elt.equals(part.get(part_index))) { part_index++; if (part_index == part.size()) { return true; } } else { part_index = 0; } return false; } 13CSE 331 Winter 2014

A more careful description of sub // Check whether “part” appears as a sub-sequence in “src” needs to be given some caveats (why?): // * src and part cannot be null // * If src is empty list, always returns false // * Results may be unexpected if partial matches // can happen right before a real match; e.g., // list (1,2,1,3) will not be identified as a // sub sequence of (1,2,1,2,1,3). or replaced with a more detailed description: // This method scans the “src” list from beginning // to end, building up a match for “part”, and // resetting that match every time that... 14CSE 331 Winter 2014

A better approach It’s better to simplify than to describe complexity! Complicated description suggests poor design –Rewrite sub to be more sensible, and easier to describe // returns true iff sequences A, B exist such that // src = A : part : B // where “:” is sequence concatenation static boolean sub(List src, List part) { Mathematical flavor not always necessary, but often helps avoid ambiguity “Declarative” style is important: avoids reciting or depending on operational/implementation details 15CSE 331 Winter 2014

Sneaky fringe benefit of specs #1 The discipline of writing specifications changes the incentive structure of coding –Rewards code that is easy to describe and understand –Punishes code that is hard to describe and understand Even if it is shorter or easier to write If you find yourself writing complicated specifications, it is an incentive to redesign –sub code that does exactly the right thing may be slightly slower than a hack that assumes no partial matches before true matches, but cost of forcing client to understand the details is too high 16CSE 331 Winter 2014

Writing specifications with Javadoc Javadoc –Sometimes can be daunting; get used to using it Javadoc convention for writing specifications –Method signature –Text description of method : description of what gets passed in : description of what gets returned : exceptions that may occur 17CSE 331 Winter 2014

Example: Javadoc for String.contains public boolean contains(CharSequence s) Returns true if and only if this string contains the specified sequence of char values. Parameters: s- the sequence to search for Returns: true if this string contains s, false otherwise Throws: NullPointerException Since: CSE 331 Winter 2014

CSE 331 specifications The precondition: constraints that hold before the method is called (if not, all bets are off) : spells out any obligations on client The postcondition: constraints that hold after the method is called (if the precondition held) : lists objects that may be affected by method; any object not listed is guaranteed to be untouched : lists possible exceptions (Javadoc uses this too) : gives guarantees on final state of modified objects : describes return value (Javadoc uses this too) 19CSE 331 Winter 2014

Example 1 static int change(List lst, T oldelt, T newelt) requires lst, oldelt, and newelt are non-null. oldelt occurs in lst. modifies lst effects change the first occurrence of oldelt in lst to newelt & makes no other changes to lst returns the position of the element in lst that was oldelt and is now newelt static int change(List lst, T oldelt, T newelt) { int i = 0; for (T curr : lst) { if (curr == oldelt) { lst.set(newelt, i); return i; } i = i + 1; } return -1; } 20CSE 331 Winter 2014

Example 2 static List zipSum(List lst1, List lst2) requires lst1 and lst2 are non-null. lst1 and lst2 are the same size. modifies none effects none returns a list of same size where the ith element is the sum of the ith elements of lst1 and lst2 static List zipSum(List lst1 List lst2) { List res = new ArrayList (); for(int i = 0; i < lst1.size(); i++) { res.add(lst1.get(i) + lst2.get(i)); } return res; } 21CSE 331 Winter 2014

Example 3 static void listAdd(List lst1, List lst2) requires lst1 and lst2 are non-null. lst1 and lst2 are the same size modifies lst1 effects ith element of lst2 is added to the ith element of lst1 returns none static void listAdd(List lst1, List lst2) { for(int i = 0; i < lst1.size(); i++) { lst1.set(i, lst1.get(i) + lst2.get(i)); } 22CSE 331 Winter 2014

Example 4 (Watch out for bugs!) static void uniquify(List lst) requires ??? ??? modifies ??? effects ??? returns ??? static void uniquify(List lst) { for (int i=0; i < lst.size()-1; i++) if (lst.get(i) == lst.get(i+1)) lst.remove(i); } 23CSE 331 Winter 2014

Should requires clause be checked? If the client calls a method without meeting the precondition, the code is free to do anything –Including pass corrupted data back –It is polite, nevertheless, to fail fast: to provide an immediate error, rather than permitting mysterious bad behavior Preconditions are common in “helper” methods/classes –In public libraries, it’s friendlier to deal with all possible input –Example: binary search would normally impose a pre- condition rather than simply failing if list is not sorted. Why? Rule of thumb: Check if cheap to do so –Example: list has to be non-null  check –Example: list has to be sorted  skip 24CSE 331 Winter 2014

Satisfaction of a specification Let M be an implementation and S a specification M satisfies S if and only if –Every behavior of M is permitted by S –“The behavior of M is a subset of S” The statement “M is correct” is meaningless! –Though often made! If M does not satisfy S, either (or both!) could be “wrong” –“One person’s feature is another person’s bug.” –Usually better to change the program than the spec 25CSE 331 Winter 2014

Sneaky fringe benefit of specs #2 Specification means that client doesn't need to look at implementation –So the code may not even exist yet! Write specifications first, make sure system will fit together, and then assign separate implementers to different modules –Allows teamwork and parallel development –Also helps with testing (future topic) 26CSE 331 Winter 2014

Comparing specifications Occasionally, we need to compare different versions of a specification (Why?) –For that, talk about “weaker” and “stronger” specifications A weaker specification gives greater freedom to the implementer –If specification S 1 is weaker than S 2, then for any implementation M, M satisfies S 2 => M satisfies S 1 but the opposite implication does not hold in general Given two specifications, they may be incomparable –Neither is weaker/stronger than the other –Some implementations might still satisfy them both 27CSE 331 Winter 2014

Why compare specifications? We wish to relate procedures to specifications –Does the procedure satisfy the specification? –Has the implementer succeeded? We wish to compare specifications to one another –Which specification (if either) is stronger? –A procedure satisfying a stronger specification can be used anywhere that a weaker specification is required Substitutability principle CSE 331 Winter

Example 1 int find(int[] a, int value) { for (int i=0; i<a.length; i++) { if (a[i]==value) return i; } return -1; } Specification A –requires: value occurs in a –returns: i such that a[i] = value Specification B –requires: value occurs in a –returns: smallest i such that a[i] = value 29CSE 331 Winter 2014

Example 2 int find(int[] a, int value) { for (int i=0; i<a.length; i++) { if (a[i]==value) return i; } return -1; } Specification A –requires: value occurs in a –returns: i such that a[i] = value Specification C –returns: i such that a[i]=value, or -1 if value is not in a 30CSE 331 Winter 2014

Stronger and weaker specifications A stronger specification is –Harder to satisfy (more constraints on the implementation) –Easier to use (more guarantees, more predictable, client can make more assumptions) A weaker specification is –Easier to satisfy (easier to implement, more implementations satisfy it) –Harder to use (makes fewer guarantees) 31CSE 331 Winter 2014

Strengthening a specification Strengthen a specification by: –Promising more – any or all of: Effects clause harder to satisfy Returns clause harder to satisfy Fewer objects in modifies clause Fewer possible exceptions –Asking less of client Requires clause easier to satisfy Weaken a specification by: –(Opposite of everything above) 32CSE 331 Winter 2014

Which is better? Stronger does not always mean better! Weaker does not always mean better! Strength of specification trades off: –Usefulness to client –Ease of simple, efficient, correct implementation –Promotion of reuse and modularity –Clarity of specification itself “It depends” CSE 331 Winter

More formal stronger/weaker A specification is a logical formula –S1 stronger than S2 if S1 implies S2 –From implication all things follows: Example: S1 stronger if requires is weaker Example: S1 stronger if returns is stronger As in all logic (cf. CSE311), two rigorous ways to check implication –Convert entire specifications to logical formulas and use logic rules to check implication (e.g., P1  P2  P2) –Check every behavior described by stronger also described by the other CSE311: truth tables CSE331: transition relations CSE 331 Winter

Transition relations There is a program state before a method call and after –All memory, values of all parameters/result, whether exception happened, etc. A specification “means” a set of pairs of program states –The legal pre/post-states –This is the transition relation defined by the spec Could be infinite Could be multiple legal outputs for same input Stronger specification means the transition relation is a subset Note: Transition relations often are infinite in size CSE 331 Winter