2015-02-10 13:19:34 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; version 2 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
2015-03-12 21:12:38 +00:00
|
|
|
from pungi.checks import validate_options
|
2016-04-14 12:23:42 +00:00
|
|
|
from pungi import util
|
2015-02-10 13:19:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PhaseBase(object):
|
|
|
|
config_options = ()
|
|
|
|
|
|
|
|
def __init__(self, compose):
|
|
|
|
self.compose = compose
|
|
|
|
self.msg = "---------- PHASE: %s ----------" % self.name.upper()
|
|
|
|
self.finished = False
|
|
|
|
self._skipped = False
|
|
|
|
|
|
|
|
def validate(self):
|
|
|
|
errors = validate_options(self.compose.conf, self.config_options)
|
|
|
|
if errors:
|
|
|
|
raise ValueError("\n".join(errors))
|
|
|
|
|
|
|
|
def conf_assert_str(self, name):
|
|
|
|
missing = []
|
|
|
|
invalid = []
|
|
|
|
if name not in self.compose.conf:
|
|
|
|
missing.append(name)
|
|
|
|
elif not isinstance(self.compose.conf[name], str):
|
|
|
|
invalid.append(name, type(self.compose.conf[name]), str)
|
|
|
|
return missing, invalid
|
|
|
|
|
|
|
|
def skip(self):
|
|
|
|
if self._skipped:
|
|
|
|
return True
|
|
|
|
if self.compose.just_phases and self.name not in self.compose.just_phases:
|
|
|
|
return True
|
|
|
|
if self.name in self.compose.skip_phases:
|
|
|
|
return True
|
|
|
|
if self.name in self.compose.conf.get("skip_phases", []):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
self._skipped = self.skip()
|
|
|
|
if self._skipped:
|
|
|
|
self.compose.log_warning("[SKIP ] %s" % self.msg)
|
|
|
|
self.finished = True
|
|
|
|
return
|
|
|
|
self.compose.log_info("[BEGIN] %s" % self.msg)
|
2015-11-23 15:09:01 +00:00
|
|
|
self.compose.notifier.send('phase-start', phase_name=self.name)
|
2015-02-10 13:19:34 +00:00
|
|
|
self.run()
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
if self.finished:
|
|
|
|
return
|
|
|
|
if hasattr(self, "pool"):
|
|
|
|
self.pool.stop()
|
|
|
|
self.finished = True
|
|
|
|
self.compose.log_info("[DONE ] %s" % self.msg)
|
2015-11-23 15:09:01 +00:00
|
|
|
self.compose.notifier.send('phase-stop', phase_name=self.name)
|
2015-02-10 13:19:34 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
raise NotImplementedError
|
2016-03-23 09:38:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ConfigGuardedPhase(PhaseBase):
|
|
|
|
"""A phase that is skipped unless config option is set."""
|
|
|
|
|
|
|
|
def skip(self):
|
|
|
|
if super(ConfigGuardedPhase, self).skip():
|
|
|
|
return True
|
|
|
|
if not self.compose.conf.get(self.name):
|
|
|
|
self.compose.log_info("Config section '%s' was not found. Skipping." % self.name)
|
|
|
|
return True
|
|
|
|
return False
|
2016-04-14 12:23:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ImageConfigMixin(object):
|
|
|
|
"""
|
|
|
|
A mixin for phase that needs to access image related settings: ksurl,
|
|
|
|
version, target and release.
|
|
|
|
|
|
|
|
First, it checks config object given as argument, then it checks
|
|
|
|
phase-level configuration and finally falls back to global configuration.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(ImageConfigMixin, self).__init__(*args, **kwargs)
|
|
|
|
self._phase_ksurl = None
|
|
|
|
|
|
|
|
def get_config(self, cfg, opt):
|
|
|
|
return cfg.get(
|
|
|
|
opt, self.compose.conf.get(
|
2016-05-25 11:37:39 +00:00
|
|
|
'%s_%s' % (self.name, opt), self.compose.conf.get(
|
|
|
|
'global_%s' % opt)))
|
2016-04-14 12:23:42 +00:00
|
|
|
|
|
|
|
def get_release(self, cfg):
|
|
|
|
"""
|
|
|
|
If release is set explicitly to None, replace it with date and respin.
|
|
|
|
Uses configuration passed as argument, phase specific settings and
|
|
|
|
global settings.
|
|
|
|
"""
|
|
|
|
for key, conf in [('release', cfg),
|
2016-05-25 11:37:39 +00:00
|
|
|
('%s_release' % self.name, self.compose.conf),
|
2016-04-14 12:23:42 +00:00
|
|
|
('global_release', self.compose.conf)]:
|
|
|
|
if key in conf:
|
|
|
|
return conf[key] or self.compose.image_release
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get_ksurl(self, cfg):
|
|
|
|
"""
|
|
|
|
Get ksurl from `cfg`. If not present, fall back to phase defined one or
|
|
|
|
global one.
|
|
|
|
"""
|
|
|
|
if 'ksurl' in cfg:
|
|
|
|
return util.resolve_git_url(cfg['ksurl'])
|
2016-05-25 11:37:39 +00:00
|
|
|
if '%s_ksurl' % self.name in self.compose.conf:
|
2016-04-14 12:23:42 +00:00
|
|
|
return self.phase_ksurl
|
|
|
|
if 'global_ksurl' in self.compose.conf:
|
|
|
|
return self.global_ksurl
|
|
|
|
return None
|
|
|
|
|
|
|
|
@property
|
|
|
|
def phase_ksurl(self):
|
|
|
|
"""Get phase level ksurl, making sure to resolve it only once."""
|
|
|
|
# The phase-level setting is cached as instance attribute of the phase.
|
|
|
|
if not self._phase_ksurl:
|
2016-05-25 11:37:39 +00:00
|
|
|
ksurl = self.compose.conf.get('%s_ksurl' % self.name)
|
2016-04-14 12:23:42 +00:00
|
|
|
self._phase_ksurl = util.resolve_git_url(ksurl)
|
|
|
|
return self._phase_ksurl
|
|
|
|
|
|
|
|
@property
|
|
|
|
def global_ksurl(self):
|
|
|
|
"""Get global ksurl setting, making sure to resolve it only once."""
|
|
|
|
# The global setting is cached in the configuration object.
|
2016-05-05 08:44:27 +00:00
|
|
|
if 'private_global_ksurl' not in self.compose.conf:
|
2016-04-14 12:23:42 +00:00
|
|
|
ksurl = self.compose.conf.get('global_ksurl')
|
2016-05-05 08:44:27 +00:00
|
|
|
self.compose.conf['private_global_ksurl'] = util.resolve_git_url(ksurl)
|
|
|
|
return self.compose.conf['private_global_ksurl']
|