class Pico::Context::ConstResolver

Attributes

current_path[RW]

Public Class Methods

new(context:, expanded_const:, autoload_paths: ['']) click to toggle source
# File lib/pico/context/const_resolver.rb, line 8
def initialize(context:, expanded_const:, autoload_paths: [''])
  @autoload_paths = autoload_paths
  @context        = context
  @expanded_const = expanded_const
end

Public Instance Methods

autoload_paths=(paths) click to toggle source
# File lib/pico/context/const_resolver.rb, line 14
def autoload_paths=(paths)
  autoload_paths.clear
  autoload_paths.concat paths
end
check_loaded(rb_file) click to toggle source
# File lib/pico/context/const_resolver.rb, line 64
def check_loaded(rb_file)
  expected_const = expected_const_defined_in_rb_file rb_file
  walk_const_parts(expected_const).reduce context.mod do |mod, const_part|
    mod.const_defined?(const_part) or
      raise AutoloadError.new(const: expected_const, rb_file: rb_file)
    mod.const_get const_part
  end
end
const_get() click to toggle source
# File lib/pico/context/const_resolver.rb, line 19
def const_get
  walk_const_parts.reduce context.mod do |mod, const_part|
    return nil unless mod.const_defined?(const_part)
    mod.const_get const_part
  end
end
each_autoload_path() { || ... } click to toggle source
# File lib/pico/context/const_resolver.rb, line 26
def each_autoload_path
  autoload_paths.each do |autoload_path|
    @current_path = context.root.join autoload_path
    yield
  end
  @current_path = nil
end
each_possible_rb_file() { |rb_file| ... } click to toggle source
# File lib/pico/context/const_resolver.rb, line 34
def each_possible_rb_file
  each_autoload_path do
    base_path = current_path.join expanded_const.to_snake_case
    each_rb_file_from_base_path base_path do |rb_file|
      yield rb_file if File.exist?(rb_file)
    end
  end
end
each_rb_file_from_base_path(base_path) { |rb_file| ... } click to toggle source
# File lib/pico/context/const_resolver.rb, line 43
def each_rb_file_from_base_path(base_path)
  base_path.ascend do |path|
    return if path == context.root
    rb_file = path.sub_ext '.rb'
    yield rb_file if rb_file.file?
  end
end
expected_const_defined_in_rb_file(rb_file, autoload_path: current_path) click to toggle source
# File lib/pico/context/const_resolver.rb, line 73
def expected_const_defined_in_rb_file(rb_file, autoload_path: current_path)
  rel_path = rb_file.sub_ext('').relative_path_from(autoload_path).to_s
  matcher = %r{\A(#{rel_path.to_camel_case})}i
  expanded_const.match(matcher).captures.fetch 0
end
resolve() click to toggle source
# File lib/pico/context/const_resolver.rb, line 51
def resolve
  each_possible_rb_file do |rb_file|
    context.load_file rb_file
    check_loaded rb_file
  end
  const_get
end
walk_const_parts(const = expanded_const) click to toggle source
# File lib/pico/context/const_resolver.rb, line 59
def walk_const_parts(const = expanded_const)
  return to_enum(:walk_const_parts, const) if block_given?
  const.split '::'
end