#!/usr/local/bin/python2.3
#GenerateHostInfo - Joey Hagedorn - hagedorn@mcs.anl.gov
'''Generates hostinfo.xml at a regular interval'''
__revision__ = '$Revision: 3318 $'
from os import dup2, execl, fork, uname, wait
import lxml.etree, sys, time, ConfigParser
if __name__ == '__main__':
if '-C' in sys.argv:
cfpath = sys.argv[sys.argv.index('-C') + 1]
else:
cfpath = '/etc/bcfg2.conf'
c = ConfigParser.ConfigParser()
c.read([cfpath])
clientdatapath = "%s/Metadata/clients.xml" % c.get('server', 'repository')
clientElement = lxml.etree.parse(clientdatapath)
hostlist = [client.get('name') for client in clientElement.findall("Client")]
pids = {}
null = open('/dev/null', 'w+')
#use uname to detect OS and use -t for darwin and -w for linux
#/bin/ping on linux /sbin/ping on os x
osname = uname()[0]
while hostlist or pids:
if hostlist and len(pids.keys()) < 15:
host = hostlist.pop()
pid = fork()
if pid == 0:
# in child
dup2(null.fileno(), sys.__stdin__.fileno())
dup2(null.fileno(), sys.__stdout__.fileno())
dup2(null.fileno(), sys.__stderr__.fileno())
if osname == 'Linux':
execl('/bin/ping', 'ping', '-w', '5', '-c', '1', host)
elif osname in ['Darwin', 'FreeBSD']:
execl('/sbin/ping', 'ping', '-t', '5', '-c', '1', host)
elif osname == 'SunOS':
execl('/usr/sbin/ping', 'ping', host, '56', '1')
else: #default
execl('/bin/ping', 'ping', '-w', '5', '-c', '1', host)
else:
pids[pid] = host
else:
try:
(cpid, status) = wait()
except OSError:
continue
chost = pids[cpid]
del pids[cpid]
elm = clientElement.xpath("//Client[@name='%s']"%chost)[0]
if status == 0:
elm.set("pingable",'Y')
elm.set("pingtime", str(time.time()))
else:
elm.set("pingable",'N')
fout = open(clientdatapath, 'w')
fout.write(lxml.etree.tostring(clientElement.getroot()))
fout.close()
syntax highlighted by Code2HTML, v. 0.9.1