Commit ad07d41b authored by Daniel Bovensiepen's avatar Daniel Bovensiepen

Improve generator

parent dd6b265b
This diff is collapsed.
...@@ -6,13 +6,11 @@ class MRBDoc ...@@ -6,13 +6,11 @@ class MRBDoc
@mrb_files = {} @mrb_files = {}
@dir = File.expand_path(dir) @dir = File.expand_path(dir)
block.call "MRBDOC\tStart Analyzing Source of #{@dir}" block.call "MRBDOC\tanalyze #{@dir}"
analyze(dir) do |progress| analyze(dir) do |progress|
block.call progress block.call progress
end end
block.call "MRBDOC\tFinish Analyzing Source"
end end
def each_file(&block); @mrb_files.each {|k,v| block.call k,v}; end def each_file(&block); @mrb_files.each {|k,v| block.call k,v}; end
...@@ -97,6 +95,13 @@ class MRBFile ...@@ -97,6 +95,13 @@ class MRBFile
@last_line = nil @last_line = nil
@assignments = {} @assignments = {}
@assignments['mrb->object_class'] = 'Object'
@assignments['mrb->kernel_module'] = 'Kernel'
@assignments['mrb->module_class'] = 'Module'
@assignments['mrb->nil_class'] = 'NilClass'
@assignments['mrb->true_class'] = 'TrueClass'
@assignments['mrb->class_class'] = 'Class'
analyze analyze
end end
...@@ -121,8 +126,8 @@ class MRBFile ...@@ -121,8 +126,8 @@ class MRBFile
end end
def each_module &block def each_module &block
@rb_module_c_def.each_key do |module_name| @rb_module_c_def.each do |module_name, module_hsh|
block.call module_name block.call module_name, module_hsh
end end
end end
...@@ -202,6 +207,17 @@ class MRBFile ...@@ -202,6 +207,17 @@ class MRBFile
iso = $5.clone iso = $5.clone
iso.strip! iso.strip!
@rb_class_method_c_def["#{class_name}_#{$2}"] = {:c_func => $3, :args => $4, :rb_class => class_name, :iso => iso} @rb_class_method_c_def["#{class_name}_#{$2}"] = {:c_func => $3, :args => $4, :rb_class => class_name, :iso => iso}
when /mrb_name_class\(.*?\,#{RXP_C_VAR}\,\s*mrb_intern\(.*?,#{RXP_C_STR}\)\)#{RXP_C_ISO}/
class_name = $2.clone
iso = $3.clone
iso.strip!
@rb_class_c_def[class_name] = {:c_object => $1, :iso => iso}
@assignments[$1] = class_name
when /mrb_include_module\(.*?\,#{RXP_C_VAR}\,\s*mrb_class_get\(.*?\,#{RXP_C_STR}\)\)/
class_name = resolve_obj($1)
mod = $2.clone
@rb_class_c_def[class_name][:include] = [] unless @rb_class_c_def[class_name].has_key? :include
@rb_class_c_def[class_name][:include] << mod
end end
end end
......
class MRBDoc class MRBDoc
DOC_DIR = 'language'
def write_documentation dir, &block def write_documentation dir, &block
block.call "MRBDOC\tStart Building Documentation to #{doc_dir(dir)}" block.call "MRBDOC\twrite to #{File.expand_path(dir)}"
write(dir) do |progress| write(dir) do |progress|
block.call progress block.call progress
end end
block.call "MRBDOC\tFinish Building Documentation"
end end
private private
def write dir def write dir
# io = STDOUT File.open(File.expand_path('Core.md', dir), 'w+') do |io|
File.open(File.expand_path('Core_Classes.md', dir), 'w+') do |io|
print_core_classes(io) print_core_classes(io)
print_core_modules(io) print_core_modules(io)
end end
...@@ -44,14 +39,16 @@ class MRBDoc ...@@ -44,14 +39,16 @@ class MRBDoc
file = find_c_file_by_class(name) file = find_c_file_by_class(name)
file = file.split("#{@dir}/")[1] file = file.split("#{@dir}/")[1]
iso = hsh[:data][:iso] iso = hsh[:data][:iso]
iso = 'n/a' if iso.nil? iso = 'n/a' if iso.nil? or iso == ''
mixins = hsh[:data][:include].join(', ') unless hsh[:data][:include].nil?
mixins = 'n/a' if mixins.nil? or mixins == ''
io.puts <<CLASS io.puts <<CLASS
## #{name} ## #{name}
ISO Code | Mixins | Source File ISO Code | Mixins | Source File
--- | --- | --- --- | --- | ---
#{hsh[:data][:iso]} | n/a | #{file} #{iso} | #{mixins} | #{file}
CLASS CLASS
print_class_methods(io, hsh) print_class_methods(io, hsh)
...@@ -65,8 +62,8 @@ CLASS ...@@ -65,8 +62,8 @@ CLASS
core_list.sort.each do |name, hsh| core_list.sort.each do |name, hsh|
file = find_c_file_by_module(name) file = find_c_file_by_module(name)
file = file.split("#{@dir}/")[1] file = file.split("#{@dir}/")[1]
iso = hsh[:iso] iso = hsh[:data][:iso]
iso = 'n/a' if iso.nil? iso = 'n/a' if iso.nil? or iso == ''
io.puts <<CLASS io.puts <<CLASS
## #{name} ## #{name}
...@@ -101,16 +98,16 @@ CLASS ...@@ -101,16 +98,16 @@ CLASS
line_no = find_c_func(met_hsh[:c_func])[:line_no] line_no = find_c_func(met_hsh[:c_func])[:line_no]
file = find_c_file(met_hsh[:rb_class], met_hsh[:c_func]) file = find_c_file(met_hsh[:rb_class], met_hsh[:c_func])
file = file.split("#{@dir}/")[1] file = file.split("#{@dir}/")[1]
iso = met_hsh[:iso]
iso = 'n/a' if iso.nil? or iso == ''
io.puts <<METHOD io.puts <<METHOD
#### #{met_name} #### #{met_name}
ISO Code | Source File | C Function | Line ISO Code | Source File | C Function | Line
--- | --- | --- --- | --- | ---
#{met_hsh[:iso]} | #{file} | #{met_hsh[:c_func]} | #{line_no} #{iso} | #{file} | #{met_hsh[:c_func]} | #{line_no}
METHOD METHOD
end end
def doc_dir dir; File.expand_path DOC_DIR, dir; end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment