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.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash = {}) ⇒ HeaderHash

Returns a new instance of HeaderHash.



71
72
73
74
75
# File 'lib/puma/util.rb', line 71

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

Class Method Details

.new(hash = {}) ⇒ Object



67
68
69
# File 'lib/puma/util.rb', line 67

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

Instance Method Details

#[](k) ⇒ Object



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

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

#[]=(k, v) ⇒ Object



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

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



100
101
102
103
104
105
# File 'lib/puma/util.rb', line 100

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

#eachObject



77
78
79
80
81
# File 'lib/puma/util.rb', line 77

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)


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

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

#merge(other) ⇒ Object



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

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

#merge!(other) ⇒ Object



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

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

#replace(other) ⇒ Object



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

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

#to_hashObject



83
84
85
86
87
# File 'lib/puma/util.rb', line 83

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