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.



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

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

Instance Attribute Details

#to_hashObject (readonly)



87
88
89
90
91
# File 'lib/puma/util.rb', line 87

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

Class Method Details

.new(hash = {}) ⇒ Object



70
71
72
# File 'lib/puma/util.rb', line 70

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

Instance Method Details

#[](k) ⇒ Object



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

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

#[]=(k, v) ⇒ Object



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

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



104
105
106
107
108
109
# File 'lib/puma/util.rb', line 104

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

#eachObject



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

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)


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

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

#merge(other) ⇒ Object



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

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

#merge!(other) ⇒ Object



119
120
121
122
# File 'lib/puma/util.rb', line 119

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

#replace(other) ⇒ Object



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

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