Module: Dry::Container::Mixin
- Included in:
- Dry::Container
- Defined in:
- lib/dry/container/mixin.rb,
lib/dry/container/stub.rb
Overview
Mixin to expose Inversion of Control (IoC) container behaviour
rubocop:disable Metrics/ModuleLength
Defined Under Namespace
Modules: Initializer
Class Method Summary collapse
Instance Method Summary collapse
-
#[](key) ⇒ Mixed
Resolve an item from the container.
- #_container ⇒ Object
- #clone ⇒ Object
-
#decorate(key, with: nil, &block) ⇒ Dry::Container::Mixin
Decorates an item from the container with specified decorator.
- #dup ⇒ Object
-
#each(&block) ⇒ Enumerator
Calls block once for each key/value pair in the container, passing the key and the registered item parameters.
-
#each_key(&block) ⇒ Dry::Container::Mixin
Calls block once for each key in container, passing the key as a parameter.
-
#enable_stubs! ⇒ Object
Enable stubbing functionality into the current container.
-
#freeze ⇒ Object
Freeze the container.
-
#import(namespace) ⇒ Dry::Container::Mixin
Import a namespace.
-
#key?(key) ⇒ Bool
Check whether an item is registered under the given key.
-
#keys ⇒ Array<String>
An array of registered names for the container.
-
#merge(other, namespace: nil, &block) ⇒ Dry::Container::Mixin
Merge in the items of the other container.
-
#namespace(namespace, &block) ⇒ Dry::Container::Mixin
Evaluate block and register items in namespace.
-
#register(key, contents = nil, options = EMPTY_HASH) { ... } ⇒ Dry::Container::Mixin
Register an item with the container to be resolved later.
-
#resolve(key) {|key| ... } ⇒ Mixed
Resolve an item from the container.
Class Method Details
.extended(base) ⇒ Object
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/dry/container/mixin.rb', line 96 def self.extended(base) hooks_mod = ::Module.new do def inherited(subclass) subclass.instance_variable_set(:@_container, @_container.dup) super end end base.class_eval do extend Configuration extend hooks_mod @_container = ::Concurrent::Hash.new end end |
.included(base) ⇒ Object
121 122 123 124 125 126 127 128 129 130 |
# File 'lib/dry/container/mixin.rb', line 121 def self.included(base) base.class_eval do extend Configuration prepend Initializer def config self.class.config end end end |
Instance Method Details
#[](key) ⇒ Mixed
Resolve an item from the container
187 188 189 |
# File 'lib/dry/container/mixin.rb', line 187 def [](key) resolve(key) end |
#_container ⇒ Object
331 332 333 |
# File 'lib/dry/container/mixin.rb', line 331 def _container @_container end |
#clone ⇒ Object
343 344 345 346 347 348 349 |
# File 'lib/dry/container/mixin.rb', line 343 def clone copy = super unless copy.frozen? copy.instance_variable_set(:@_container, _container.dup) end copy end |
#decorate(key, with: nil, &block) ⇒ Dry::Container::Mixin
Decorates an item from the container with specified decorator
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/dry/container/mixin.rb', line 270 def decorate(key, with: nil, &block) key = key.to_s original = _container.delete(key) do raise Error, "Nothing registered with the key #{key.inspect}" end if with.is_a?(Class) decorator = with.method(:new) elsif block.nil? && !with.respond_to?(:call) raise Error, "Decorator needs to be a Class, block, or respond to the `call` method" else decorator = with || block end _container[key] = original.map(decorator) self end |
#dup ⇒ Object
336 337 338 339 340 |
# File 'lib/dry/container/mixin.rb', line 336 def dup copy = super copy.instance_variable_set(:@_container, _container.dup) copy end |
#each(&block) ⇒ Enumerator
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/value pair in the container, passing the key and the registered item parameters.
If no block is given, an enumerator is returned instead.
261 262 263 |
# File 'lib/dry/container/mixin.rb', line 261 def each(&block) config.resolver.each(_container, &block) end |
#each_key(&block) ⇒ Dry::Container::Mixin
Calls block once for each key in container, passing the key as a parameter.
If no block is given, an enumerator is returned instead.
244 245 246 247 |
# File 'lib/dry/container/mixin.rb', line 244 def each_key(&block) config.resolver.each_key(_container, &block) self end |
#enable_stubs! ⇒ Object
Enable stubbing functionality into the current container
50 51 52 |
# File 'lib/dry/container/stub.rb', line 50 def enable_stubs! extend ::Dry::Container::Stub end |
#freeze ⇒ Object
Freeze the container. Nothing can be registered after freezing
324 325 326 327 328 |
# File 'lib/dry/container/mixin.rb', line 324 def freeze super _container.freeze self end |
#import(namespace) ⇒ Dry::Container::Mixin
Import a namespace
315 316 317 318 319 |
# File 'lib/dry/container/mixin.rb', line 315 def import(namespace) namespace(namespace.name, &namespace.block) self end |
#key?(key) ⇒ Bool
Check whether an item is registered under the given key
224 225 226 |
# File 'lib/dry/container/mixin.rb', line 224 def key?(key) config.resolver.key?(_container, key) end |
#keys ⇒ Array<String>
An array of registered names for the container
233 234 235 |
# File 'lib/dry/container/mixin.rb', line 233 def keys config.resolver.keys(_container) end |
#merge(other, namespace: nil, &block) ⇒ Dry::Container::Mixin
Merge in the items of the other container
201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/dry/container/mixin.rb', line 201 def merge(other, namespace: nil, &block) if namespace _container.merge!( other._container.each_with_object(::Concurrent::Hash.new) { |(key, item), hsh| hsh[PREFIX_NAMESPACE.call(namespace, key, config)] = item }, &block ) else _container.merge!(other._container, &block) end self end |
#namespace(namespace, &block) ⇒ Dry::Container::Mixin
Evaluate block and register items in namespace
296 297 298 299 300 301 302 303 304 305 |
# File 'lib/dry/container/mixin.rb', line 296 def namespace(namespace, &block) ::Dry::Container::NamespaceDSL.new( self, namespace, config.namespace_separator, &block ) self end |
#register(key, contents = nil, options = EMPTY_HASH) { ... } ⇒ Dry::Container::Mixin
Register an item with the container to be resolved later
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/dry/container/mixin.rb', line 147 def register(key, contents = nil, = EMPTY_HASH, &block) if block_given? item = block = contents if contents.is_a?(::Hash) else item = contents end config.registry.call(_container, key, item, ) self rescue FrozenError raise FrozenError, "can't modify frozen #{self.class} (when attempting to register '#{key}')" end |
#resolve(key) {|key| ... } ⇒ Mixed
Resolve an item from the container
174 175 176 |
# File 'lib/dry/container/mixin.rb', line 174 def resolve(key, &block) config.resolver.call(_container, key, &block) end |