summaryrefslogtreecommitdiff
path: root/lib/oxidized/nodes.rb
blob: 3e5834858fad60394f652bfd6c43357c52faea06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module Oxidized
  require 'oxidized/node'
  class Nodes < Array
    attr_accessor :source
    alias :put :unshift
    def initialize *args
      super
      load if args.empty?
    end
    def load
      new = []
      @source = CFG.source[:default]
      Oxidized.mgr.source = @source
      Oxidized.mgr.source[@source].new.load.each do |node|
        new.push Node.new node
      end
      replace new
    end
    def list
      map { |e| e.name }
    end
    def find_index node
      index { |e| e.name == node }
    end
    def show node
      i = find_index node
      self[i].serialize if i
    end
    def del node
      i = find_index node
      delete_at i if i
    end
    # @param node [String] name of the node moved into the head of array
    def next node
      n = del node
      put n if n
    end
    alias :top :next
    # @return [String] node from the head of the array
    def get
      (self << shift).last
    end
  end
end