2014-05-31 11:52:29 +02:00
|
|
|
|
2015-05-17 13:56:06 +02:00
|
|
|
# A List, or rather an ordered list, is just that, a list of items.
|
|
|
|
|
|
|
|
# For a programmer this may be a little strange as this new start goes with trying to break old
|
|
|
|
# bad habits. A List would be an array in some languages, but list is a better name, closer to
|
|
|
|
# common language.
|
|
|
|
# Another habit is to start a list from 0. This is "just" programmers lazyness, as it goes
|
|
|
|
# with the standard c implementation. But it bends the mind, and in oo we aim not to.
|
|
|
|
# If you have a list of three items, you they will be first, second and third, ie 1,2,3
|
|
|
|
#
|
|
|
|
# For the implementation we use Objects memory which is index addressable
|
|
|
|
# But, objects are also lists where indexes start with 1, except 1 is taken for the Layout
|
|
|
|
# so all incoming/outgoing indexes have to be shifted one up/down
|
2015-04-15 10:39:12 +02:00
|
|
|
|
2015-05-11 17:55:49 +02:00
|
|
|
module Parfait
|
2015-05-12 18:10:45 +02:00
|
|
|
class List < Object
|
2015-05-12 17:52:01 +02:00
|
|
|
|
2015-05-17 13:56:06 +02:00
|
|
|
def get_length
|
|
|
|
internal_object_length - 1
|
|
|
|
end
|
|
|
|
|
2015-05-14 18:54:38 +02:00
|
|
|
def index_of( item )
|
2015-05-17 13:56:06 +02:00
|
|
|
max = self.get_length
|
|
|
|
counter = 1
|
2015-05-14 18:54:38 +02:00
|
|
|
while( counter < max )
|
2015-05-17 13:56:06 +02:00
|
|
|
if( get(index) == item)
|
2015-05-14 18:54:38 +02:00
|
|
|
return counter
|
|
|
|
end
|
|
|
|
counter = counter + 1
|
|
|
|
end
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
2015-05-12 17:52:01 +02:00
|
|
|
# push means add to the end
|
2015-05-12 18:10:45 +02:00
|
|
|
# this automatically grows the List
|
2015-05-12 17:52:01 +02:00
|
|
|
def push value
|
2015-05-17 13:56:06 +02:00
|
|
|
self.set( self.get_length + 1 , value)
|
2015-05-12 17:52:01 +02:00
|
|
|
end
|
|
|
|
|
2015-05-17 13:56:06 +02:00
|
|
|
# set the value at index.
|
|
|
|
# Lists start from index 1
|
2015-05-12 17:52:01 +02:00
|
|
|
def set( index , value)
|
2015-05-17 13:56:06 +02:00
|
|
|
raise "Only positive indexes #{index}" if index <= 0
|
|
|
|
if index > self.get_length
|
2015-05-12 17:52:01 +02:00
|
|
|
grow_to(index)
|
|
|
|
end
|
2015-05-17 13:56:06 +02:00
|
|
|
# internally 1 is reserved for the layout
|
|
|
|
internal_object_set( index + 1, value)
|
2015-05-12 17:52:01 +02:00
|
|
|
end
|
|
|
|
|
2015-05-17 13:56:06 +02:00
|
|
|
# set the value at index.
|
|
|
|
# Lists start from index 1
|
2015-05-12 17:52:01 +02:00
|
|
|
def get(index)
|
2015-05-17 14:34:29 +02:00
|
|
|
raise "Only positive indexes, #{index}" if index <= 0
|
2015-05-17 13:56:06 +02:00
|
|
|
if index > self.get_length
|
2015-05-12 17:52:01 +02:00
|
|
|
return nil
|
|
|
|
else
|
2015-05-17 13:56:06 +02:00
|
|
|
return internal_object_get(index + 1)
|
2015-05-12 17:52:01 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def empty?
|
2015-05-17 13:56:06 +02:00
|
|
|
self.get_length == 0
|
2015-05-12 17:52:01 +02:00
|
|
|
end
|
|
|
|
|
2015-05-16 11:53:10 +02:00
|
|
|
def each
|
2015-05-17 13:56:06 +02:00
|
|
|
index = 1
|
|
|
|
while index <= self.get_length
|
2015-05-16 11:53:10 +02:00
|
|
|
item = get(index)
|
|
|
|
yield item
|
|
|
|
index = index + 1
|
|
|
|
end
|
|
|
|
self
|
|
|
|
end
|
2015-05-17 13:56:06 +02:00
|
|
|
|
2015-05-16 13:01:48 +02:00
|
|
|
def set_length len
|
|
|
|
# TODO check if not shrinking
|
|
|
|
grow_to len
|
|
|
|
end
|
2015-05-17 13:56:06 +02:00
|
|
|
|
2015-05-12 17:52:01 +02:00
|
|
|
def grow_to(len)
|
2015-05-18 09:10:31 +02:00
|
|
|
raise "Only positive lenths, #{len}" if len < 0
|
2015-05-17 13:56:06 +02:00
|
|
|
old_length = self.get_length
|
|
|
|
return if old_length >= len
|
|
|
|
internal_object_grow(len + 1)
|
2015-05-12 17:52:01 +02:00
|
|
|
end
|
2015-05-12 18:10:45 +02:00
|
|
|
#many basic List functions can not be defined in ruby, such as
|
2015-05-11 17:55:49 +02:00
|
|
|
# get/set/length/add/delete
|
|
|
|
# so they must be defined as CompiledMethods in Builtin::Kernel
|
|
|
|
|
|
|
|
#ruby 2.1 list (just for reference, keep at bottom)
|
|
|
|
# :at, :fetch, :first, :last, :concat, :<<, :push, :pop, :shift, :unshift, :insert, :each, :each_index, :reverse_each,
|
|
|
|
# :length, :size, :empty?, :find_index, :index, :rindex, :join, :reverse, :reverse!, :rotate, :rotate!,
|
|
|
|
# :sort, :sort!, :sort_by!, :collect, :collect!, :map, :map!, :select, :select!, :keep_if,
|
|
|
|
# :values_at, :delete, :delete_at, :delete_if, :reject, :reject!, :zip, :transpose, :replace, :clear,
|
|
|
|
# :fill, :include?, :slice, :slice!, :assoc, :rassoc, :+, :*, :-, :&, :|, :uniq, :uniq!, :compact, :compact!,
|
|
|
|
# :flatten, :flatten!, :count, :shuffle!, :shuffle, :sample, :cycle, :permutation, :combination,
|
|
|
|
# :repeated_permutation, :repeated_combination, :product, :take, :take_while, :drop, :drop_while,
|
|
|
|
# :bsearch, :pack, :entries, :sort_by, :grep, :find, :detect, :find_all, :flat_map, :collect_concat,
|
|
|
|
# :inject, :reduce, :partition, :group_by, :all?, :any?, :one?, :none?,
|
|
|
|
# :min, :max, :minmax, :min_by, :max_by, :minmax_by, :member?, :each_with_index, :each_entry,
|
|
|
|
# :each_slice, :each_cons, :each_with_object, :chunk, :slice_before, :lazy
|
|
|
|
|
|
|
|
end
|
2014-05-31 11:52:29 +02:00
|
|
|
end
|