2 # Thierry Parmentelat - INRIA Sophia Antipolis
6 # allows to pick an available IP among a pool
8 # input is expressed as a list of tuples (hostname,ip,user_data)
9 # that can be searched iteratively for a free slot
10 # TestPoolIP : look for a free IP address
11 # TestPoolQemu : look for a test_box with no qemu running
13 # pool = [ (hostname1,ip1,user_data1),
14 # (hostname2,ip2,user_data2),
15 # (hostname3,ip3,user_data2),
16 # (hostname4,ip4,user_data4) ]
17 # assuming that ip1 and ip3 are taken (pingable), then we'd get
18 # pool=TestPoolIP(pool)
19 # pool.next_free() -> entry2
20 # pool.next_free() -> entry4
21 # pool.next_free() -> None
22 # that is, even if ip2 is not busy/pingable when the second next_free() is issued
29 def __init__ (self, pool, options,message):
36 def match (self,triple,hostname_or_ip):
38 return h.find(hostname_or_ip)>=0 or (i and i.find(hostname_or_ip)>=0)
40 def locate_entry (self, hostname_or_ip):
41 for (h,i,u) in self.pool:
42 if self.match ( (h,i,u,), hostname_or_ip):
45 utils.header('TestPool.locate_entry: Could not locate entry for %r in pool:'%hostname_or_ip)
48 # the hostnames provided (from a tracker) are considered last
49 def next_free (self, tracker_hostnames):
50 if self.options.quiet:
51 print 'TestPool is looking for a %s'%self.message,
52 # create 2 lists of (h,i,u) entries, the ones not in the tracker, and the ones in the tracker
55 for (h,i,u) in self.pool:
57 for hostname in tracker_hostnames:
58 if self.match ( (h,i,u,) , hostname) : in_tracker = True
59 if in_tracker: in_track_pool.append ( (h,i,u,) )
60 else: out_track_pool.append ( (h,i,u,) )
61 # consider outsiders first
62 for (hostname,ip,user_data) in out_track_pool + in_track_pool:
63 utils.header ('* candidate %s' % hostname)
64 for (hostname,ip,user_data) in out_track_pool + in_track_pool:
65 if hostname in self.busy:
67 if not self.options.quiet:
68 utils.header('TestPool : checking %s'%hostname)
71 if self.free_hostname(hostname):
72 if not self.options.quiet:
73 utils.header('%s is available'%hostname)
76 self.busy.append(hostname)
77 return (hostname,ip,user_data)
79 self.busy.append(hostname)
80 raise Exception, "No space left in pool (%s)"%self.message
82 class TestPoolIP (TestPool):
84 def __init__ (self,pool,options):
85 TestPool.__init__(self,pool,options,"free IP address")
87 def free_hostname (self, hostname):
88 return not self.check_ping(hostname)
90 # OS-dependent ping option (support for macos, for convenience)
91 ping_timeout_option = None
92 # checks whether a given hostname/ip responds to ping
93 def check_ping (self,hostname):
94 if not TestPoolIP.ping_timeout_option:
95 (status,osname) = commands.getstatusoutput("uname -s")
97 raise Exception, "TestPool: Cannot figure your OS name"
99 TestPoolIP.ping_timeout_option="-w"
100 elif osname == "Darwin":
101 TestPoolIP.ping_timeout_option="-t"
103 if self.options.verbose:
104 utils.header ("TestPoolIP: pinging %s"%hostname)
105 command="ping -c 1 %s 1 %s"%(TestPoolIP.ping_timeout_option,hostname)
106 (status,output) = commands.getstatusoutput(command)
109 class TestPoolQemu (TestPool):
111 def __init__ (self,pool,options):
112 TestPool.__init__(self,pool,options,"free qemu box")
114 def free_hostname (self, hostname):
115 return not self.busy_qemu(hostname)
117 # is there a qemu runing on that box already ?
118 def busy_qemu (self, hostname):
119 if self.options.verbose:
120 utils.header("TestPoolQemu: checking for running qemu instances on %s"%hostname)
121 command="ssh -o ConnectTimeout=5 root@%s ps -e -o cmd"%hostname
122 (status,output) = commands.getstatusoutput(command)
123 # if we fail to run that, let's assume we don't have ssh access, so
124 # we pretend the box is busy
127 elif output.find("qemu") >=0 :