2015-04-06 10:38:11 +02:00
|
|
|
|
2015-04-08 19:24:50 +02:00
|
|
|
# A Space is a collection of pages. It stores objects, the data for the objects,
|
|
|
|
# not references. See Page for more detail.
|
|
|
|
|
|
|
|
# Pages are stored by the object size they represent in a hash.
|
|
|
|
|
|
|
|
# Space and Page work together in making *new* objects available.
|
|
|
|
# "New" is slightly misleading in that normal operation only ever
|
|
|
|
# recycles objects.
|
|
|
|
|
2015-05-11 17:55:49 +02:00
|
|
|
module Parfait
|
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
|
|
|
|
|
2015-05-11 17:55:49 +02:00
|
|
|
class Space < Object
|
2015-04-08 19:24:50 +02:00
|
|
|
|
2015-05-12 14:36:44 +02:00
|
|
|
def initialize
|
|
|
|
super()
|
2015-05-22 21:50:19 +02:00
|
|
|
Parfait::Space.set_object_space self
|
2015-05-12 18:10:45 +02:00
|
|
|
@classes = Parfait::Dictionary.new_object
|
2015-06-24 15:07:27 +02:00
|
|
|
@syscall_message = nil # a hack sto store the message during syscall
|
2015-05-22 21:50:19 +02:00
|
|
|
end
|
2015-07-01 18:27:18 +02:00
|
|
|
attr_reader :classes , :first_message
|
2015-05-22 21:50:19 +02:00
|
|
|
|
|
|
|
# need a two phase init for the object space (and generally parfait) because the space
|
|
|
|
# is an interconnected graph, so not everthing is ready
|
|
|
|
def late_init
|
2015-07-01 18:27:18 +02:00
|
|
|
message = Message.new(nil)
|
|
|
|
5.times do
|
|
|
|
new_message = Message.new message
|
|
|
|
message.set_caller new_message
|
2015-05-24 18:59:19 +02:00
|
|
|
end
|
2015-07-01 18:27:18 +02:00
|
|
|
@first_message = Message.new message
|
2015-06-22 21:48:42 +02:00
|
|
|
init_layout
|
2015-05-12 14:36:44 +02:00
|
|
|
end
|
|
|
|
|
2015-05-19 19:29:33 +02:00
|
|
|
@@object_space = nil
|
|
|
|
# Make the object space globally available
|
|
|
|
def self.object_space
|
|
|
|
@@object_space
|
|
|
|
end
|
|
|
|
# TODO Must get rid of the setter
|
|
|
|
def self.set_object_space space
|
2015-05-22 21:50:19 +02:00
|
|
|
@@object_space = space
|
2015-05-19 19:29:33 +02:00
|
|
|
end
|
|
|
|
|
2015-05-25 17:48:35 +02:00
|
|
|
def get_main
|
2015-05-31 17:34:18 +02:00
|
|
|
kernel = get_class_by_name :Object
|
|
|
|
kernel.get_instance_method :main
|
2015-05-25 17:48:35 +02:00
|
|
|
end
|
|
|
|
|
2015-06-25 15:31:09 +02:00
|
|
|
def get_init
|
|
|
|
kernel = get_class_by_name :Kernel
|
|
|
|
kernel.get_instance_method :__init__
|
|
|
|
end
|
|
|
|
|
2015-05-16 11:53:10 +02:00
|
|
|
# this is the way to instantiate classes (not Parfait::Class.new)
|
2015-05-12 14:36:44 +02:00
|
|
|
# so we get and keep exactly one per name
|
2015-05-16 11:54:11 +02:00
|
|
|
def get_class_by_name name
|
2015-05-31 17:34:18 +02:00
|
|
|
raise "uups #{name}.#{name.class}" unless name.is_a?(Symbol)
|
2015-05-12 14:36:44 +02:00
|
|
|
c = @classes[name]
|
2015-05-20 16:29:08 +02:00
|
|
|
puts "MISS, no class #{name} #{name.class}" unless c # " #{@classes}"
|
2015-05-12 14:36:44 +02:00
|
|
|
c
|
|
|
|
end
|
2015-05-16 13:01:48 +02:00
|
|
|
|
2015-05-24 12:53:49 +02:00
|
|
|
def create_class name , superclass
|
2015-05-20 16:11:13 +02:00
|
|
|
raise "uups " if name.is_a? String
|
2015-05-24 18:59:19 +02:00
|
|
|
c = Class.new_object(name , superclass)
|
2015-05-16 13:01:48 +02:00
|
|
|
@classes[name] = c
|
|
|
|
end
|
2015-06-19 18:50:53 +02:00
|
|
|
|
|
|
|
def sof_reference_name
|
|
|
|
"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
|