2015-10-25 17:40:17 +01:00
|
|
|
# various classes would derive from array in ruby, ie have indexed variables
|
|
|
|
#
|
|
|
|
# But for our memory layout we need the variable part of an object to be after
|
|
|
|
# the fixed, ie the instance variables
|
|
|
|
#
|
|
|
|
# Just using ruby derivation will not allow us to offset the index, so instead the
|
|
|
|
# function will be generated and included to the classes that need them.
|
|
|
|
#
|
|
|
|
# Using ruby include does not work for similar reasons, so Indexed.at is the main
|
|
|
|
# function that generates the methods
|
2015-10-25 18:16:12 +01:00
|
|
|
# ( do have to use a marker module so we can test with is_a?)
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:16:12 +01:00
|
|
|
module Parfait
|
|
|
|
module Indexed # marker module
|
|
|
|
def self.included(base)
|
|
|
|
base.extend(Methods)
|
2015-10-25 19:44:03 +01:00
|
|
|
base.attribute :indexed_length
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
# include? means non nil index
|
|
|
|
def include? item
|
|
|
|
return index_of(item) != nil
|
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
# index of item, remeber first item has index 1
|
|
|
|
# return nil if no such item
|
|
|
|
def index_of item
|
|
|
|
max = self.get_length
|
2015-10-26 11:22:32 +01:00
|
|
|
#puts "length #{max} #{max.class}"
|
2015-10-25 18:32:36 +01:00
|
|
|
counter = 1
|
|
|
|
while( counter <= max )
|
|
|
|
if( get(counter) == item)
|
|
|
|
return counter
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 18:32:36 +01:00
|
|
|
counter = counter + 1
|
|
|
|
end
|
|
|
|
return nil
|
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
# push means add to the end
|
|
|
|
# this automatically grows the List
|
|
|
|
def push value
|
2015-10-27 17:08:40 +01:00
|
|
|
to = self.get_length + 1
|
|
|
|
set( to , value)
|
|
|
|
to
|
2015-10-25 18:32:36 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
def delete value
|
|
|
|
index = index_of value
|
|
|
|
return false unless index
|
|
|
|
delete_at index
|
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
def delete_at index
|
|
|
|
# TODO bounds check
|
|
|
|
while(index < self.get_length)
|
|
|
|
set( index , get(index + 1))
|
|
|
|
index = index + 1
|
|
|
|
end
|
|
|
|
set_length( self.get_length - 1)
|
|
|
|
true
|
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
def first
|
|
|
|
return nil if empty?
|
|
|
|
get(1)
|
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
def last
|
|
|
|
return nil if empty?
|
|
|
|
get(get_length())
|
|
|
|
end
|
|
|
|
|
|
|
|
def empty?
|
|
|
|
self.get_length == 0
|
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
def equal? other
|
|
|
|
# this should call parfait get_class, alas that is not implemented yet
|
|
|
|
return false if other.class != self.class
|
|
|
|
return false if other.get_length != self.get_length
|
|
|
|
index = self.get_length
|
|
|
|
while(index > 0)
|
|
|
|
return false if other.get(index) != self.get(index)
|
|
|
|
index = index - 1
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:32:36 +01:00
|
|
|
# above, correct, implementation causes problems in the machine object space
|
|
|
|
# because when a second empty (newly created) list is added, it is not actually
|
|
|
|
# added as it exists already. TODO, but hack with below identity function
|
|
|
|
def == other
|
|
|
|
self.object_id == other.object_id
|
|
|
|
end
|
|
|
|
|
|
|
|
# word length (padded) is the amount of space taken by the object
|
|
|
|
# For your basic object this means the number of instance variables as determined by layout
|
|
|
|
# This is off course 0 for a list, unless someone squeezed an instance variable in
|
|
|
|
# but additionally, the amount of data comes on top.
|
|
|
|
# unfortuntely we can't just use super because of the Padding
|
2015-11-04 09:33:10 +01:00
|
|
|
def padded_length
|
|
|
|
padded_words( get_layout().instance_length + get_length() )
|
2015-10-25 18:32:36 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def each
|
|
|
|
# not sure how to do this with define_method, because of the double block issue.
|
|
|
|
# probably some clever way around that, but not important
|
2015-10-26 11:22:32 +01:00
|
|
|
index = 1
|
2015-10-25 18:32:36 +01:00
|
|
|
while index <= self.get_length
|
|
|
|
item = get(index)
|
|
|
|
yield item
|
|
|
|
index = index + 1
|
|
|
|
end
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_length len
|
|
|
|
was = self.get_length
|
|
|
|
return if was == len
|
|
|
|
if(was < len)
|
|
|
|
grow_to len
|
|
|
|
else
|
|
|
|
shrink_to len
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def inspect
|
2015-10-26 14:07:59 +01:00
|
|
|
index = 1
|
2015-10-25 18:32:36 +01:00
|
|
|
ret = ""
|
|
|
|
while index <= self.get_length
|
|
|
|
item = get(index)
|
|
|
|
ret += item.inspect
|
|
|
|
ret += "," unless index == self.get_length
|
|
|
|
index = index + 1
|
|
|
|
end
|
|
|
|
ret
|
|
|
|
end
|
|
|
|
|
|
|
|
module Methods
|
|
|
|
def offset( offset )
|
2015-10-26 11:57:54 +01:00
|
|
|
offset += 1 # for the attribute we add (indexed_length)
|
2015-10-25 18:32:36 +01:00
|
|
|
|
2015-10-27 15:04:36 +01:00
|
|
|
# define methods on the class that includes.
|
|
|
|
# weird syntax, but at least it's possible
|
|
|
|
(class << self;self;end).send :define_method , :get_length_index do
|
|
|
|
offset
|
|
|
|
end
|
|
|
|
(class << self;self;end).send :define_method , :get_indexed do |index|
|
|
|
|
offset + index
|
|
|
|
end
|
2015-10-25 18:32:36 +01:00
|
|
|
define_method :get_offset do
|
|
|
|
offset
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 19:44:03 +01:00
|
|
|
define_method :get_length do
|
2015-11-18 14:36:43 +01:00
|
|
|
r = get_internal_word( offset ) #one for layout
|
2015-10-25 19:44:03 +01:00
|
|
|
r.nil? ? 0 : r
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:16:12 +01:00
|
|
|
# set the value at index.
|
|
|
|
# Lists start from index 1
|
|
|
|
define_method :set do | index , value|
|
|
|
|
raise "Only positive indexes #{index}" if index <= 0
|
|
|
|
if index > self.get_length
|
|
|
|
grow_to(index)
|
|
|
|
end
|
2015-10-26 13:33:36 +01:00
|
|
|
# start one higher than offset, which is where the length is
|
2015-11-18 14:36:43 +01:00
|
|
|
set_internal_word( index + offset, value)
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:16:12 +01:00
|
|
|
# set the value at index.
|
|
|
|
# Lists start from index 1
|
|
|
|
define_method :get do | index|
|
|
|
|
raise "Only positive indexes, #{index}" if index <= 0
|
2015-10-27 11:44:53 +01:00
|
|
|
ret = nil
|
|
|
|
if(index <= self.get_length)
|
2015-10-26 13:33:36 +01:00
|
|
|
# start one higher than offset, which is where the length is
|
2015-11-18 14:36:43 +01:00
|
|
|
ret = get_internal_word(index + offset )
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-27 11:44:53 +01:00
|
|
|
ret
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:16:12 +01:00
|
|
|
define_method :grow_to do | len|
|
|
|
|
raise "Only positive lenths, #{len}" if len < 0
|
|
|
|
old_length = self.get_length
|
|
|
|
return if old_length >= len
|
2015-10-26 11:22:32 +01:00
|
|
|
# raise "bounds error at #{len}" if( len + offset > 16 )
|
2015-10-25 19:44:03 +01:00
|
|
|
# be nice to use the indexed_length , but that relies on booted space
|
2015-11-18 14:36:43 +01:00
|
|
|
set_internal_word( offset , len) #one for layout
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
2015-10-25 18:16:12 +01:00
|
|
|
define_method :shrink_to do | len|
|
|
|
|
raise "Only positive lenths, #{len}" if len < 0
|
|
|
|
old_length = self.get_length
|
|
|
|
return if old_length <= len
|
2015-11-18 14:36:43 +01:00
|
|
|
set_internal_word( offset , len)
|
2015-10-25 18:16:12 +01:00
|
|
|
end
|
2015-10-25 17:40:17 +01:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|