2014-08-15 21:29:48 +02:00
|
|
|
# We transform objects into a tree of nodes
|
|
|
|
|
|
|
|
module Sof
|
|
|
|
class Node
|
|
|
|
def initialize head
|
|
|
|
@head = head
|
|
|
|
end
|
2014-08-16 10:43:41 +02:00
|
|
|
attr_accessor :head
|
|
|
|
def out io , level
|
|
|
|
io.write(head) if head
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ChildrenNode < Node
|
|
|
|
def initialize head
|
|
|
|
super(head)
|
|
|
|
@children = []
|
|
|
|
end
|
|
|
|
attr_accessor :children
|
|
|
|
|
2014-08-15 21:29:48 +02:00
|
|
|
def add child
|
|
|
|
child = Node.new(child) if(child.is_a? String)
|
|
|
|
@children << child
|
|
|
|
end
|
|
|
|
|
|
|
|
def out io , level = 0
|
2014-08-16 10:43:41 +02:00
|
|
|
super
|
|
|
|
return if @children.empty?
|
|
|
|
first = @children.first
|
|
|
|
io.write "-"
|
2014-08-15 21:29:48 +02:00
|
|
|
first.out(io , level + 1)
|
|
|
|
indent = " " * level
|
2014-08-16 10:43:41 +02:00
|
|
|
@children.each_with_index do |child , i|
|
|
|
|
next if i == 0 # done already
|
|
|
|
io.write "\n"
|
2014-08-15 21:29:48 +02:00
|
|
|
io.write indent
|
|
|
|
io.write "-"
|
|
|
|
child.out(io , level + 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|