Class: Rabbit::Parser::RD::RD2RabbitVisitor

Inherits:
Visitor
  • Object
show all
Extended by:
Forwardable
Includes:
RD::MethodParse, Element, PauseSupport
Defined in:
lib/rabbit/parser/rd/rd2rabbit-lib.rb

Constant Summary collapse

SYSTEM_NAME =
"RD2RabbitLVisitor"
SYSTEM_VERSION =
"0.0.2"
VERSION =
::RD::Version.new_from_version_string(SYSTEM_NAME,
SYSTEM_VERSION)
OUTPUT_SUFFIX =

must-have constants

""
INCLUDE_SUFFIX =
["rabbit", "rb"]
EXTENSIONS =
{
  "refer" => Ext::Refer,
  "inline_verbatim" => Ext::InlineVerbatim,
  "block_verbatim" => Ext::BlockVerbatim,
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from PauseSupport

#burn_out_pause_targets, #pause_targets, #register_pause, #unregister_pause

Methods inherited from Visitor

version

Constructor Details

#initialize(canvas) ⇒ RD2RabbitVisitor

Returns a new instance of RD2RabbitVisitor.



39
40
41
42
43
44
45
46
47
48
49
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 39

def initialize(canvas)
  @canvas = canvas

  @slides = []
  @slide = nil
  @slide_property_mode = false
  @index = {}

  init_extensions
  super()
end

Instance Attribute Details

#canvasObject (readonly)

Returns the value of attribute canvas.



38
39
40
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 38

def canvas
  @canvas
end

Instance Method Details

#apply_to_Code(element, content) ⇒ Object



224
225
226
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 224

def apply_to_Code(element, content)
  Code.new(content)
end

#apply_to_DescList(element, items) ⇒ Object



153
154
155
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 153

def apply_to_DescList(element, items)
  apply_to_List(element, items, DescriptionList)
end

#apply_to_DescListItem(element, term, description) ⇒ Object



180
181
182
183
184
185
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 180

def apply_to_DescListItem(element, term, description)
  desc_term = DescriptionTerm.new(Paragraph.new(term))
  desc_content = DescriptionContent.new
  apply_to_ListItem(element, description, desc_content)
  DescriptionListItem.new(desc_term, desc_content)
end

#apply_to_DocumentElement(element, contents) ⇒ Object



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
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 57

def apply_to_DocumentElement(element, contents)
  target = nil
  mode = :ignore
  contents.each do |content|
    case content
    when :no_element
      next
    when nil
      mode = :ignore
    when Slide
      target = content.body
      @canvas << content
      mode = :display
    when TitleSlide
      target = content
      @canvas << content
      mode = :display
    when SlidePropertySetter, NoteSetter
      target = content
      mode = :property
    else
      case mode
      when :display
        target << content
      when :property
        target.apply(content)
      end
    end
  end
  burn_out_pause_targets
  burn_out_foot_texts
end

#apply_to_Emphasis(element, content) ⇒ Object



220
221
222
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 220

def apply_to_Emphasis(element, content)
  Emphasis.new(content)
end

#apply_to_EnumList(element, items) ⇒ Object



145
146
147
148
149
150
151
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 145

def apply_to_EnumList(element, items)
  i = 1
  apply_to_List(element, items, EnumList) do |list, item|
    item.order = i
    i += 1
  end
end

#apply_to_EnumListItem(element, content) ⇒ Object



176
177
178
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 176

def apply_to_EnumListItem(element, content)
  apply_to_ListItem(element, content, EnumListItem.new)
end

#apply_to_Footnote(element, content) ⇒ Object



251
252
253
254
255
256
257
258
259
260
261
262
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 251

def apply_to_Footnote(element, content)
  if @slide.nil?
    Text.new("")
  else
    num = get_footnote_num(element)
    unless num
      raise ArgumentError, "[BUG?] #{element} is not registered."
    end
    add_foot_text(num, content)
    Footnote.new(num)
  end
end

#apply_to_Foottext(element, content) ⇒ Object

Raises:

  • (ArgumentError)


264
265
266
267
268
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 264

def apply_to_Foottext(element, content)
  num = get_footnote_num(element)
  raise ArgumentError, "[BUG] #{element} isn't registered." unless num
  FootText.new(num, content)
end

#apply_to_Headline(element, title) ⇒ Object



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 90

def apply_to_Headline(element, title)
  anchor = get_anchor(element)
  slide, @slide = @slide, nil
  case element.level
  when 1
    if @slides.empty?
      @slide = TitleSlide.new(Title.new(title))
    else
      @slide = Slide.new(HeadLine.new(title))
      @slide << Body.new
    end
    @foot_texts << []
    @slides << @slide
    @slide
  when 2
    if /\Anote\z/i =~ title.first.text
      NoteSetter.new(@slides.last)
    else
      SlidePropertySetter.new(@slides.last)
    end
  else
    nil
  end
end

#apply_to_Include(element) ⇒ Object



115
116
117
118
119
120
121
122
123
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 115

def apply_to_Include(element)
  paths = element.tree.include_paths
  fname = search_file(element.filename, paths, @include_suffix)
  if fname
    File.open(fname) do |f|
      instance_eval(f.read, fname, 0)
    end
  end
end

#apply_to_Index(element, content) ⇒ Object



236
237
238
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 236

def apply_to_Index(element, content)
  Index.new(content)
end

#apply_to_ItemList(element, items) ⇒ Object



141
142
143
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 141

def apply_to_ItemList(element, items)
  apply_to_List(element, items, ItemList)
end

#apply_to_ItemListItem(element, content) ⇒ Object



172
173
174
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 172

def apply_to_ItemListItem(element, content)
  apply_to_ListItem(element, content, ItemListItem.new)
end

#apply_to_Keyboard(element, content) ⇒ Object



232
233
234
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 232

def apply_to_Keyboard(element, content)
  Keyboard.new(content)
end

#apply_to_List(element, items, klass) ⇒ Object



161
162
163
164
165
166
167
168
169
170
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 161

def apply_to_List(element, items, klass)
  list = klass.new()
  items.each do |item|
    list << item
    if block_given?
      yield(list, item)
    end
  end
  list
end

#apply_to_ListItem(element, contents, item) ⇒ Object



194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 194

def apply_to_ListItem(element, contents, item)
  contents.each do |content|
    item << content
  end
  waited_paragraphs = item.elements.find_all do |element|
    element.is_a?(Paragraph) and element.have_wait_tag?
  end
  unless waited_paragraphs.empty?
    waited_paragraphs.each do |paragraph|
      paragraph.default_visible = true
      paragraph.clear_theme
      unregister_pause(paragraph)
    end

    item.default_visible = false
    item.clear_theme
    register_pause(item)
  end
  item
end

#apply_to_MethodList(element, items) ⇒ Object



157
158
159
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 157

def apply_to_MethodList(element, items)
  apply_to_List(element, items, MethodList)
end

#apply_to_MethodListItem(element, term, description) ⇒ Object



187
188
189
190
191
192
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 187

def apply_to_MethodListItem(element, term, description)
  method_term = parse_method(term)
  method_description = MethodDescription.new
  apply_to_ListItem(element, description, method_description)
  MethodListItem.new(method_term, method_description)
end

#apply_to_Reference_with_RDLabel(element, content) ⇒ Object



240
241
242
243
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 240

def apply_to_Reference_with_RDLabel(element, content)
  source = content.collect{|elem| elem.text}
  apply_to_extension("refer", element.label, source, content)
end

#apply_to_Reference_with_URL(element, content) ⇒ Object



245
246
247
248
249
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 245

def apply_to_Reference_with_URL(element, content)
  ref = ReferText.new(content)
  ref.to = element.label.url
  ref
end

#apply_to_String(str) ⇒ Object



277
278
279
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 277

def apply_to_String(str)
  Parser::Ext::Escape.escape_meta_character(str)
end

#apply_to_StringElement(element) ⇒ Object



215
216
217
218
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 215

def apply_to_StringElement(element)
  content = element.content.gsub(/\n\s*/, '')
  Text.new(apply_to_String(content))
end

#apply_to_TextBlock(element, content) ⇒ Object



125
126
127
128
129
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 125

def apply_to_TextBlock(element, content)
  paragraph = Paragraph.new(content)
  register_pause(paragraph) if paragraph.have_wait_tag?
  paragraph
end

#apply_to_Var(element, content) ⇒ Object



228
229
230
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 228

def apply_to_Var(element, content)
  Variable.new(content)
end

#apply_to_Verb(element) ⇒ Object



270
271
272
273
274
275
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 270

def apply_to_Verb(element)
  source = apply_to_String(element.content)
  content = element.content
  apply_to_extension("inline_verbatim", element.to_label,
                     source, content)
end

#apply_to_Verbatim(element) ⇒ Object



131
132
133
134
135
136
137
138
139
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 131

def apply_to_Verbatim(element)
  content = []
  element.each_line do |line|
    content << line
  end
  content_str = content.join("")
  /\A#\s*([^\n]+)(?:\n)?(?m:(.*)?)\z/ =~ content_str
  apply_to_extension("block_verbatim", $1, $2.to_s, content_str)
end

#create_have_text_element(klass, content) ⇒ Object



281
282
283
284
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 281

def create_have_text_element(klass, content)
  raise "Why???" if content.size > 1
  klass.new(content.collect{|x| x.text}.join(""))
end

#current_bodyObject



286
287
288
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 286

def current_body
  @slide.body
end

#visit(tree) ⇒ Object



51
52
53
54
55
# File 'lib/rabbit/parser/rd/rd2rabbit-lib.rb', line 51

def visit(tree)
  prepare_labels(tree, "label-")
  prepare_footnotes(tree)
  super(tree)
end