Class: TTY::Tree::HashWalker

Inherits:
Object
  • Object
show all
Defined in:
lib/tty/tree/hash_walker.rb

Overview

Walk and collect nodes from hash data strcture.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ HashWalker

Returns a new instance of HashWalker.



20
21
22
23
24
25
26
# File 'lib/tty/tree/hash_walker.rb', line 20

def initialize(options = {})
  @nodes       = []
  @files_count = 0
  @dirs_count  = 0
  @level       = options.fetch(:level) { -1 }
  @file_limit  = options.fetch(:file_limit) { - 1 }
end

Instance Attribute Details

#dirs_countObject (readonly)



18
19
20
# File 'lib/tty/tree/hash_walker.rb', line 18

def dirs_count
  @dirs_count
end

#files_countObject (readonly)



16
17
18
# File 'lib/tty/tree/hash_walker.rb', line 16

def files_count
  @files_count
end

#nodesObject (readonly)



14
15
16
# File 'lib/tty/tree/hash_walker.rb', line 14

def nodes
  @nodes
end

Instance Method Details

#traverse(data) ⇒ Object



28
29
30
# File 'lib/tty/tree/hash_walker.rb', line 28

def traverse(data)
  walk(data, Pathname.new(''), '', 0, false)
end

#walk(data, parent_path, prefix, level, is_last) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/tty/tree/hash_walker.rb', line 32

def walk(data, parent_path, prefix, level, is_last)
  node = is_last ? LeafNode : Node

  case data
  when Hash
    return if @level != -1 && level + 1 > @level

    data.each do |dir, item|
      dir_node = node.new(dir.to_s, parent_path, prefix, level)
      @nodes << dir_node
      @dirs_count += 1 unless dir_node.root?

      if level > 0
        postfix = ':pipe'
        postfix = ':space' if is_last
      else
        postfix = ''
      end

      walk(item, parent_path + dir.to_s,
           prefix + postfix, level + 1, false)
    end
  when Array
    return if @file_limit != -1 && data.size > @file_limit

    last_data_index = data.size - 1

    data.each_with_index do |item, i|
      last = (last_data_index == i)

      walk(item, parent_path, prefix, level, last)
    end
  else
    @nodes << node.new(data.to_s, parent_path, prefix, level)
    @files_count += 1
  end
end