Class: Thor::CoreExt::OrderedHash

Inherits:
Hash
  • Object
show all
Includes:
Enumerable
Defined in:
lib/thor/core_ext/ordered_hash.rb,
lib/thor/core_ext/ordered_hash.rb

Overview

This class is based on the Ruby 1.9 ordered hashes.

It keeps the semantics and most of the efficiency of normal hashes while also keeping track of the order in which elements were set.

Defined Under Namespace

Classes: Node

Instance Method Summary collapse

Constructor Details

#initializeOrderedHash

Returns a new instance of OrderedHash.



20
21
22
# File 'lib/thor/core_ext/ordered_hash.rb', line 20

def initialize
  @hash = {}
end

Instance Method Details

#[](key) ⇒ Object



24
25
26
# File 'lib/thor/core_ext/ordered_hash.rb', line 24

def [](key)
  @hash[key] && @hash[key].value
end

#[]=(key, value) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/thor/core_ext/ordered_hash.rb', line 28

def []=(key, value)
  if node = @hash[key]
    node.value = value
  else
    node = Node.new(key, value)

    if @first.nil?
      @first = @last = node
    else
      node.prev = @last
      @last.next = node
      @last = node
    end
  end

  @hash[key] = node
  value
end

#delete(key) ⇒ Object



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/thor/core_ext/ordered_hash.rb', line 47

def delete(key)
  if node = @hash[key]
    prev_node = node.prev
    next_node = node.next

    next_node.prev = prev_node if next_node
    prev_node.next = next_node if prev_node

    @first = next_node if @first == node
    @last = prev_node  if @last  == node

    value = node.value
  end

  @hash.delete(key)
  value
end

#each {|[@first.key, @first.value]| ... } ⇒ Object

Yields:

  • ([@first.key, @first.value])


73
74
75
76
77
78
79
# File 'lib/thor/core_ext/ordered_hash.rb', line 73

def each
  return unless @first
  yield [@first.key, @first.value]
  node = @first
  yield [node.key, node.value] while node = node.next
  self
end

#empty?Boolean

Returns:

  • (Boolean)


95
96
97
# File 'lib/thor/core_ext/ordered_hash.rb', line 95

def empty?
  @hash.empty?
end

#keysObject



65
66
67
# File 'lib/thor/core_ext/ordered_hash.rb', line 65

def keys
  self.map { |k, v| k }
end

#merge(other) ⇒ Object



81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/thor/core_ext/ordered_hash.rb', line 81

def merge(other)
  hash = self.class.new

  self.each do |key, value|
    hash[key] = value
  end

  other.each do |key, value|
    hash[key] = value
  end

  hash
end

#valuesObject



69
70
71
# File 'lib/thor/core_ext/ordered_hash.rb', line 69

def values
  self.map { |k, v| v }
end