blob: d878d89567cfe0dcf0b6d29061fc385acfadb76d (
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
45
46
47
48
49
50
51
52
53
54
55
56
|
module Oxidized
require 'oxidized/node'
class Oxidized::NotSupported < StandardError; end
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 fetch node, group
raise Oxidized::NotSupported unless Oxidized.mgr.output.respond_to? :fetch
i = find_index node
self[i].output.new.fetch node, group
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, opt={}
require 'pp'
n = del node
if n
n.user = opt['user']
n.msg = opt['msg']
n.from = opt['from']
put n
end
end
alias :top :next
# @return [String] node from the head of the array
def get
(self << shift).last
end
end
end
|