Class: ROM::Registry Private

Inherits:
Object
  • Object
show all
Extended by:
Initializer
Includes:
Enumerable
Defined in:
lib/rom/registry.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Initializer

extended

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name) ⇒ Object (private)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



91
92
93
# File 'lib/rom/registry.rb', line 91

def method_missing(name, *)
  elements.fetch(name) { super }
end

Instance Attribute Details

#cacheCache (readonly)

Returns local cache instance.

Returns:

  • (Cache)

    local cache instance



23
# File 'lib/rom/registry.rb', line 23

option :cache, default: -> { Cache.new }

#elementsHash (readonly)

Returns Internal hash for storing registry objects.

Returns:

  • (Hash)

    Internal hash for storing registry objects



19
# File 'lib/rom/registry.rb', line 19

param :elements

Class Method Details

.element_not_found_errorObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



38
39
40
# File 'lib/rom/registry.rb', line 38

def self.element_not_found_error
  ElementNotFoundError
end

.new(*args) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



26
27
28
29
30
31
32
33
34
35
# File 'lib/rom/registry.rb', line 26

def self.new(*args)
  case args.size
  when 0
    super({}, {})
  when 1
    super(*args, {})
  else
    super(*args)
  end
end

Instance Method Details

#eachObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



61
62
63
64
# File 'lib/rom/registry.rb', line 61

def each
  return to_enum unless block_given?
  elements.each { |element| yield(element) }
end

#fetch(key) ⇒ Object Also known as: []

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Raises:

  • (ArgumentError)


72
73
74
75
76
77
78
79
80
# File 'lib/rom/registry.rb', line 72

def fetch(key)
  raise ArgumentError.new('key cannot be nil') if key.nil?

  elements.fetch(key.to_sym) do
    return yield if block_given?

    raise self.class.element_not_found_error.new(key, self)
  end
end

#key?(name) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


67
68
69
# File 'lib/rom/registry.rb', line 67

def key?(name)
  !name.nil? && elements.key?(name.to_sym)
end

#map(&block) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



53
54
55
56
57
58
# File 'lib/rom/registry.rb', line 53

def map(&block)
  new_elements = elements.each_with_object({}) do |(name, element), h|
    h[name] = yield(element)
  end
  self.class.new(new_elements, options)
end

#merge(other) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



43
44
45
# File 'lib/rom/registry.rb', line 43

def merge(other)
  self.class.new(Hash(other), options)
end

#respond_to_missing?(name, include_private = false) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


84
85
86
# File 'lib/rom/registry.rb', line 84

def respond_to_missing?(name, include_private = false)
  elements.key?(name) || super
end

#to_hashObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



48
49
50
# File 'lib/rom/registry.rb', line 48

def to_hash
  elements
end