Class: ReVIEW::TOCParser
Defined Under Namespace
Classes: Chapter, List, Node, Paragraph, Section
Class Method Summary collapse
Instance Method Summary collapse
- #compile_label(line) ⇒ Object
- #error!(filename, lineno, msg) ⇒ Object
- #get_label(line) ⇒ Object
- #parse(f, id, filename, chap) ⇒ Object
Class Method Details
.parse(chap) ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'lib/review/tocparser.rb', line 20 def TOCParser.parse(chap) chap.open {|f| stream = Preprocessor::Strip.new(f) new.parse(stream, chap.id, chap.path, chap).map {|root| root.number = chap.number root } } end |
Instance Method Details
#compile_label(line) ⇒ Object
99 100 101 102 103 104 105 106 |
# File 'lib/review/tocparser.rb', line 99 def compile_label(line) b = ReVIEW::TEXTBuilder.new dummy_book = ReVIEW::Book::Base.load dummy_chapter = ReVIEW::Book::Chapter.new(dummy_book, 1, '-', nil, StringIO.new) dummy_loc = Location.new("", StringIO.new) b.bind(ReVIEW::Compiler.new(b), dummy_chapter, dummy_loc) b.compile_inline(line) end |
#error!(filename, lineno, msg) ⇒ Object
108 109 110 |
# File 'lib/review/tocparser.rb', line 108 def error!(filename, lineno, msg) raise "#{filename}:#{lineno}: #{msg}" end |
#get_label(line) ⇒ Object
94 95 96 97 |
# File 'lib/review/tocparser.rb', line 94 def get_label(line) line = line.strip.sub(/\A=+\s*/, '') compile_label(line) end |
#parse(f, id, filename, chap) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/review/tocparser.rb', line 30 def parse(f, id, filename, chap) roots = [] path = [] while line = f.gets line.sub!(/\A\xEF\xBB\xBF/u, '') # remove BOM case line when /\A\#@/ ; when /\A\s*\z/ ; when /\A(={2,})[\[\s\{]/ lev = $1.size error! filename, f.lineno, "section level too deep: #{lev}" if lev > 5 if path.empty? # missing chapter label path.push Chapter.new(get_label(line), id, filename, chap.book.page_metric) roots.push path.first end next if get_label(line) =~ /\A\[\// # ex) "[/column]" new = Section.new(lev, get_label(line).gsub(/\A\{.*?\}\s?/, "")) until path.last.level < new.level path.pop end path.last.add_child new path.push new when /\A= / path.clear path.push Chapter.new(get_label(line), id, filename, chap.book.page_metric) roots.push path.first when %r<\A//\w+(?:\[.*?\])*\{\s*\z> if path.empty? error! filename, f.lineno, 'list found before section label' end path.last.add_child(list = List.new) beg = f.lineno list.add line while line = f.gets break if %r<\A//\}> =~ line list.add line end error! filename, beg, 'unterminated list' unless line when %r<\A//\w> ; else #if path.empty? # error! filename, f.lineno, 'text found before section label' #end next if path.empty? path.last.add_child(par = Paragraph.new(chap.book.page_metric)) par.add line while line = f.gets break if /\A\s*\z/ =~ line par.add line end end end roots end |