rubyx/lib/boot/boot_class.rb

73 lines
2.0 KiB
Ruby
Raw Normal View History

2014-06-03 19:47:06 +02:00
require_relative "meta_class"
2014-06-13 22:51:53 +02:00
module Boot
# class is mainly a list of functions with a name (for now)
# layout of object is seperated into Layout
2014-06-26 16:52:15 +02:00
class BootClass < Virtual::ObjectConstant
2014-06-03 19:47:06 +02:00
def initialize name , context , super_class = :Object
super()
@context = context
# class functions
@functions = []
@name = name.to_sym
2014-06-03 19:47:06 +02:00
@super_class = super_class
@meta_class = MetaClass.new(self)
end
2014-06-24 11:23:39 +02:00
attr_reader :name , :functions , :meta_class , :context , :super_class
def add_function function
2014-06-26 16:52:15 +02:00
raise "not a function #{function}" unless function.is_a? Virtual::Function
raise "syserr " unless function.name.is_a? Symbol
@functions << function
end
def get_function fname
fname = fname.to_sym
f = @functions.detect{ |f| f.name == fname }
names = @functions.collect{|f| f.name }
f
end
2014-06-13 22:41:45 +02:00
# get the function and if not found, try superclasses. raise error if not found
def resolve_function name
fun = get_function name
unless fun or name == :Object
2014-06-03 19:47:06 +02:00
supr = @context.object_space.get_or_create_class(@super_class)
fun = supr.get_function name
puts "#{supr.functions.collect(&:name)} for #{name} GOT #{fun.class}" if name == :index_of
end
2014-06-13 22:41:45 +02:00
raise "Method not found :#{name}, for #{inspect}" unless fun
fun
end
def inspect
2014-06-13 22:41:45 +02:00
"BootClass #{@name} < #{@super_class}:#{@functions.collect(&:name)}"
end
def to_s
inspect
end
# Code interface follows. Note position is inheitted as is from Code
# length of the class is the length of it's functions
def length
@functions.inject(0) {| sum , item | sum + item.length}
end
# linking functions
def link_at( start , context)
super
@functions.each do |function|
function.link_at(start , context)
start += function.length
end
end
# assemble functions
def assemble( io )
@functions.each do |function|
function.assemble(io)
end
io
end
end
end