2015-04-06 10:38:11 +02:00
|
|
|
|
2018-08-29 20:02:49 +02:00
|
|
|
# The Space is the root object we work off, the only singleton in the parfait world
|
|
|
|
#
|
|
|
|
# Space stores the types, classes, factories and singleton objects (true/false/nil)
|
|
|
|
#
|
|
|
|
# The Space is booted at compile time, a process outside the scope of Parfait(in parfait_boot)
|
|
|
|
# Then it is used during compilation and later serialized into the resulting binary
|
|
|
|
#
|
2018-09-01 10:24:16 +02:00
|
|
|
#
|
2015-05-11 17:55:49 +02:00
|
|
|
module Parfait
|
2016-12-30 13:10:49 +01:00
|
|
|
# Make the object space globally available
|
|
|
|
def self.object_space
|
2018-08-11 18:15:34 +02:00
|
|
|
@object_space
|
2016-12-30 13:10:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# TODO Must get rid of the setter (move the boot process ?)
|
2018-03-25 18:33:50 +02:00
|
|
|
def self.set_object_space( space )
|
2018-08-11 18:15:34 +02:00
|
|
|
@object_space = space
|
2016-12-30 13:10:49 +01:00
|
|
|
end
|
|
|
|
|
2015-05-12 14:36:44 +02:00
|
|
|
# The Space contains all objects for a program. In functional terms it is a program, but in oo
|
|
|
|
# it is a collection of objects, some of which are data, some classes, some functions
|
|
|
|
|
2015-05-30 11:20:39 +02:00
|
|
|
# The main entry is a function called (of all things) "main".
|
|
|
|
# This _must be supplied by the compled code (similar to c)
|
2015-05-12 18:10:45 +02:00
|
|
|
# There is a start and exit block that call main, which receives an List of strings
|
2015-05-12 14:36:44 +02:00
|
|
|
|
|
|
|
# While data ususally would live in a .data section, we may also "inline" it into the code
|
|
|
|
# in an oo system all data is represented as objects
|
|
|
|
|
2018-04-02 16:06:31 +02:00
|
|
|
class Space < Object
|
2015-04-08 19:24:50 +02:00
|
|
|
|
2019-09-09 23:18:20 +02:00
|
|
|
attr_reader :classes , :types , :factories
|
2019-09-09 19:26:54 +02:00
|
|
|
attr_reader :true_object , :false_object , :nil_object
|
2019-09-09 23:18:20 +02:00
|
|
|
def self.type_length
|
|
|
|
7
|
|
|
|
end
|
|
|
|
def self.memory_size
|
|
|
|
8
|
|
|
|
end
|
2018-08-11 18:15:34 +02:00
|
|
|
|
2019-08-24 08:46:33 +02:00
|
|
|
def initialize( classes , pages)
|
2019-09-09 19:26:54 +02:00
|
|
|
@classes = classes
|
|
|
|
@types = Dictionary.new
|
2018-08-11 18:15:34 +02:00
|
|
|
classes.each do |name , cl|
|
2016-12-31 13:51:06 +01:00
|
|
|
add_type(cl.instance_type)
|
2016-12-07 22:34:45 +01:00
|
|
|
end
|
2019-09-09 19:26:54 +02:00
|
|
|
@factories = Dictionary.new
|
2018-09-01 10:24:16 +02:00
|
|
|
[:Integer , :ReturnAddress , :Message].each do |fact_name|
|
2019-08-24 08:46:33 +02:00
|
|
|
for_type = classes[fact_name].instance_type
|
|
|
|
page_size = pages[fact_name] || 1024
|
|
|
|
factory = Factory.new( for_type , page_size )
|
|
|
|
factory.get_more
|
|
|
|
factories[ fact_name ] = factory
|
2018-07-02 14:49:51 +02:00
|
|
|
end
|
2018-09-01 10:24:16 +02:00
|
|
|
init_message_chain( factories[ :Message ].reserve )
|
|
|
|
init_message_chain( factories[ :Message ].next_object )
|
2019-09-09 19:26:54 +02:00
|
|
|
@true_object = Parfait::TrueClass.new
|
|
|
|
@false_object = Parfait::FalseClass.new
|
|
|
|
@nil_object = Parfait::NilClass.new
|
2015-05-12 14:36:44 +02:00
|
|
|
end
|
|
|
|
|
2018-09-01 10:24:16 +02:00
|
|
|
def init_message_chain( message )
|
2019-08-23 09:23:01 +02:00
|
|
|
prev = nil
|
2018-09-01 10:24:16 +02:00
|
|
|
while(message)
|
|
|
|
message.initialize
|
2019-09-09 19:26:54 +02:00
|
|
|
message._set_caller(prev) if prev
|
2019-08-23 09:23:01 +02:00
|
|
|
prev = message
|
2018-09-01 10:24:16 +02:00
|
|
|
message = message.next_message
|
|
|
|
end
|
|
|
|
end
|
2018-08-24 17:49:21 +02:00
|
|
|
# return the factory for the given type
|
|
|
|
# or more exactly the type that has a class_name "name"
|
|
|
|
def get_factory_for(name)
|
2019-09-09 19:26:54 +02:00
|
|
|
@factories[name]
|
2018-08-24 17:49:21 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# use the factory of given name to generate next_object
|
|
|
|
# just a shortcut basically
|
|
|
|
def get_next_for(name)
|
2019-09-09 19:26:54 +02:00
|
|
|
@factories[name].get_next_object
|
2018-05-29 16:03:55 +02:00
|
|
|
end
|
|
|
|
|
2018-08-24 17:49:21 +02:00
|
|
|
# yield each type in the space
|
2016-12-30 13:04:59 +01:00
|
|
|
def each_type
|
2019-09-09 19:26:54 +02:00
|
|
|
@types.values.each do |type|
|
2016-12-30 13:04:59 +01:00
|
|
|
yield(type)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-24 17:49:21 +02:00
|
|
|
# add a type, meaning the instance given must be a valid type
|
2018-03-25 18:33:50 +02:00
|
|
|
def add_type( type )
|
2016-12-30 19:47:28 +01:00
|
|
|
hash = type.hash
|
2019-02-07 17:24:35 +01:00
|
|
|
raise "upps #{hash} #{hash.class}" unless hash.is_a?(::Integer)
|
2018-08-11 18:15:34 +02:00
|
|
|
was = types[hash]
|
2016-12-30 19:47:28 +01:00
|
|
|
return was if was
|
2018-08-11 18:15:34 +02:00
|
|
|
types[hash] = type
|
2016-12-30 19:47:28 +01:00
|
|
|
end
|
|
|
|
|
2018-08-24 17:49:21 +02:00
|
|
|
# get a type by the type hash (the hash is what uniquely identifies the type)
|
2016-12-30 19:47:28 +01:00
|
|
|
def get_type_for( hash )
|
2019-09-09 19:26:54 +02:00
|
|
|
@types[hash]
|
2016-12-30 19:47:28 +01:00
|
|
|
end
|
|
|
|
|
2016-12-30 13:04:59 +01:00
|
|
|
# all methods form all types
|
2018-05-01 18:19:37 +02:00
|
|
|
def get_all_methods
|
2016-12-30 13:04:59 +01:00
|
|
|
methods = []
|
|
|
|
each_type do | type |
|
2018-04-02 15:36:43 +02:00
|
|
|
type.each_method do |meth|
|
2016-12-30 13:04:59 +01:00
|
|
|
methods << meth
|
|
|
|
end
|
|
|
|
end
|
|
|
|
methods
|
|
|
|
end
|
|
|
|
|
2019-09-15 11:58:43 +02:00
|
|
|
# shortcut to get at known methods that are used in the compiler
|
|
|
|
# arguments are class and method names
|
|
|
|
# returns method or raises (!)
|
|
|
|
def get_method!( clazz_name , method_name )
|
|
|
|
clazz = get_class_by_name( clazz_name )
|
|
|
|
raise "No such class #{clazz_name}" unless clazz
|
|
|
|
method = clazz.instance_type.get_method(method_name)
|
|
|
|
raise "No such Method #{method_name}, in #{clazz_name}" unless method
|
|
|
|
method
|
2015-06-25 15:31:09 +02:00
|
|
|
end
|
|
|
|
|
2018-07-13 20:50:40 +02:00
|
|
|
# get the current instance_typ of the class with the given name
|
|
|
|
def get_type_by_class_name(name)
|
2018-07-15 11:32:02 +02:00
|
|
|
clazz = get_class_by_name(name)
|
|
|
|
return nil unless clazz
|
|
|
|
clazz.instance_type
|
2018-07-13 20:50:40 +02:00
|
|
|
end
|
|
|
|
|
2015-07-19 09:36:06 +02:00
|
|
|
# get a class by name (symbol)
|
|
|
|
# return nili if no such class. Use bang version if create should be implicit
|
2016-12-14 12:21:55 +01:00
|
|
|
def get_class_by_name( name )
|
2015-08-17 01:37:07 +02:00
|
|
|
raise "get_class_by_name #{name}.#{name.class}" unless name.is_a?(Symbol)
|
2019-09-09 19:26:54 +02:00
|
|
|
c = @classes[name]
|
2018-08-11 18:15:34 +02:00
|
|
|
#puts "MISS, no class #{name} #{name.class}" unless c # " #{classes}"
|
2016-02-25 20:50:10 +01:00
|
|
|
#puts "CLAZZ, #{name} #{c.get_type.get_length}" if c
|
2015-05-12 14:36:44 +02:00
|
|
|
c
|
|
|
|
end
|
2015-05-16 13:01:48 +02:00
|
|
|
|
2015-07-19 09:36:06 +02:00
|
|
|
# get or create the class by the (symbol) name
|
|
|
|
# notice that this method of creating classes implies Object superclass
|
2017-01-12 19:38:04 +01:00
|
|
|
def get_class_by_name!(name , super_class = :Object)
|
2015-07-19 09:36:06 +02:00
|
|
|
c = get_class_by_name(name)
|
|
|
|
return c if c
|
2017-01-12 19:38:04 +01:00
|
|
|
create_class( name ,super_class)
|
2015-07-19 09:36:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# this is the way to instantiate classes (not Parfait::Class.new)
|
|
|
|
# so we get and keep exactly one per name
|
2016-12-29 17:51:24 +01:00
|
|
|
def create_class( name , superclass = nil )
|
2015-08-17 01:37:07 +02:00
|
|
|
raise "create_class #{name.class}" unless name.is_a? Symbol
|
2016-12-18 16:02:55 +01:00
|
|
|
superclass = :Object unless superclass
|
2016-12-29 17:51:24 +01:00
|
|
|
raise "create_class #{superclass.class}" unless superclass.is_a? Symbol
|
2018-07-13 20:50:40 +02:00
|
|
|
type = get_type_by_class_name(superclass)
|
2016-12-29 17:51:24 +01:00
|
|
|
c = Class.new(name , superclass , type )
|
2019-09-09 19:26:54 +02:00
|
|
|
@classes[name] = c
|
2015-05-16 13:01:48 +02:00
|
|
|
end
|
2015-06-19 18:50:53 +02:00
|
|
|
|
2018-05-14 10:55:01 +02:00
|
|
|
def rxf_reference_name
|
2015-06-19 18:50:53 +02:00
|
|
|
"space"
|
|
|
|
end
|
|
|
|
|
2015-05-11 17:55:49 +02:00
|
|
|
end
|
2015-05-12 14:36:44 +02:00
|
|
|
# ObjectSpace
|
|
|
|
# :each_object, :garbage_collect, :define_finalizer, :undefine_finalizer, :_id2ref, :count_objects
|
2015-04-06 10:38:11 +02:00
|
|
|
end
|