Class: Tina4::Frond::LoopContext

Inherits:
Object
  • Object
show all
Defined in:
lib/tina4/frond.rb

Overview

– Lazy context overlay for for-loops (avoids full Hash#dup) –

Instance Method Summary collapse

Constructor Details

#initialize(parent) ⇒ LoopContext

Returns a new instance of LoopContext.



108
109
110
111
# File 'lib/tina4/frond.rb', line 108

def initialize(parent)
  @parent = parent
  @local = {}
end

Instance Method Details

#[](key) ⇒ Object



113
114
115
# File 'lib/tina4/frond.rb', line 113

def [](key)
  @local.key?(key) ? @local[key] : @parent[key]
end

#[]=(key, value) ⇒ Object



117
118
119
# File 'lib/tina4/frond.rb', line 117

def []=(key, value)
  @local[key] = value
end

#dupObject



152
153
154
155
156
# File 'lib/tina4/frond.rb', line 152

def dup
  copy = LoopContext.new(@parent)
  @local.each { |k, v| copy[k] = v }
  copy
end

#each(&block) ⇒ Object



164
165
166
# File 'lib/tina4/frond.rb', line 164

def each(&block)
  to_h.each(&block)
end

#fetch(key, *args, &block) ⇒ Object



127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/tina4/frond.rb', line 127

def fetch(key, *args, &block)
  if @local.key?(key)
    @local[key]
  elsif @parent.key?(key)
    @parent[key]
  elsif block
    yield key
  elsif !args.empty?
    args[0]
  else
    raise KeyError, "key not found: #{key.inspect}"
  end
end

#is_a?(klass) ⇒ Boolean

Returns:

  • (Boolean)


172
173
174
# File 'lib/tina4/frond.rb', line 172

def is_a?(klass)
  klass == Hash || super
end

#key?(key) ⇒ Boolean Also known as: include?, has_key?

Returns:

  • (Boolean)


121
122
123
# File 'lib/tina4/frond.rb', line 121

def key?(key)
  @local.key?(key) || @parent.key?(key)
end

#keysObject



176
177
178
# File 'lib/tina4/frond.rb', line 176

def keys
  (@parent.is_a?(LoopContext) ? @parent.keys : @parent.keys) | @local.keys
end

#merge(other) ⇒ Object



141
142
143
144
145
# File 'lib/tina4/frond.rb', line 141

def merge(other)
  dup_hash = to_h
  dup_hash.merge!(other)
  dup_hash
end

#merge!(other) ⇒ Object



147
148
149
150
# File 'lib/tina4/frond.rb', line 147

def merge!(other)
  other.each { |k, v| @local[k] = v }
  self
end

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

Returns:

  • (Boolean)


168
169
170
# File 'lib/tina4/frond.rb', line 168

def respond_to_missing?(name, include_private = false)
  @parent.respond_to?(name, include_private) || super
end

#to_hObject



158
159
160
161
162
# File 'lib/tina4/frond.rb', line 158

def to_h
  h = @parent.is_a?(LoopContext) ? @parent.to_h : @parent.dup
  @local.each { |k, v| h[k] = v }
  h
end