rubyx/lib/parfait/object.rb

109 lines
3.0 KiB
Ruby
Raw Normal View History

2016-02-25 21:03:11 +01:00
# From a programmers perspective an object has hash like data (with instance variables as keys)
# and functions to work on that data.
# Only the object may access it's data directly.
2014-08-05 14:55:24 +02:00
2016-12-06 10:38:09 +01:00
# From an implementation perspective it is a chunk of memory with a type as the first
# word (instance of class Type).
2014-08-05 14:55:24 +02:00
2016-02-25 21:03:11 +01:00
# Objects are arranged or layed out (in memory) according to their Type
# every object has a Type. Type objects are immutable and may be reused for a group/class
# of objects.
2016-02-25 21:03:11 +01:00
# The Type of an object may change, but then a new Type is created
# The Type also defines the class of the object
# The Type is **always** the first entry (index 0) in an object
2015-05-17 13:40:02 +02:00
module Parfait
TYPE_INDEX = 0
class Object
attr :type
2015-05-17 13:40:02 +02:00
def self.memory_size
8
end
def self.type_length
1
end
def self.new( *args )
2015-07-20 12:01:15 +02:00
object = self.allocate
# have to grab the class, because we are in the ruby class not the parfait one
cl = Parfait.object_space.get_class_by_name( self.name.split("::").last.to_sym)
# and have to set the type before we let the object do anything. otherwise boom
object.set_type cl.instance_type
2015-07-20 12:01:15 +02:00
object.send :initialize , *args
object
end
2015-06-03 09:01:59 +02:00
def == other
self.object_id == other.object_id
end
# This is the core of the object system.
# The class of an object is stored in the objects memory
#
2017-01-01 23:29:20 +01:00
# In RubyX we store the class in the Type, and so the Type is the only fixed
# data that every object carries.
def get_class()
l = get_type()
#puts "Type #{l.class} in #{self.class} , #{self}"
l.object_class()
end
# private
def set_type(typ)
raise "not type #{typ.class} in #{object_id.to_s(16)}" unless typ.is_a?(Type)
self.type = typ
end
# so we can keep the raise in get_type
def has_type?
! type.nil?
end
def get_type()
raise "No type #{self.object_id.to_s(16)}:#{self.class} " unless has_type?
type
end
2015-05-20 09:57:20 +02:00
def get_instance_variables
type.names
2015-05-14 18:53:56 +02:00
end
def get_instance_variable( name )
2015-05-14 18:53:56 +02:00
index = instance_variable_defined(name)
#puts "getting #{name} at #{index}"
2015-05-14 18:53:56 +02:00
return nil if index == nil
return get_internal_word(index)
2015-05-14 18:53:56 +02:00
end
def set_instance_variable( name , value )
2015-05-14 18:53:56 +02:00
index = instance_variable_defined(name)
return nil if index == nil
return set_internal_word(index , value)
2015-05-14 18:53:56 +02:00
end
def instance_variable_defined( name )
type.variable_index(name)
2015-05-14 18:53:56 +02:00
end
def padded_length
Padding.padded_words( type.instance_length )
end
# parfait versions are deliberately called different, so we "relay"
# have to put the "" on the names for rfx to take them off again
def instance_variables
get_instance_variables.to_a.collect{ |n| "#{n}".to_sym }
end
# name comes in as a ruby var name
def instance_variable_ged name
var = get_instance_variable name.to_s[1 .. -1].to_sym
#puts "getting #{name} #{var}"
var
end
end
2014-07-30 20:43:12 +02:00
end