rabl-rails/lib/rabl-fast-json/library.rb

39 lines
1.1 KiB
Ruby
Raw Normal View History

2012-02-27 13:49:34 +00:00
require 'singleton'
module RablFastJson
class Library
include Singleton
2012-03-02 13:39:20 +00:00
attr_accessor :view_renderer
2012-02-27 13:49:34 +00:00
def initialize
@cached_templates = {}
end
def get_rendered_template(source, context)
path = context.instance_variable_get(:@virtual_path)
@view_renderer = context.instance_variable_get(:@view_renderer)
2012-03-02 10:32:11 +00:00
2012-03-27 16:35:36 +00:00
compiled_template = get_compiled_template(path, source)
2012-02-27 13:49:34 +00:00
compiled_template.context = context
2012-03-22 10:24:55 +00:00
body = compiled_template.render
ActiveSupport::JSON.encode(compiled_template.has_root_name? ? { compiled_template.root_name => body } : body)
2012-02-27 13:49:34 +00:00
end
2012-03-27 16:35:36 +00:00
def get_compiled_template(path, source)
2012-04-02 14:22:43 +00:00
if path && RablFastJson.cache_templates?
@cached_templates[path] ||= Compiler.new.compile_source(source)
@cached_templates[path].dup
2012-04-02 14:22:43 +00:00
else
Compiler.new.compile_source(source)
end
2012-02-27 13:49:34 +00:00
end
2012-03-27 16:35:36 +00:00
def get(path)
2012-02-27 13:49:34 +00:00
template = @cached_templates[path]
2012-04-02 14:22:43 +00:00
return template unless template.nil?
2012-02-27 13:49:34 +00:00
t = @view_renderer.lookup_context.find_template(path, [], false)
2012-03-27 16:35:36 +00:00
get_compiled_template(path, t.source)
2012-02-27 13:49:34 +00:00
end
end
end