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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
#!/usr/bin/ruby1.8
#
# NAME
# custodian-enqueue - Insert sentinel-probes into a queue.
#
# SYNOPSIS
# custodian-enqueue [ -h | --help ]
# [ -m | --manual]
# [ -f | --file FILE]
# [ -d | --dump ]
# [ -t | --timeout N ]
#
# OPTIONS
#
# -h, --help Show a help message, and exit.
#
# -m, --manual Show this manual, and exit.
#
# -d, --dump Dump the generated JSON to the console; don't insert in the queue.
#
# -f, --file FILE Parse the given configuration file.
#
# -t, --timeout N Specify the timeout period for the tests.
#
#
# ABOUT
#
# This tool reads a single configuration file and parses it into a
# series of network & protocol tests. These tests are serialized
# into JSON, and stored in a beanstalkd queue.
#
# The intention is that the tests will be pulled from the queue and
# executed by the companion program custodian-dequeue. The dequeing
# process may occur up numerous other hosts
#
# CONFIGURATION FILE
#
# The configuration file is 99% compatible with that used in the tool
# custodian replaces.
#
#
# AUTHOR
#
# Steve Kemp <steve@bytemark.co.uk>
#
#
# Implementation of our parser.
#
require 'custodian/parser'
#
# Entry-point to our code.
#
if __FILE__ == $0 then
$help = false
$manual = false
begin
opts = GetoptLong.new(
[ "--dump", "-d", GetoptLong::NO_ARGUMENT ],
[ "--file", "-f", GetoptLong::REQUIRED_ARGUMENT ],
[ "--help", "-h", GetoptLong::NO_ARGUMENT ],
[ "--manual","-m", GetoptLong::NO_ARGUMENT ],
[ "--timeout","-t", GetoptLong::REQUIRED_ARGUMENT ]
)
opts.each do |opt, arg|
case opt
when "--dump":
ENV["DUMP"] = "1"
when "--file":
ENV["FILE"] = arg
when "--timeout":
ENV["TIMEOUT"] = arg
when "--help":
$help = true
when "--manual":
$manual = true
end
end
rescue StandardError => ex
puts "Option parsing failed: #{ex.to_s}"
exit
end
#
# CAUTION! Here be quality kode.
#
if $manual or $help
# Open the file, stripping the shebang line
lines = File.open(__FILE__){|fh| fh.readlines}[1..-1]
found_synopsis = false
lines.each do |line|
line.chomp!
break if line.empty?
if $help and !found_synopsis
found_synopsis = (line =~ /^#\s+SYNOPSIS\s*$/)
next
end
puts line[2..-1].to_s
break if $help and found_synopsis and line =~ /^#\s*$/
end
exit 0
end
#
# Create the parser
#
mon = MonitorConfig.new( ENV['FILE'] )
#
# Set the timeout
#
if ( !ENV['TIMEOUT'].nil? )
mon.set_timeout( ENV['TIMEOUT'] )
end
#
# Run
#
mon.parse_file()
end
|