Class: Dry::Container::Resolver

Inherits:
Object
  • Object
show all
Defined in:
lib/dry/container/resolver.rb

Overview

Default resolver for resolving items from container

Instance Method Summary collapse

Instance Method Details

#call(container, key) ⇒ Mixed

Resolve an item from the container

Parameters:

  • container (Concurrent::Hash)

    The container

  • key (Mixed)

    The key for the item you wish to resolve

Returns:

  • (Mixed)

Raises:

  • (Dry::Conainer::Error)

    If the given key is not registered with the container



20
21
22
23
24
25
26
# File 'lib/dry/container/resolver.rb', line 20

def call(container, key)
  item = container.fetch(key.to_s) do
    raise Error, "Nothing registered with the key #{key.inspect}"
  end

  item.call
end

#each(container, &block) ⇒ Object

Note:

In discussions with other developers, it was felt that being able to iterate over not just the registered keys, but to see what was registered would be very helpful. This is a step toward doing that.

Calls block once for each key in container, passing the key and the registered item parameters.

If no block is given, an enumerator is returned instead.

Returns:

  • Key, Value



72
73
74
# File 'lib/dry/container/resolver.rb', line 72

def each(container, &block)
  container.map { |key, value| [key, value.call] }.each(&block)
end

#each_key(container, &block) ⇒ Object

Calls block once for each key in container, passing the key as a parameter.

If no block is given, an enumerator is returned instead.

Returns:

  • Hash



58
59
60
# File 'lib/dry/container/resolver.rb', line 58

def each_key(container, &block)
  container.each_key(&block)
end

#key?(container, key) ⇒ Bool

Check whether an items is registered under the given key

Parameters:

  • container (Concurrent::Hash)

    The container

  • key (Mixed)

    The key you wish to check for registration with

Returns:

  • (Bool)


38
39
40
# File 'lib/dry/container/resolver.rb', line 38

def key?(container, key)
  container.key?(key.to_s)
end

#keys(container) ⇒ Array

An array of registered names for the container

Returns:

  • (Array)


47
48
49
# File 'lib/dry/container/resolver.rb', line 47

def keys(container)
  container.keys
end