Class: Puma::Util::HeaderHash

Inherits:
Hash
  • Object
show all
Defined in:
lib/puma/util.rb

Overview

A case-insensitive Hash that preserves the original case of a header when set.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash = {}) ⇒ HeaderHash

Returns a new instance of HeaderHash.



79
80
81
82
83
# File 'lib/puma/util.rb', line 79

def initialize(hash={})
  super()
  @names = {}
  hash.each { |k, v| self[k] = v }
end

Instance Attribute Details

#to_hashObject (readonly)



92
93
94
95
96
# File 'lib/puma/util.rb', line 92

def to_hash
  hash = {}
  each { |k,v| hash[k] = v }
  hash
end

Class Method Details

.new(hash = {}) ⇒ Object



75
76
77
# File 'lib/puma/util.rb', line 75

def self.new(hash={})
  HeaderHash === hash ? hash : super(hash)
end

Instance Method Details

#[](k) ⇒ Object



98
99
100
# File 'lib/puma/util.rb', line 98

def [](k)
  super(k) || super(@names[k.downcase])
end

#[]=(k, v) ⇒ Object



102
103
104
105
106
107
# File 'lib/puma/util.rb', line 102

def []=(k, v)
  canonical = k.downcase
  delete k if @names[canonical] && @names[canonical] != k # .delete is expensive, don't invoke it unless necessary
  @names[k] = @names[canonical] = k
  super k, v
end

#delete(k) ⇒ Object



109
110
111
112
113
114
# File 'lib/puma/util.rb', line 109

def delete(k)
  canonical = k.downcase
  result = super @names.delete(canonical)
  @names.delete_if { |name,| name.downcase == canonical }
  result
end

#eachObject



85
86
87
88
89
# File 'lib/puma/util.rb', line 85

def each
  super do |k, v|
    yield(k, v.respond_to?(:to_ary) ? v.to_ary.join("\n") : v)
  end
end

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

Returns:

  • (Boolean)


116
117
118
# File 'lib/puma/util.rb', line 116

def include?(k)
  @names.include?(k) || @names.include?(k.downcase)
end

#merge(other) ⇒ Object



129
130
131
132
# File 'lib/puma/util.rb', line 129

def merge(other)
  hash = dup
  hash.merge! other
end

#merge!(other) ⇒ Object



124
125
126
127
# File 'lib/puma/util.rb', line 124

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

#replace(other) ⇒ Object



134
135
136
137
138
# File 'lib/puma/util.rb', line 134

def replace(other)
  clear
  other.each { |k, v| self[k] = v }
  self
end