Automatic generation produced by ISE Eiffel
indexing description: "[ Sequential, dynamically modifiable lists, without commitment to a particular representation ]" status: "See notice at end of class" names: dynamic_list, sequence access: index, cursor, membership contents: generic date: "$Date: 2001/11/16 20:34:19 $" revision: "$Revision: 1.1.1.1 $" deferred class DYNAMIC_LIST [G] feature -- Access cursor: CURSOR is -- Current cursor position -- (from CURSOR_STRUCTURE) deferred end first: like item is -- Item at first position -- (from CHAIN) require -- from CHAIN not_empty: not is_empty local pos: CURSOR do pos := cursor start Result := item go_to (pos) end has (v: like item): BOOLEAN is -- Does chain include v? -- (Reference or object equality, -- based on object_comparison.) -- (from CHAIN) local pos: CURSOR do pos := cursor Result := sequential_has (v) go_to (pos) ensure -- from CONTAINER not_found_in_empty: Result implies not is_empty end i_th (i: INTEGER): like item is -- Item at i-th position -- Was declared in CHAIN as synonym of @. -- (from CHAIN) require -- from TABLE valid_key: valid_index (k) local pos: CURSOR do pos := cursor go_i_th (i) Result := item go_to (pos) end index: INTEGER is -- Current cursor index -- (from CHAIN) deferred end index_of (v: like item; i: INTEGER): INTEGER is -- Index of i-th occurrence of item identical to v. -- (Reference or object equality, -- based on object_comparison.) -- 0 if none. -- (from CHAIN) require -- from LINEAR positive_occurrences: i > 0 local pos: CURSOR do pos := cursor Result := sequential_index_of (v, i) go_to (pos) ensure -- from LINEAR non_negative_result: Result >= 0 end item: G is -- Item at current position -- (from TRAVERSABLE) require -- from TRAVERSABLE not_off: not off require -- from ACTIVE readable: readable deferred end last: like item is -- Item at last position -- (from CHAIN) require -- from CHAIN not_empty: not is_empty local pos: CURSOR do pos := cursor finish Result := item go_to (pos) end sequential_occurrences (v: G): INTEGER is -- Number of times v appears. -- (Reference or object equality, -- based on object_comparison.) -- (from LINEAR) do from start search (v) until exhausted loop Result := Result + 1 forth search (v) end ensure -- from BAG non_negative_occurrences: Result >= 0 end infix "@" (i: INTEGER): like item is -- Item at i-th position -- Was declared in CHAIN as synonym of i_th. -- (from CHAIN) require -- from TABLE valid_key: valid_index (k) local pos: CURSOR do pos := cursor go_i_th (i) Result := item go_to (pos) end feature {NONE} -- Access sequential_has (v: like item): BOOLEAN is -- Does structure include an occurrence of v? -- (Reference or object equality, -- based on object_comparison.) -- (from LINEAR) do start if not off then search (v) end Result := not exhausted ensure -- from CONTAINER not_found_in_empty: Result implies not is_empty end sequential_index_of (v: like item; i: INTEGER): INTEGER is -- Index of i-th occurrence of v. -- 0 if none. -- (Reference or object equality, -- based on object_comparison.) -- (from LINEAR) require -- from LINEAR positive_occurrences: i > 0 local occur, pos: INTEGER do if object_comparison and v /= void then from start pos := 1 until off or (occur = i) loop if item /= void and then v.is_equal (item) then occur := occur + 1 end forth pos := pos + 1 end else from start pos := 1 until off or (occur = i) loop if item = v then occur := occur + 1 end forth pos := pos + 1 end end if occur = i then Result := pos - 1 end ensure -- from LINEAR non_negative_result: Result >= 0 end sequential_search (v: like item) is -- Move to first position (at or after current -- position) where item and v are equal. -- (Reference or object equality, -- based on object_comparison.) -- If no such position ensure that exhausted will be true. -- (from LINEAR) do if object_comparison and v /= void then from until exhausted or else (item /= void and then v.is_equal (item)) loop forth end else from until exhausted or else v = item loop forth end end ensure -- from LINEAR object_found: (not exhausted and object_comparison) implies equal (v, item) item_found: (not exhausted and not object_comparison) implies v = item end feature -- Measurement count: INTEGER is -- Number of items -- (from FINITE) deferred end index_set: INTEGER_INTERVAL is -- Range of acceptable indexes -- (from CHAIN) do create Result.make (1, count) ensure -- from INDEXABLE not_void: Result /= void ensure then -- from CHAIN count_definition: Result.count = count end occurrences (v: like item): INTEGER is -- Number of times v appears. -- (Reference or object equality, -- based on object_comparison.) -- (from CHAIN) local pos: CURSOR do pos := cursor Result := sequential_occurrences (v) go_to (pos) ensure -- from BAG non_negative_occurrences: Result >= 0 end occurrences (v: like item): INTEGER is -- Number of times v appears. -- (Reference or object equality, -- based on object_comparison.) -- (from CHAIN) local pos: CURSOR do pos := cursor Result := sequential_occurrences (v) go_to (pos) ensure -- from BAG non_negative_occurrences: Result >= 0 end feature -- Comparison is_equal (other: like Current): BOOLEAN is -- Does other contain the same elements? -- (from LIST) require -- from ANY other_not_void: other /= void local c1, c2: CURSOR do if Current = other then Result := True else Result := (is_empty = other.is_empty) and (object_comparison = other.object_comparison) if Result and not is_empty then c1 ?= cursor c2 ?= other.cursor check cursors_exist: c1 /= void and c2 /= void end from start other.start until after or not Result loop if object_comparison then Result := equal (item, other.item) else Result := (item = other.item) end forth other.forth end go_to (c1) other.go_to (c2) elseif is_empty and other.is_empty and object_comparison = other.object_comparison then Result := True end end ensure -- from ANY symmetric: Result implies other.is_equal (Current) consistent: standard_is_equal (other) implies Result ensure then -- from LIST indices_unchanged: index = old index and other.index = old other.index true_implies_same_size: Result implies count = other.count end feature -- Status report after: BOOLEAN is -- Is there no valid cursor position to the right of cursor? -- (from LIST) do Result := (index = count + 1) end before: BOOLEAN is -- Is there no valid cursor position to the left of cursor? -- (from LIST) do Result := (index = 0) end changeable_comparison_criterion: BOOLEAN is -- May object_comparison be changed? -- (Answer: yes by default.) -- (from CONTAINER) do Result := True end empty: BOOLEAN is obsolete "ELKS 2000: Use `is_empty' instead" -- Is there no element? -- (from CONTAINER) do Result := is_empty end exhausted: BOOLEAN is -- Has structure been completely explored? -- (from LINEAR) do Result := off ensure -- from LINEAR exhausted_when_off: off implies Result end Extendible: BOOLEAN is True -- May new items be added? (Answer: yes.) -- (from DYNAMIC_CHAIN) full: BOOLEAN is -- Is structure filled to capacity? -- (from BOX) deferred end is_empty: BOOLEAN is -- Is structure empty? -- (from FINITE) do Result := (count = 0) end is_inserted (v: G): BOOLEAN is -- Has v been inserted by the most recent insertion? -- (By default, the value returned is equivalent to calling -- `has (v)'. However, descendants might be able to provide more -- efficient implementations.) -- (from COLLECTION) do Result := has (v) end isfirst: BOOLEAN is -- Is cursor at first position? -- (from CHAIN) do Result := not is_empty and (index = 1) ensure -- from CHAIN valid_position: Result implies not is_empty end islast: BOOLEAN is -- Is cursor at last position? -- (from CHAIN) do Result := not is_empty and (index = count) ensure -- from CHAIN valid_position: Result implies not is_empty end object_comparison: BOOLEAN -- Must search operations use equal rather than = -- for comparing references? (Default: no, use =.) -- (from CONTAINER) off: BOOLEAN is -- Is there no current item? -- (from CHAIN) do Result := (index = 0) or (index = count + 1) end prunable: BOOLEAN is -- May items be removed? (Answer: yes.) -- (from DYNAMIC_CHAIN) do Result := True end readable: BOOLEAN is -- Is there a current item that may be read? -- (from SEQUENCE) do Result := not off end valid_cursor (p: CURSOR): BOOLEAN is -- Can the cursor be moved to position p? -- (from CURSOR_STRUCTURE) deferred end valid_cursor_index (i: INTEGER): BOOLEAN is -- Is i correctly bounded for cursor movement? -- (from CHAIN) do Result := (i >= 0) and (i <= count + 1) ensure -- from CHAIN valid_cursor_index_definition: Result = ((i >= 0) and (i <= count + 1)) end valid_index (i: INTEGER): BOOLEAN is -- Is i within allowable bounds? -- (from CHAIN) do Result := (i >= 1) and (i <= count) ensure then -- from INDEXABLE only_if_in_index_set: Result implies ((i >= index_set.lower) and (i <= index_set.upper)) ensure then -- from CHAIN valid_index_definition: Result = ((i >= 1) and (i <= count)) end writable: BOOLEAN is -- Is there a current item that may be modified? -- (from SEQUENCE) do Result := not off end feature -- Status setting compare_objects is -- Ensure that future search operations will use equal -- rather than = for comparing references. -- (from CONTAINER) require -- from CONTAINER changeable_comparison_criterion do object_comparison := True ensure -- from CONTAINER object_comparison end compare_references is -- Ensure that future search operations will use = -- rather than equal for comparing references. -- (from CONTAINER) require -- from CONTAINER changeable_comparison_criterion do object_comparison := False ensure -- from CONTAINER reference_comparison: not object_comparison end feature -- Cursor movement back is -- Move to previous position. -- (from BILINEAR) require -- from BILINEAR not_before: not before deferred end finish is -- Move cursor to last position. -- (No effect if empty) -- (from CHAIN) do if not is_empty then go_i_th (count) end ensure then -- from CHAIN at_last: not is_empty implies islast end forth is -- Move to next position; if no next position, -- ensure that exhausted will be true. -- (from LINEAR) require -- from LINEAR not_after: not after deferred ensure then -- from LIST moved_forth: index = old index + 1 end go_i_th (i: INTEGER) is -- Move cursor to i-th position. -- (from CHAIN) require -- from CHAIN valid_cursor_index: valid_cursor_index (i) do move (i - index) ensure -- from CHAIN position_expected: index = i end go_to (p: CURSOR) is -- Move cursor to position p. -- (from CURSOR_STRUCTURE) require -- from CURSOR_STRUCTURE cursor_position_valid: valid_cursor (p) deferred end move (i: INTEGER) is -- Move cursor i positions. The cursor -- may end up off if the absolute value of i -- is too big. -- (from CHAIN) local counter, pos, final: INTEGER do if i > 0 then from until (counter = i) or else off loop forth counter := counter + 1 end elseif i < 0 then final := index + i; if final <= 0 then start; back else from start pos := 1 until pos = final loop forth pos := pos + 1 end end end ensure -- from CHAIN too_far_right: (old index + i > count) implies exhausted too_far_left: (old index + i < 1) implies exhausted expected_index: (not exhausted) implies (index = old index + i) end search (v: like item) is -- Move to first position (at or after current -- position) where item and v are equal. -- If structure does not include v ensure that -- exhausted will be true. -- (Reference or object equality, -- based on object_comparison.) -- (from BILINEAR) do if before and not is_empty then forth end sequential_search (v) ensure -- from LINEAR object_found: (not exhausted and object_comparison) implies equal (v, item) item_found: (not exhausted and not object_comparison) implies v = item end start is -- Move cursor to first position. -- (No effect if empty) -- (from CHAIN) do if not is_empty then go_i_th (1) end ensure then -- from CHAIN at_first: not is_empty implies isfirst end feature -- Element change append (s: SEQUENCE [G]) is -- Append a copy of s. -- (from SEQUENCE) require -- from SEQUENCE argument_not_void: s /= void local l: like s do if s = Current then l := deep_clone (s) else l := s end from l.start until l.exhausted loop extend (l.item) l.forth end ensure -- from SEQUENCE new_count: count >= old count end extend (v: G) is -- Add a new occurrence of v. -- (from BAG) require -- from COLLECTION extendible: extendible deferred ensure -- from COLLECTION item_inserted: is_inserted (v) ensure then -- from BAG one_more_occurrence: occurrences (v) = old (occurrences (v)) + 1 end fill (other: CONTAINER [G]) is -- Fill with as many items of other as possible. -- The representations of other and current structure -- need not be the same. -- (from COLLECTION) require -- from COLLECTION other_not_void: other /= void extendible local lin_rep: LINEAR [G] do lin_rep := other.linear_representation from lin_rep.start until not extendible or else lin_rep.off loop extend (lin_rep.item) lin_rep.forth end end force (v: like item) is -- Add v to end. -- (from SEQUENCE) require -- from SEQUENCE extendible: extendible do extend (v) ensure then -- from SEQUENCE new_count: count = old count + 1 item_inserted: has (v) end merge_left (other: like Current) is -- Merge other into current structure before cursor -- position. Do not move cursor. Empty other. require -- from DYNAMIC_CHAIN extendible: extendible not_before: not before other_exists: other /= void do from other.start until other.is_empty loop put_left (other.item) other.remove end ensure -- from DYNAMIC_CHAIN new_count: count = old count + old other.count new_index: index = old index + old other.count other_is_empty: other.is_empty ensure then other_empty: other.is_empty end merge_right (other: like Current) is -- Merge other into current structure after cursor -- position. Do not move cursor. Empty other. require -- from DYNAMIC_CHAIN extendible: extendible not_after: not after other_exists: other /= void do from other.finish until other.is_empty loop put_right (other.item) other.back other.remove_right end ensure -- from DYNAMIC_CHAIN new_count: count = old count + old other.count same_index: index = old index other_is_empty: other.is_empty ensure then other_empty: other.is_empty end put (v: like item) is -- Replace current item by v. --