Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy.dependencies
"""
Determine what optional dependencies are needed.
"""
from __future__ import print_function
import sys
from os.path import dirname, join
from xml.etree import ElementTree
import pkg_resources
import yaml
from galaxy.containers import parse_containers_config
from galaxy.util import asbool
from galaxy.util.properties import (
find_config_file,
load_app_properties
)
[docs]class ConditionalDependencies(object):
[docs] def __init__(self, config_file):
self.config_file = config_file
self.config = None
self.job_runners = []
self.authenticators = []
self.object_stores = []
self.conditional_reqs = []
self.container_interface_types = []
self.job_rule_modules = []
self.error_report_modules = []
self.parse_configs()
self.get_conditional_requirements()
[docs] def parse_configs(self):
self.config = load_app_properties(config_file=self.config_file)
job_conf_xml = self.config.get(
"job_config_file",
join(dirname(self.config_file), 'job_conf.xml'))
try:
for plugin in ElementTree.parse(job_conf_xml).find('plugins').findall('plugin'):
if 'load' in plugin.attrib:
self.job_runners.append(plugin.attrib['load'])
except (OSError, IOError):
pass
try:
for plugin in ElementTree.parse(job_conf_xml).findall('.//destination/param[@id="rules_module"]'):
self.job_rule_modules.append(plugin.text)
except (OSError, IOError):
pass
object_store_conf_xml = self.config.get(
"object_store_config_file",
join(dirname(self.config_file), 'object_store_conf.xml'))
try:
for store in ElementTree.parse(object_store_conf_xml).iter('object_store'):
if 'type' in store.attrib:
self.object_stores.append(store.attrib['type'])
except (OSError, IOError):
pass
# Parse auth conf
auth_conf_xml = self.config.get(
"auth_config_file",
join(dirname(self.config_file), 'auth_conf.xml'))
try:
for auth in ElementTree.parse(auth_conf_xml).findall('authenticator'):
auth_type = auth.find('type')
if auth_type is not None:
self.authenticators.append(auth_type.text)
except (OSError, IOError):
pass
# Parse containers config
containers_conf_yml = self.config.get(
"containers_config_file",
join(dirname(self.config_file), 'containers_conf.yml'))
containers_conf = parse_containers_config(containers_conf_yml)
self.container_interface_types = [c.get('type', None) for c in containers_conf.values()]
# Parse error report config
error_report_yml = self.config.get(
"error_report_file",
join(dirname(self.config_file), 'error_report.yml'))
try:
with open(error_report_yml, "r") as f:
error_reporters = yaml.safe_load(f)
self.error_report_modules = [er.get('type', None) for er in error_reporters]
except (OSError, IOError):
pass
[docs] def get_conditional_requirements(self):
crfile = join(dirname(__file__), 'conditional-requirements.txt')
for req in pkg_resources.parse_requirements(open(crfile).readlines()):
self.conditional_reqs.append(req)
[docs] def check(self, name):
try:
name = name.replace('-', '_').replace('.', '_')
return getattr(self, 'check_' + name)()
except Exception:
return False
[docs] def check_psycopg2_binary(self):
return self.config["database_connection"].startswith("postgres")
[docs] def check_drmaa(self):
return ("galaxy.jobs.runners.drmaa:DRMAAJobRunner" in self.job_runners or
"galaxy.jobs.runners.slurm:SlurmJobRunner" in self.job_runners or
"galaxy.jobs.runners.drmaauniva:DRMAAUnivaJobRunner" in self.job_runners)
[docs] def check_galaxycloudrunner(self):
return ("galaxycloudrunner.rules" in self.job_rule_modules)
[docs] def check_pbs_python(self):
return "galaxy.jobs.runners.pbs:PBSJobRunner" in self.job_runners
[docs] def check_pykube(self):
return "galaxy.jobs.runners.kubernetes:KubernetesJobRunner" in self.job_runners
[docs] def check_chronos_python(self):
return "galaxy.jobs.runners.chronos:ChronosJobRunner" in self.job_runners
[docs] def check_weberror(self):
return (asbool(self.config["debug"]) and
asbool(self.config["use_interactive"]))
[docs] def check_python_ldap(self):
return ('ldap' in self.authenticators or
'activedirectory' in self.authenticators)
[docs] def check_watchdog(self):
install_set = {'auto', 'True', 'true', 'polling'}
return (self.config['watch_tools'] in install_set or
self.config['watch_tool_data_dir'] in install_set)
[docs] def check_docker(self):
return (self.config.get("enable_beta_containers_interface", False) and
('docker' in self.container_interface_types or
'docker_swarm' in self.container_interface_types))
[docs]def optional(config_file=None):
if not config_file:
config_file = find_config_file(['galaxy', 'universe_wsgi'])
if not config_file:
print("galaxy.dependencies.optional: no config file found", file=sys.stderr)
return []
rval = []
conditional = ConditionalDependencies(config_file)
for opt in conditional.conditional_reqs:
if conditional.check(opt.key):
rval.append(str(opt))
return rval