Sha256: 2a53668363fc1c61cd85cb5153ad37b614f2fe73a14d6047dcbf71100a2a29d7

Contents?: true

Size: 1.35 KB

Versions: 7

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

require 'dry/system/constants'

module Dry
  module System
    # Default manual registration implementation
    #
    # This is currently configured by default for every System::Container.
    # Manual registrar objects are responsible for loading files from configured
    # manual registration paths, which should hold code to explicitly register
    # certain objects with the container.
    #
    # @api private
    class ManualRegistrar
      attr_reader :container

      attr_reader :config

      def initialize(container)
        @container = container
        @config = container.config
      end

      # @api private
      def finalize!
        ::Dir[registrations_dir.join(RB_GLOB)].sort.each do |file|
          call(File.basename(file, RB_EXT))
        end
      end

      # @api private
      def call(name)
        name = name.respond_to?(:root_key) ? name.root_key.to_s : name

        require(root.join(config.registrations_dir, name))
      end

      def file_exists?(name)
        name = name.respond_to?(:root_key) ? name.root_key.to_s : name

        File.exist?(File.join(registrations_dir, "#{name}#{RB_EXT}"))
      end

      private

      # @api private
      def registrations_dir
        root.join(config.registrations_dir)
      end

      # @api private
      def root
        container.root
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
dry-system-0.17.0 lib/dry/system/manual_registrar.rb
dry-system-0.15.0 lib/dry/system/manual_registrar.rb
dry-system-0.14.1 lib/dry/system/manual_registrar.rb
dry-system-0.14.0 lib/dry/system/manual_registrar.rb
dry-system-0.13.2 lib/dry/system/manual_registrar.rb
dry-system-0.13.1 lib/dry/system/manual_registrar.rb
dry-system-0.13.0 lib/dry/system/manual_registrar.rb