blob: 823e39d3e3287a52eba4427a8686f4f748cc37c7 [file] [log] [blame]
#pylint: disable-msg=C0111
import cPickle
import logging
import os
import time
import common
from autotest_lib.scheduler import drone_utility, email_manager
from autotest_lib.client.bin import local_host
from autotest_lib.client.common_lib import error, global_config
CONFIG = global_config.global_config
AUTOTEST_INSTALL_DIR = CONFIG.get_config_value('SCHEDULER',
'drone_installation_directory')
DEFAULT_CONTAINER_PATH = CONFIG.get_config_value('AUTOSERV', 'container_path')
SSP_REQUIRED = CONFIG.get_config_value('SCHEDULER', 'exit_on_failed_ssp_setup',
default=False)
class DroneUnreachable(Exception):
"""The drone is non-sshable."""
pass
class SiteDrone(object):
"""
Attributes:
* allowed_users: set of usernames allowed to use this drone. if None,
any user can use this drone.
"""
def __init__(self, timestamp_remote_calls=True):
"""Instantiate an abstract drone.
@param timestamp_remote_calls: If true, drone_utility is invoked with
the --call_time option and the current time. Currently this is only
used for testing.
"""
self._calls = []
self.hostname = None
self.enabled = True
self.max_processes = 0
self.active_processes = 0
self.allowed_users = None
self._autotest_install_dir = AUTOTEST_INSTALL_DIR
self._host = None
self.timestamp_remote_calls = timestamp_remote_calls
self._processes_to_kill = []
def shutdown(self):
pass
@property
def _drone_utility_path(self):
return os.path.join(self._autotest_install_dir,
'scheduler', 'drone_utility.py')
def used_capacity(self):
"""Gets the capacity used by this drone
Returns a tuple of (percentage_full, -max_capacity). This is to aid
direct comparisons, so that a 0/10 drone is considered less heavily
loaded than a 0/2 drone.
This value should never be used directly. It should only be used in
direct comparisons using the basic comparison operators, or using the
cmp() function.
"""
if self.max_processes == 0:
return (1.0, 0)
return (float(self.active_processes) / self.max_processes,
-self.max_processes)
def usable_by(self, user):
if self.allowed_users is None:
return True
return user in self.allowed_users
def _execute_calls_impl(self, calls):
if not self._host:
raise ValueError('Drone cannot execute calls without a host.')
drone_utility_cmd = self._drone_utility_path
if self.timestamp_remote_calls:
drone_utility_cmd = '%s --call_time %s' % (
drone_utility_cmd, time.time())
logging.info("Running drone_utility on %s", self.hostname)
result = self._host.run('python %s' % drone_utility_cmd,
stdin=cPickle.dumps(calls), stdout_tee=None,
connect_timeout=300)
try:
return cPickle.loads(result.stdout)
except Exception: # cPickle.loads can throw all kinds of exceptions
logging.critical('Invalid response:\n---\n%s\n---', result.stdout)
raise
def _execute_calls(self, calls):
return_message = self._execute_calls_impl(calls)
for warning in return_message['warnings']:
subject = 'Warning from drone %s' % self.hostname
logging.warning(subject + '\n' + warning)
email_manager.manager.enqueue_notify_email(subject, warning)
return return_message['results']
def get_calls(self):
"""Returns the calls queued against this drone.
@return: A list of calls queued against the drone.
"""
return self._calls
def call(self, method, *args, **kwargs):
return self._execute_calls(
[drone_utility.call(method, *args, **kwargs)])
def queue_call(self, method, *args, **kwargs):
self._calls.append(drone_utility.call(method, *args, **kwargs))
def clear_call_queue(self):
self._calls = []
def execute_queued_calls(self):
"""Execute queued calls.
If there are any processes queued to kill, kill them then process the
remaining queued up calls.
"""
if self._processes_to_kill:
self.queue_call('kill_processes', self._processes_to_kill)
self.clear_processes_to_kill()
if not self._calls:
return
results = self._execute_calls(self._calls)
self.clear_call_queue()
return results
def set_autotest_install_dir(self, path):
pass
def queue_kill_process(self, process):
"""Queue a process to kill/abort.
@param process: Process to kill/abort.
"""
self._processes_to_kill.append(process)
def clear_processes_to_kill(self):
"""Reset the list of processes to kill for this tick."""
self._processes_to_kill = []
class _AbstractDrone(SiteDrone):
pass
class _LocalDrone(_AbstractDrone):
def __init__(self, timestamp_remote_calls=True):
super(_LocalDrone, self).__init__(
timestamp_remote_calls=timestamp_remote_calls)
self.hostname = 'localhost'
self._host = local_host.LocalHost()
def send_file_to(self, drone, source_path, destination_path,
can_fail=False):
if drone.hostname == self.hostname:
self.queue_call('copy_file_or_directory', source_path,
destination_path)
else:
self.queue_call('send_file_to', drone.hostname, source_path,
destination_path, can_fail)
class _RemoteDrone(_AbstractDrone):
def __init__(self, hostname, timestamp_remote_calls=True):
super(_RemoteDrone, self).__init__(
timestamp_remote_calls=timestamp_remote_calls)
self.hostname = hostname
self._host = drone_utility.create_host(hostname)
if not self._host.is_up():
logging.error('Drone %s is unpingable, kicking out', hostname)
raise DroneUnreachable
def set_autotest_install_dir(self, path):
self._autotest_install_dir = path
def shutdown(self):
super(_RemoteDrone, self).shutdown()
self._host.close()
def send_file_to(self, drone, source_path, destination_path,
can_fail=False):
if drone.hostname == self.hostname:
self.queue_call('copy_file_or_directory', source_path,
destination_path)
elif isinstance(drone, _LocalDrone):
drone.queue_call('get_file_from', self.hostname, source_path,
destination_path)
else:
self.queue_call('send_file_to', drone.hostname, source_path,
destination_path, can_fail)
def get_drone(hostname):
"""
Use this factory method to get drone objects.
"""
if hostname == 'localhost':
return _LocalDrone()
try:
return _RemoteDrone(hostname)
except DroneUnreachable:
return None