2011-10-04 16:45:29 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2013-04-30 08:58:23 +00:00
|
|
|
# 2010-2013 Nico Schottelius (nico-cdist at schottelius.org)
|
2011-10-04 16:45:29 +00:00
|
|
|
#
|
|
|
|
# This file is part of cdist.
|
|
|
|
#
|
|
|
|
# cdist 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, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# cdist 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
2011-10-10 16:50:06 +00:00
|
|
|
import shutil
|
2011-10-08 01:24:05 +00:00
|
|
|
import time
|
2012-01-19 06:51:02 +00:00
|
|
|
import pprint
|
2011-10-04 16:45:29 +00:00
|
|
|
|
2011-10-19 13:49:32 +00:00
|
|
|
import cdist
|
2011-10-13 14:27:41 +00:00
|
|
|
from cdist import core
|
2011-10-06 16:26:55 +00:00
|
|
|
|
2011-10-11 14:45:36 +00:00
|
|
|
class ConfigInstall(object):
|
2011-10-06 14:52:56 +00:00
|
|
|
"""Cdist main class to hold arbitrary data"""
|
|
|
|
|
2011-10-18 11:32:36 +00:00
|
|
|
def __init__(self, context):
|
2011-10-06 14:52:56 +00:00
|
|
|
|
2011-10-11 14:45:36 +00:00
|
|
|
self.context = context
|
2011-10-11 15:09:47 +00:00
|
|
|
self.log = logging.getLogger(self.context.target_host)
|
2011-10-10 09:31:37 +00:00
|
|
|
|
2011-10-13 14:27:41 +00:00
|
|
|
# Initialise local directory structure
|
2012-12-19 20:10:18 +00:00
|
|
|
self.context.local.create_files_dirs()
|
2011-10-13 14:27:41 +00:00
|
|
|
# Initialise remote directory structure
|
2012-12-19 20:10:18 +00:00
|
|
|
self.context.remote.create_files_dirs()
|
2011-10-12 14:59:02 +00:00
|
|
|
|
2012-12-19 20:10:18 +00:00
|
|
|
self.explorer = core.Explorer(self.context.target_host, self.context.local, self.context.remote)
|
|
|
|
self.manifest = core.Manifest(self.context.target_host, self.context.local)
|
|
|
|
self.code = core.Code(self.context.target_host, self.context.local, self.context.remote)
|
2011-10-10 16:50:06 +00:00
|
|
|
|
2012-12-19 18:37:43 +00:00
|
|
|
# Add switch to disable code execution
|
|
|
|
self.dry_run = False
|
|
|
|
|
2011-10-06 14:52:56 +00:00
|
|
|
def cleanup(self):
|
2011-10-13 14:27:41 +00:00
|
|
|
# FIXME: move to local?
|
2012-12-19 20:10:18 +00:00
|
|
|
destination = os.path.join(self.context.local.cache_path, self.context.target_host)
|
|
|
|
self.log.debug("Saving " + self.context.local.out_path + " to " + destination)
|
2011-10-14 07:47:59 +00:00
|
|
|
if os.path.exists(destination):
|
|
|
|
shutil.rmtree(destination)
|
2012-12-19 20:10:18 +00:00
|
|
|
shutil.move(self.context.local.out_path, destination)
|
2011-10-06 14:52:56 +00:00
|
|
|
|
2013-05-15 07:19:36 +00:00
|
|
|
def run(self):
|
2013-04-30 13:15:22 +00:00
|
|
|
"""Do what is most often done: deploy & cleanup"""
|
|
|
|
start_time = time.time()
|
2013-04-30 08:58:23 +00:00
|
|
|
|
|
|
|
self.explorer.run_global_explorers(self.context.local.global_explorer_out_path)
|
|
|
|
self.manifest.run_initial_manifest(self.context.initial_manifest)
|
|
|
|
self.iterate_until_finished()
|
|
|
|
|
2013-05-15 07:19:36 +00:00
|
|
|
self.cleanup()
|
|
|
|
self.log.info("Finished successful run in %s seconds", time.time() - start_time)
|
|
|
|
|
|
|
|
|
2013-04-30 08:58:23 +00:00
|
|
|
def object_list(self):
|
|
|
|
"""Short name for object list retrieval"""
|
|
|
|
for cdist_object in core.CdistObject.list_objects(self.context.local.object_path,
|
|
|
|
self.context.local.type_path):
|
|
|
|
yield cdist_object
|
|
|
|
|
2013-06-20 09:24:47 +00:00
|
|
|
def iterate_once(self):
|
|
|
|
"""
|
|
|
|
Iterate over the objects once - helper method for
|
|
|
|
iterate_until_finished
|
|
|
|
"""
|
|
|
|
objects_changed = False
|
2013-04-30 08:58:23 +00:00
|
|
|
|
2013-06-20 09:24:47 +00:00
|
|
|
for cdist_object in self.object_list():
|
|
|
|
if cdist_object.requirements_unfinished(cdist_object.requirements):
|
|
|
|
"""We cannot do anything for this poor object"""
|
|
|
|
continue
|
|
|
|
|
|
|
|
if cdist_object.state == core.CdistObject.STATE_UNDEF:
|
|
|
|
"""Prepare the virgin object"""
|
|
|
|
|
|
|
|
self.object_prepare(cdist_object)
|
|
|
|
objects_changed = True
|
|
|
|
|
|
|
|
if cdist_object.requirements_unfinished(cdist_object.autorequire):
|
|
|
|
"""The previous step created objects we depend on - wait for them"""
|
|
|
|
continue
|
|
|
|
|
|
|
|
if cdist_object.state == core.CdistObject.STATE_PREPARED:
|
|
|
|
self.object_run(cdist_object)
|
|
|
|
objects_changed = True
|
|
|
|
|
|
|
|
return objects_changed
|
2013-04-30 08:58:23 +00:00
|
|
|
|
|
|
|
|
2013-06-20 09:24:47 +00:00
|
|
|
def iterate_until_finished(self):
|
|
|
|
"""
|
|
|
|
Go through all objects and solve them
|
|
|
|
one after another
|
|
|
|
"""
|
2013-04-30 08:58:23 +00:00
|
|
|
|
2013-06-20 09:24:47 +00:00
|
|
|
objects_changed = True
|
2013-04-30 08:58:23 +00:00
|
|
|
|
2013-06-20 09:24:47 +00:00
|
|
|
while objects_changed:
|
|
|
|
objects_changed = self.iterate_once()
|
2013-04-30 08:58:23 +00:00
|
|
|
|
|
|
|
# Check whether all objects have been finished
|
2013-04-30 13:07:27 +00:00
|
|
|
unfinished_objects = []
|
2013-04-30 08:58:23 +00:00
|
|
|
for cdist_object in self.object_list():
|
|
|
|
if not cdist_object.state == cdist_object.STATE_DONE:
|
2013-04-30 13:07:27 +00:00
|
|
|
unfinished_objects.append(cdist_object)
|
|
|
|
|
|
|
|
if unfinished_objects:
|
|
|
|
info_string = []
|
|
|
|
|
|
|
|
for cdist_object in unfinished_objects:
|
|
|
|
|
|
|
|
requirement_names = []
|
|
|
|
autorequire_names = []
|
|
|
|
|
|
|
|
for requirement in cdist_object.requirements_unfinished(cdist_object.requirements):
|
|
|
|
requirement_names.append(requirement.name)
|
|
|
|
|
|
|
|
for requirement in cdist_object.requirements_unfinished(cdist_object.autorequire):
|
|
|
|
autorequire_names.append(requirement.name)
|
|
|
|
|
|
|
|
requirements = ", ".join(requirement_names)
|
|
|
|
autorequire = ", ".join(autorequire_names)
|
|
|
|
info_string.append("%s requires: %s autorequires: %s" % (cdist_object.name, requirements, autorequire))
|
2013-04-30 08:58:23 +00:00
|
|
|
|
2013-04-30 13:07:59 +00:00
|
|
|
raise cdist.Error("The requirements of the following objects could not be resolved: %s" %
|
2013-04-30 13:07:27 +00:00
|
|
|
("; ".join(info_string)))
|
2013-04-30 08:58:23 +00:00
|
|
|
|
2013-05-15 08:08:23 +00:00
|
|
|
def object_prepare(self, cdist_object):
|
|
|
|
"""Prepare object: Run type explorer + manifest"""
|
|
|
|
self.log.info("Running manifest and explorers for " + cdist_object.name)
|
|
|
|
self.explorer.run_type_explorers(cdist_object)
|
|
|
|
self.manifest.run_type_manifest(cdist_object)
|
|
|
|
cdist_object.state = core.CdistObject.STATE_PREPARED
|
|
|
|
|
2013-04-30 13:15:22 +00:00
|
|
|
def object_run(self, cdist_object, dry_run=False):
|
|
|
|
"""Run gencode and code for an object"""
|
|
|
|
self.log.debug("Trying to run object " + cdist_object.name)
|
|
|
|
if cdist_object.state == core.CdistObject.STATE_DONE:
|
|
|
|
raise cdist.Error("Attempting to run an already finished object: %s", cdist_object)
|
|
|
|
|
|
|
|
cdist_type = cdist_object.cdist_type
|
|
|
|
|
|
|
|
# Generate
|
|
|
|
self.log.info("Generating and executing code for " + cdist_object.name)
|
|
|
|
cdist_object.code_local = self.code.run_gencode_local(cdist_object)
|
|
|
|
cdist_object.code_remote = self.code.run_gencode_remote(cdist_object)
|
|
|
|
if cdist_object.code_local or cdist_object.code_remote:
|
|
|
|
cdist_object.changed = True
|
|
|
|
|
|
|
|
# Execute
|
|
|
|
if not dry_run:
|
|
|
|
if cdist_object.code_local:
|
|
|
|
self.code.run_code_local(cdist_object)
|
|
|
|
if cdist_object.code_remote:
|
|
|
|
self.code.transfer_code_remote(cdist_object)
|
|
|
|
self.code.run_code_remote(cdist_object)
|
|
|
|
|
|
|
|
# Mark this object as done
|
|
|
|
self.log.debug("Finishing run of " + cdist_object.name)
|
|
|
|
cdist_object.state = core.CdistObject.STATE_DONE
|