Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to...

31
Design Patterns: Singleton and Iterator EECS3311: Software Design Fall 2017 CHEN-WEI WANG

Transcript of Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to...

Page 1: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Design Patterns:Singleton and Iterator

EECS3311: Software DesignFall 2017

CHEN-WEI WANG

Page 2: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

What are design patterns?

● Solutions to problems that arise when software is beingdeveloped within a particular context.○ Heuristics for structuring your code so that it can be systematically

maintained and extended.○ Caveat : A pattern is only suitable for a particular problem.○ Therefore, always understand problems before solutions!

2 of 31

Page 3: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Singleton Pattern: Motivation

Consider two problems:

1. Bank accounts share a set of data.e.g., interest and exchange rates, minimum and maximumbalance, etc.

2. Processes are regulated to access some shared, limitedresources.

3 of 31

Page 4: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Shared Data through Inheritance

Client:class DEPOSIT inherit SHARED_DATA

. . .end

class WITHDRAW inherit SHARED_DATA. . .

end

class ACCOUNT inherit SHARED_DATAfeature

deposits: DEPOSIT_LISTwithdraws: WITHDRAW_LIST. . .

end

Supplier:classSHARED_DATA

featureinterest_rate: REALexchange_rate: REALminimum_balance: INTEGERmaximum_balance: INTEGER. . .

end

Problems?

4 of 31

Page 5: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Sharing Data through Inheritance:Architecture

○ Irreverent features are inherited, breaking descendants’ cohesion.○ Same set of data is duplicated as instances are created.5 of 31

Page 6: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Sharing Data through Inheritance: Limitation

● Each instance at runtime owns a separate copy of the shareddata.

● This makes inheritance not an appropriate solution for bothproblems:○ What if the interest rate changes? Apply the change to all

instantiated account objects?○ An update to the global lock must be observable by all regulatedprocesses.

Solution:○ Separate notions of data and its shared access in two separateclasses.○ Encapsulate the shared access itself in a separate class.

6 of 31

Page 7: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Introducing the Once Routine in Eiffel (1.1)1 class A2 create make3 feature -- Constructor4 make do end5 feature -- Query6 new_once_array (s: STRING): ARRAY[STRING]7 -- A once query that returns an array.8 once

9 create {ARRAY[STRING]} Result.make_empty10 Result.force (s, Result.count + 1)11 end12 new_array (s: STRING): ARRAY[STRING]13 -- An ordinary query that returns an array.14 do

15 create {ARRAY[STRING]} Result.make_empty16 Result.force (s, Result.count + 1)17 end18 end

L9 & L10 executed only once for initialization.L15 & L16 executed whenever the feature is called.

7 of 31

Page 8: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Introducing the Once Routine in Eiffel (1.2)

1 test_query: BOOLEAN2 local3 a: A4 arr1, arr2: ARRAY[STRING]5 do6 create a.make78 arr1 := a.new_array ("Alan")9 Result := arr1.count = 1 and arr1[1] ∼ "Alan"

10 check Result end1112 arr2 := a.new_array ("Mark")

13 Result := arr2.count = 1 and arr2[1] ∼ "Mark"14 check Result end1516 Result := not (arr1 = arr2)17 check Result end18 end

8 of 31

Page 9: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Introducing the Once Routine in Eiffel (1.3)

1 test_once_query: BOOLEAN2 local3 a: A4 arr1, arr2: ARRAY[STRING]5 do6 create a.make78 arr1 := a.new_once_array ("Alan")9 Result := arr1.count = 1 and arr1[1] ∼ "Alan"

10 check Result end1112 arr2 := a.new_once_array ("Mark")

13 Result := arr2.count = 1 and arr2[1] ∼ "Alan"14 check Result end1516 Result := arr1 = arr217 check Result end18 end

9 of 31

Page 10: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Introducing the Once Routine in Eiffel (2)r (. . .): T

once-- Some computations on Result. . .

end

● The ordinary do . . . end is replaced by once . . . end.● The first time the once routine r is called by some client, itexecutes the body of computations and returns the computedresult.● From then on, the computed result is “cached”.● In every subsequent call to r , possibly by different clients, thebody of r is not executed at all; instead, it just returns the“cached” result, which was computed in the very first call.● How does this help us?Cache the reference to the same shared object!

10 of 31

Page 11: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Introducing the Once Routine in Eiffel (3)● In Eiffel, the once routine:○ Initializes its return value Result by some computation.○ The initial computation is invoked only once.○ Resulting value from the initial computation is cached and returned

for all later calls to the once routine.● Eiffel once routines are different from Java static accessorsIn Java, a static accessor● Does not have its computed return value “cached”● Has its computation performed freshly on every invocation

● Eiffel once routines are different from Java static attributesIn Java, a static attribute● Is a value on storage● May be initialized via some simple expression

e.g., static int counter = 20;but cannot be initialized via some sophisticated computation.● Note. By putting such initialization computation in a constructor, therewould be a fresh computation whenever a new object is created.

11 of 31

Page 12: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Singleton Pattern in Eiffel

Supplier:class BANK_DATAcreate {BANK_DATA_ACCESS} makefeature {BANK_DATA_ACCESS}make do . . . end

feature -- Data Attributesinterest_rate: REALset_interest_rate (r: REAL)

end

expanded classBANK_DATA_ACCESS

featuredata: BANK_DATA

-- The one and only accessonce create Result.make end

invariant data = data

Client:classACCOUNT

featuredata: BANK_DATAmake (. . .)

-- Init. access to bank data.localdata_access: BANK_DATA_ACCESS

dodata := data_access.data. . .

endend

Writing create data.make inclient’s make feature does notcompile. Why?

12 of 31

Page 13: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Testing Singleton Pattern in Eiffel

test_bank_shared_data: BOOLEAN-- Test that a single data object is manipulated

localacc1, acc2: ACCOUNT

docomment("t1: test that a single data object is shared")create acc1.make ("Bill")create acc2.make ("Steve")

Result := acc1.data ∼ acc2.datacheck Result end

Result := acc1.data = acc2.datacheck Result end

acc1.data.set_interest_rate (3.11)Result := acc1.data.interest_rate = acc2.data.interest_rate

end

13 of 31

Page 14: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Singleton Pattern: Architecture

DATA_ACCESS +

data: DATA -- A shared data object. once create Result.make end

Invariantshared_instance: data = data

DATA +

data +

DATA_ACCESS

v: VALUE -- An example query.c -- An example command.

make - - Initialize a data object.

CLIENT_1

APPLICATION_2 +

CLIENT_2

APPLICATION_3 +

CLIENT_3

SUPPLIER_OF_SHARED_DATAAPPLICATION_1 +

Important Exercises: Instantiate this architecture to bothproblems of shared bank data and shared lock. Draw them indraw.io.

14 of 31

Page 15: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern: Motivation

Supplier:classCART

featureorders: ARRAY [ORDER]

end

classORDER

featureprice: INTEGERquantity: INTEGER

end

Problems?

Client:classSHOP

featurecart: CARTcheckout: INTEGERdofromi := cart.orders.lower

untili > cart.orders.upper

doResult := Result +cart.orders[i].price*cart.orders[i].quantity

i := i + 1end

endend

15 of 31

Page 16: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern: Architecture

new_cursor*: ITERATION_CURSOR[G] -- Fresh cursor associated with current structure. ! Result ≠ Void item*: G

-- Item at current cursor position. ? valid_position: not after

forth* -- Move to next position. ? valid_position: not after

after*: BOOLEAN -- Are there no more items to iterate over?

ITERABLE *

new_cursor*

ITERATION_CURSOR[G] *CLIENT_APPLICATION+

container+increase_balance(v: INTEGER; name: STRING) -- Increase the balance for account with owner name . ? across container as cur all cur.item.balance ≥ v end ! across old container.deep_twin as cur all (cur.item.owner ~ name implies cur.item.balance = old cur.item.balance + v) and (cur.item.owner ~ name implies cur.item.balance = old cur.item.balance) end

container: ITERABLE+ -- Fresh cursor of the container.

some_account_negative: BOOLEAN -- Is there some account negative? ! Result = across container as cur some cur.item.balance < v end

INDEXABLE_ITERATION_CURSOR[G] +

new_cursor+

after+: BOOLEAN -- Are there no more items to iterate over?

item+: G -- Item at current cursor position.

forth+ -- Move to next position.

start+ -- Move to first position.

CLIENT SUPPLIER

ARRAY[G] +

LINKED_LIST[G] + ARRAYED_LIST[G] +

ITERABLE_COLLECTION

16 of 31

Page 17: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern: Supplier’s Side

● Information hiding: changing the secret, internal workings ofdata structures should not affect any existing clients.

e.g., changing from ARRAY to LINKED LIST in the CART class● Steps:

1. Let the supplier class inherit from the deferred classITERABLE[G] .

2. This forces the supplier class to implement the inherited feature:new cursor: ITERATION CURSOR [G] , where the type parameterG may be instantiated (e.g., ITERATION CURSOR[ORDER]).

2.1 If the internal, library data structure is already iterablee.g., imp: ARRAY[ORDER], then simply return imp.new cursor.

2.2 Otherwise, say imp: MY TREE[ORDER], then create a new classMY TREE ITERATION CURSOR that inherits fromITERATION CURSOR[ORDER] , then implement the 3 inheritedfeatures after , item, and forth accordingly.

17 of 31

Page 18: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern: Supplier’s Implementation (1)

classCART

inheritITERABLE[ORDER]

. . .

feature {NONE} -- Information Hidingorders: ARRAY[ORDER]

feature -- Iterationnew_cursor: ITERATION_CURSOR[ORDER]doResult := orders.new_cursor

end

When the secrete implementation is already iterable, reuse it!

18 of 31

Page 19: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern: Supplier’s Imp. (2.1)

classGENERIC_BOOK[G]

inheritITERABLE[ TUPLE[STRING, G] ]

. . .feature {NONE} -- Information Hidingnames: ARRAY[STRING]records: ARRAY[G]

feature -- Iterationnew_cursor: ITERATION_CURSOR[ TUPLE[STRING, G] ]localcursor: MY ITERATION CURSOR[G]

docreate cursor.make (names, records)Result := cursor

end

No Eiffel library support for iterable arrays⇒ Implement it yourself!

19 of 31

Page 20: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern: Supplier’s Imp. (2.2)classMY_ITERATION_CURSOR[G]

inheritITERATION_CURSOR[ TUPLE[STRING, G] ]

feature -- Constructormake (ns: ARRAY[STRING]; rs: ARRAY[G])do . . . end

feature {NONE} -- Information Hidingi: cursor_positionnames: ARRAY[STRING]records: ARRAY[G]

feature -- Cursor Operationsitem: TUPLE[STRING, G]do . . . end

after: Booleando . . . end

forthdo . . . end

You need to implement the three inherited features:item, after, and forth.

20 of 31

Page 21: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Exercises

1. Draw the BON diagram showing how the iterator pattern isapplied to the CART (supplier) and SHOP (client) classes.

2. Draw the BON diagram showing how the iterator pattern isapplied to the supplier classes:○ GENERIC BOOK (a descendant of ITERABLE) and○ MY ITERATION CURSOR (a descendant of

ITERATION CURSOR).

21 of 31

Page 22: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern: Client’s Side

Information hiding: the clients do not at all depend on how thesupplier implements the collection of data; they are only interestedin iterating through the collection in a linear manner.Steps:

1. Obey the code to interface, not to implementation principle.2. Let the client declare an attribute of type ITERABLE[G] (rather

than ARRAY, LINKED LIST, or MY TREE).e.g., cart: CART, where CART inherits ITERATBLE[ORDER]

3. Eiffel supports, in both implementation and contracts, theacross syntax for iterating through anything that’s iterable.

22 of 31

Page 23: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern:Clients using across for Contracts (1)classCHECKER

feature -- Attributescollection: ITERABLE [INTEGER]

feature -- Queriesis all positive: BOOLEAN

-- Are all items in collection positive?do. . .

ensureacrosscollection as cursor

allcursor.item > 0

endend

● Using all corresponds to a universal quantification (i.e., ∀).● Using some corresponds to an existential quantification (i.e., ∃).23 of 31

Page 24: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern:Clients using across for Contracts (2)class BANK. . .accounts: LIST [ACCOUNT]binary_search (acc_id: INTEGER): ACCOUNT

-- Search on accounts sorted in non-descending order.requireacross1 |..| (accounts.count - 1) as cursor

allaccounts [cursor.item].id <= accounts [cursor.item + 1].id

enddo. . .

ensureResult.id = acc_id

end

This precondition corresponds to:∀i ∶ INTEGER � 1 ≤ i < accounts.count ● accounts[i].id ≤ accounts[i +1].id

24 of 31

Page 25: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern:Clients using across for Contracts (3)class BANK. . .accounts: LIST [ACCOUNT]contains_duplicate: BOOLEAN

-- Does the account list contain duplicate?do. . .

ensure∀i, j ∶ INTEGER �1 ≤ i ≤ accounts.count ∧ 1 ≤ j ≤ accounts.count ●

accounts[i] ∼ accounts[j]⇒ i = jend

● Exercise: Convert this mathematical predicate forpostcondition into Eiffel.● Hint: Each across construct can only introduce one dummyvariable, but you may nest as many across constructs asnecessary.

25 of 31

Page 26: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern:Clients using Iterable in Imp. (1)class BANKaccounts: ITERABLE [ACCOUNT]max_balance: ACCOUNT

-- Account with the maximum balance value.require ??localcursor: ITERATION_CURSOR[ACCOUNT]; max: ACCOUNT

dofrom max := accounts [1]; cursor := accounts. new cursor

until cursor. afterdoif cursor. item .balance > max.balance thenmax := cursor. item

endcursor. forth

endensure ??end

26 of 31

Page 27: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern:Clients using Iterable in Imp. (2)

1 class SHOP2 cart: CART3 checkout: INTEGER4 -- Total price calculated based on orders in the cart.5 require ??6 local7 order: ORDER8 do9 across

10 cart as cursor11 loop12 order := cursor. item13 Result := Result + order.price * order.quantity14 end15 ensure ??16 end

● Class CART should inherit from ITERABLE[ORDER] .● L10 implicitly declares: cursor: ITERATION CURSOR[ORDER]27 of 31

Page 28: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Iterator Pattern:Clients using Iterable in Imp. (3)class BANKaccounts: ITERABLE [ACCOUNT]max_balance: ACCOUNT

-- Account with the maximum balance value.require ??localmax: ACCOUNT

domax := accounts [1]acrossaccounts as cursorloop

if cursor.item.balance > max.balance thenmax := cursor. item

endend

ensure ??end

28 of 31

Page 29: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Index (1)What are design patterns?Singleton Pattern: MotivationShared Data through InheritanceSharing Data through Inheritance: ArchitectureSharing Data through Inheritance: LimitationIntroducing the Once Routine in Eiffel (1.1)Introducing the Once Routine in Eiffel (1.2)Introducing the Once Routine in Eiffel (1.3)Introducing the Once Routine in Eiffel (2)Introducing the Once Routine in Eiffel (3)Singleton Pattern in EiffelTesting Singleton Pattern in EiffelSingleton Pattern: ArchitectureIterator Pattern: Motivation

29 of 31

Page 30: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Index (2)Iterator Pattern: ArchitectureIterator Pattern: Supplier’s SideIterator Pattern: Supplier’s Implementation (1)Iterator Pattern: Supplier’s Imp. (2.1)Iterator Pattern: Supplier’s Imp. (2.2)ExercisesIterator Pattern: Client’s SideIterator Pattern:Clients using across for Contracts (1)Iterator Pattern:Clients using across for Contracts (2)Iterator Pattern:Clients using across for Contracts (3)Iterator Pattern:Clients using Iterable in Imp. (1)

30 of 31

Page 31: Design Patterns: Singleton and Iteratorjackie/teaching/...What are design patterns? Solutions to problems that arise when software is being developed within a particular context. Heuristics

Index (3)Iterator Pattern:Clients using Iterable in Imp. (2)

Iterator Pattern:Clients using Iterable in Imp. (3)

31 of 31