Class: Papercraft::Compiler
- Inherits:
-
Sirop::Sourcifier
- Object
- Sirop::Sourcifier
- Papercraft::Compiler
- Defined in:
- lib/papercraft/compiler.rb
Overview
A Compiler converts a template into an optimized form that generates HTML efficiently.
Constant Summary collapse
- @@html_debug_attribute_injector =
nil
Instance Attribute Summary collapse
-
#source_map ⇒ Object
readonly
Returns the value of attribute source_map.
Class Method Summary collapse
-
.compile(proc, mode: :html, wrap: true) ⇒ Proc
Compiles the given template into an optimized Proc that generates HTML.
-
.compile_to_code(proc, mode: :html, wrap: true) ⇒ Array
Compiles the given proc, returning the generated source map and the generated optimized source code.
- .html_debug_attribute_injector=(proc) ⇒ Object
- .source_location_to_fn(source_location) ⇒ Object
- .source_map_store ⇒ Object
- .store_source_map(source_map) ⇒ Object
Instance Method Summary collapse
-
#format_compiled_template(ast, orig_ast, wrap:, binding:) ⇒ String
Formats the source code for a compiled template proc.
-
#initialize(mode:) ⇒ Compiler
constructor
Initializes a compiler.
- #update_source_map(str = nil) ⇒ Object
- #visit_block_invocation_node(node) ⇒ Object
-
#visit_builtin_node(node) ⇒ void
Visits a builtin node.
-
#visit_const_tag_node(node) ⇒ void
Visits a const tag node.
-
#visit_defer_node(node) ⇒ void
Visits a defer node.
-
#visit_extension_tag_node(node) ⇒ void
Visits a extension tag node.
-
#visit_raw_node(node) ⇒ void
Visits a raw node.
-
#visit_render_children_node(node) ⇒ void
Visits a render_children node.
-
#visit_render_node(node) ⇒ void
Visits a render node.
-
#visit_render_yield_node(node) ⇒ void
Visits a render_yield node.
-
#visit_tag_node(node) ⇒ void
Visits a tag node.
-
#visit_text_node(node) ⇒ void
Visits a text node.
-
#with_source_map(orig_proc, orig_ast) ⇒ self
Initializes a source map.
Constructor Details
#initialize(mode:) ⇒ Compiler
Initializes a compiler.
77 78 79 80 81 82 |
# File 'lib/papercraft/compiler.rb', line 77 def initialize(mode:, **) super(**) @mode = mode @pending_html_parts = [] @level = 0 end |
Instance Attribute Details
#source_map ⇒ Object (readonly)
Returns the value of attribute source_map.
74 75 76 |
# File 'lib/papercraft/compiler.rb', line 74 def source_map @source_map end |
Class Method Details
.compile(proc, mode: :html, wrap: true) ⇒ Proc
Compiles the given template into an optimized Proc that generates HTML.
template = -> {
h1 'Hello, world!'
}
compiled = Papercraft::Compiler.compile(template)
compiled.render #=> '<h1>Hello, world!'
50 51 52 53 54 55 56 57 |
# File 'lib/papercraft/compiler.rb', line 50 def self.compile(proc, mode: :html, wrap: true) source_map, code = compile_to_code(proc, mode:, wrap:) if ENV['DEBUG'] == '1' puts '*' * 40 puts code end eval(code, proc.binding, source_map[:compiled_fn]) end |
.compile_to_code(proc, mode: :html, wrap: true) ⇒ Array
Compiles the given proc, returning the generated source map and the generated optimized source code.
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/papercraft/compiler.rb', line 26 def self.compile_to_code(proc, mode: :html, wrap: true) ast = Sirop.to_ast(proc) # adjust ast root if proc is defined with proc {} / lambda {} syntax ast = ast.block if ast.is_a?(Prism::CallNode) compiler = new(mode:).with_source_map(proc, ast) transformed_ast = TagTranslator.transform(ast.body, ast) compiler.format_compiled_template(transformed_ast, ast, wrap:, binding: proc.binding) [compiler.source_map, compiler.buffer] end |
.html_debug_attribute_injector=(proc) ⇒ Object
15 16 17 |
# File 'lib/papercraft/compiler.rb', line 15 def self.html_debug_attribute_injector=(proc) @@html_debug_attribute_injector = proc end |
.source_location_to_fn(source_location) ⇒ Object
70 71 72 |
# File 'lib/papercraft/compiler.rb', line 70 def self.source_location_to_fn(source_location) "::(#{source_location.join(':')})" end |
.source_map_store ⇒ Object
59 60 61 |
# File 'lib/papercraft/compiler.rb', line 59 def self.source_map_store @source__map_store ||= {} end |
.store_source_map(source_map) ⇒ Object
63 64 65 66 67 68 |
# File 'lib/papercraft/compiler.rb', line 63 def self.store_source_map(source_map) return if !source_map fn = source_map[:compiled_fn] source_map_store[fn] = source_map end |
Instance Method Details
#format_compiled_template(ast, orig_ast, wrap:, binding:) ⇒ String
Formats the source code for a compiled template proc.
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/papercraft/compiler.rb', line 116 def format_compiled_template(ast, orig_ast, wrap:, binding:) # generate source code @binding = binding update_source_map visit(ast) flush_html_parts!(semicolon_prefix: true) update_source_map source_code = @buffer @buffer = +'' if wrap @source_map[2] = "#{@orig_proc_fn}:#{loc_start(orig_ast.location).first}" emit("# frozen_string_literal: true\n->(__buffer__") params = orig_ast.parameters params = params&.parameters if params emit(', ') emit(format_code(params)) end if @render_yield_used || @render_children_used emit(', &__block__') end emit(") {\n") end @buffer << source_code emit_defer_postlude if @defer_mode if wrap emit('; __buffer__') adjust_whitespace(orig_ast.closing_loc) emit('}') end update_source_map Compiler.store_source_map(@source_map) @buffer end |
#update_source_map(str = nil) ⇒ Object
101 102 103 104 105 106 107 108 |
# File 'lib/papercraft/compiler.rb', line 101 def update_source_map(str = nil) return if !@source_map buffer_cur_line = @buffer.count("\n") + 1 orig_source_cur_line = @last_loc_start ? @last_loc_start.first : '?' @source_map[buffer_cur_line + @source_map_line_ofs] ||= "#{@orig_proc_fn}:#{orig_source_cur_line}" end |
#visit_block_invocation_node(node) ⇒ Object
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
# File 'lib/papercraft/compiler.rb', line 420 def visit_block_invocation_node(node) flush_html_parts! adjust_whitespace(node.location) emit("; #{node.call_node.receiver.name}.__papercraft_compiled_proc.(__buffer__") if node.call_node.arguments emit(', ') visit(node.call_node.arguments) end if node.call_node.block emit(", &(->") visit(node.call_node.block) emit(").__papercraft_compiled_proc") end emit(")") end |
#visit_builtin_node(node) ⇒ void
This method returns an undefined value.
Visits a builtin node.
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
# File 'lib/papercraft/compiler.rb', line 325 def visit_builtin_node(node) case node.tag when :tag args = node.call_node.arguments&.arguments when :html, :html5 emit_html(node.location, '<!DOCTYPE html>') emit_html(node.location, format_html_tag_open(node.location, 'html', node.attributes)) # emit_html(node.location, '<!DOCTYPE html><html>') visit(node.block.body) if node.block emit_html(node.block.closing_loc, '</html>') when :markdown args = node.call_node.arguments return if !args emit_html(node.location, interpolated("Papercraft.markdown(#{format_code(args)})")) end end |
#visit_const_tag_node(node) ⇒ void
This method returns an undefined value.
Visits a const tag node.
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
# File 'lib/papercraft/compiler.rb', line 219 def visit_const_tag_node(node) flush_html_parts! adjust_whitespace(node.location) emit("; ") if node.call_node.receiver emit(format_code(node.call_node.receiver)) emit('::') end emit("#{node.call_node.name}.__papercraft_compiled_proc.(__buffer__") if node.call_node.arguments emit(', ') visit(node.call_node.arguments) end emit(');') end |
#visit_defer_node(node) ⇒ void
This method returns an undefined value.
Visits a defer node.
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
# File 'lib/papercraft/compiler.rb', line 301 def visit_defer_node(node) block = node.block return if !block flush_html_parts! if !@defer_mode adjust_whitespace(node.call_node.) emit("__orig_buffer__ = __buffer__; __parts__ = __buffer__ = []; ") @defer_mode = true end adjust_whitespace(block.opening_loc) emit("__buffer__ << ->{") visit(block.body) flush_html_parts! adjust_whitespace(block.closing_loc) emit("}") end |
#visit_extension_tag_node(node) ⇒ void
This method returns an undefined value.
Visits a extension tag node.
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'lib/papercraft/compiler.rb', line 347 def visit_extension_tag_node(node) flush_html_parts! adjust_whitespace(node.location) emit("; Papercraft::Extensions[#{node.tag.inspect}].__papercraft_compiled_proc.(__buffer__") if node.call_node.arguments emit(', ') visit(node.call_node.arguments) end if node.block block_body = format_inline_block(node.block.body) block_params = [] if node.block.parameters.is_a?(Prism::ItParametersNode) raise Papercraft::Error, "Blocks passed to extensions cannot use it parameter" end if (params = node.block.parameters&.parameters) params.requireds.each do block_params << format_code(it) if !it.is_a?(Prism::ItParametersNode) end params.optionals.each do block_params << format_code(it) if !it.is_a?(Prism::ItParametersNode) end block_params << format_code(params.rest) if params.rest params.posts.each do block_params << format_code(it) if !it.is_a?(Prism::ItParametersNode) end params.keywords.each do block_params << format_code(it) if !it.is_a?(Prism::ItParametersNode) end block_params << format_code(params.keyword_rest) if params.keyword_rest end block_params = block_params.empty? ? '' : ", #{block_params.join(', ')}" emit(", &(proc { |__buffer__#{block_params}| #{block_body} }).__papercraft_compiled!") end emit(")") end |
#visit_raw_node(node) ⇒ void
This method returns an undefined value.
Visits a raw node.
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
# File 'lib/papercraft/compiler.rb', line 281 def visit_raw_node(node) return if !node.call_node.arguments args = node.call_node.arguments.arguments first_arg = args.first if args.length == 1 if is_static_node?(first_arg) emit_html(node.location, format_literal(first_arg)) else emit_html(node.location, interpolated("(#{format_code(first_arg)}).to_s")) end else raise "Don't know how to compile #{node}" end end |
#visit_render_children_node(node) ⇒ void
This method returns an undefined value.
Visits a render_children node.
408 409 410 411 412 413 414 415 416 417 418 |
# File 'lib/papercraft/compiler.rb', line 408 def visit_render_children_node(node) flush_html_parts! adjust_whitespace(node.location) @render_children_used = true emit("; __block__&.__papercraft_compiled_proc&.(__buffer__") if node.call_node.arguments emit(', ') visit(node.call_node.arguments) end emit(")") end |
#visit_render_node(node) ⇒ void
This method returns an undefined value.
Visits a render node.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'lib/papercraft/compiler.rb', line 239 def visit_render_node(node) args = node.call_node.arguments.arguments first_arg = args.first = node.block && "&(->(__buffer__) #{format_code(node.block)}.__papercraft_compiled!)" = ", #{block_embed}" if && node.call_node.arguments flush_html_parts! adjust_whitespace(node.location) if args.length == 1 emit("; #{format_code(first_arg)}.__papercraft_compiled_proc.(__buffer__#{block_embed})") else args_code = format_code_comma_separated_nodes(args[1..]) emit("; #{format_code(first_arg)}.__papercraft_compiled_proc.(__buffer__, #{args_code}#{block_embed})") end end |
#visit_render_yield_node(node) ⇒ void
This method returns an undefined value.
Visits a render_yield node.
390 391 392 393 394 395 396 397 398 399 400 401 402 |
# File 'lib/papercraft/compiler.rb', line 390 def visit_render_yield_node(node) flush_html_parts! adjust_whitespace(node.location) guard = @render_yield_used ? '' : "; raise(LocalJumpError, 'no block given (render_yield)') if !__block__" @render_yield_used = true emit("#{guard}; __block__.__papercraft_compiled_proc.(__buffer__") if node.call_node.arguments emit(', ') visit(node.call_node.arguments) end emit(")") end |
#visit_tag_node(node) ⇒ void
This method returns an undefined value.
Visits a tag node.
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/papercraft/compiler.rb', line 160 def visit_tag_node(node) @level += 1 tag = node.tag # adjust_whitespace(node.location) is_void = is_void_element?(tag) is_raw_inner_text = is_raw_inner_text_element?(tag) is_empty = !node.block && !node.inner_text if is_void && !is_empty raise Papercraft::Error, "Void element #{tag} cannot contain child nodes or inner text" end if @mode == :xml && is_empty emit_html( node.tag_location, format_xml_tag_self_closing(node.tag_location, tag, node.attributes) ) return end emit_html( node.tag_location, format_html_tag_open(node.tag_location, tag, node.attributes) ) return if is_void case node.block when Prism::BlockNode visit(node.block.body) when Prism::BlockArgumentNode flush_html_parts! adjust_whitespace(node.block) emit("; #{format_code(node.block.expression)}.__papercraft_compiled_proc.(__buffer__)") end if node.inner_text if is_static_node?(node.inner_text) if is_raw_inner_text emit_html(node.location, format_literal(node.inner_text)) else emit_html(node.location, ERB::Escape.html_escape(format_literal(node.inner_text))) end else if is_raw_inner_text emit_html(node.location, interpolated(format_code(node.inner_text))) else emit_html(node.location, interpolated("ERB::Escape.html_escape((#{format_code(node.inner_text)}))")) end end end emit_html(node.location, format_html_tag_close(tag)) ensure @level -= 1 end |
#visit_text_node(node) ⇒ void
This method returns an undefined value.
Visits a text node.
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
# File 'lib/papercraft/compiler.rb', line 261 def visit_text_node(node) return if !node.call_node.arguments args = node.call_node.arguments.arguments first_arg = args.first if args.length == 1 if is_static_node?(first_arg) emit_html(node.location, ERB::Escape.html_escape(format_literal(first_arg))) else emit_html(node.location, interpolated("ERB::Escape.html_escape(#{format_code(first_arg)})")) end else raise "Don't know how to compile #{node}" end end |
#with_source_map(orig_proc, orig_ast) ⇒ self
Initializes a source map.
89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/papercraft/compiler.rb', line 89 def with_source_map(orig_proc, orig_ast) @fn = orig_proc.source_location.first @orig_proc = orig_proc @orig_proc_fn = orig_proc.source_location.first @source_map = { source_fn: orig_proc.source_location.first, compiled_fn: Compiler.source_location_to_fn(orig_proc.source_location) } @source_map_line_ofs = 2 self end |