use self.log for correct logger

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-10-11 17:09:47 +02:00
parent b7824c3ead
commit 9f49f99294
1 changed files with 21 additions and 20 deletions

View File

@ -40,12 +40,16 @@ class ConfigInstall(object):
def __init__(self, context): def __init__(self, context):
self.context = context self.context = context
self.log = logging.getLogger(self.context.target_host)
self.exec_wrapper = cdist.exec.Wrapper( self.exec_wrapper = cdist.exec.Wrapper(
target_host = self.context.target_host, target_host = self.context.target_host,
remote_exec=self.context.remote_exec, remote_exec=self.context.remote_exec,
remote_copy=self.context.remote_copy) remote_copy=self.context.remote_copy)
# Create directories other may depend on
self.__init_local_paths()
self.__init_remote_paths()
self.explorer = cdist.explorer.Explorer(self.context) self.explorer = cdist.explorer.Explorer(self.context)
#self.manifest = cdist.manifest.Mamifest() #self.manifest = cdist.manifest.Mamifest()
@ -54,9 +58,6 @@ class ConfigInstall(object):
# Setup env to be used by others - FIXME # Setup env to be used by others - FIXME
self.__init_env() self.__init_env()
# Create directories
self.__init_local_paths()
self.__init_remote_paths()
def __init_remote_paths(self): def __init_remote_paths(self):
"""Initialise remote directory structure""" """Initialise remote directory structure"""
@ -84,21 +85,21 @@ class ConfigInstall(object):
os.environ['__debug'] = "yes" os.environ['__debug'] = "yes"
def cleanup(self): def cleanup(self):
log.debug("Saving " + self.context.out_path + " to " + self.context.cache_path) self.log.debug("Saving " + self.context.out_path + " to " + self.context.cache_path)
if os.path.exists(self.context.cache_path): if os.path.exists(self.context.cache_path):
shutil.rmtree(self.context.cache_path) shutil.rmtree(self.context.cache_path)
shutil.move(self.context.out_path, self.context.cache_path) shutil.move(self.context.out_path, self.context.cache_path)
def object_prepare(self, cdist_object): def object_prepare(self, cdist_object):
"""Prepare object: Run type explorer + manifest""" """Prepare object: Run type explorer + manifest"""
log.debug("Preparing object: " + cdist_object.name) self.log.debug("Preparing object: " + cdist_object.name)
cdist_object.explorers = self.explorer.run_type_explorer(cdist_object) cdist_object.explorers = self.explorer.run_type_explorer(cdist_object)
self.manifest.run_type_manifest(cdist_object) self.manifest.run_type_manifest(cdist_object)
cdist_object.prepared = True cdist_object.prepared = True
def object_run(self, cdist_object): def object_run(self, cdist_object):
"""Run gencode and code for an object""" """Run gencode and code for an object"""
log.debug("Running object %s", cdist_object) self.log.debug("Running object %s", cdist_object)
# Catch requirements, which re-call us # Catch requirements, which re-call us
if cdist_object.ran: if cdist_object.ran:
@ -107,7 +108,7 @@ class ConfigInstall(object):
cdist_type = cdist_object.type cdist_type = cdist_object.type
for requirement in cdist_object.requirements: for requirement in cdist_object.requirements:
log.debug("Object %s requires %s", cdist_object, requirement) self.log.debug("Object %s requires %s", cdist_object, requirement)
self.object_run(requirement) self.object_run(requirement)
# #
@ -123,7 +124,7 @@ class ConfigInstall(object):
# gencode # gencode
for cmd in ["local", "remote"]: for cmd in ["local", "remote"]:
bin = os.path.join(self.type_base_path, bin = os.path.join(self.context.type_base_path,
getattr(cdist_type, "gencode_" + cmd + "_path")) getattr(cdist_type, "gencode_" + cmd + "_path"))
if os.path.isfile(bin): if os.path.isfile(bin):
@ -169,16 +170,16 @@ class ConfigInstall(object):
def link_emulator(self): def link_emulator(self):
"""Link emulator to types""" """Link emulator to types"""
src = os.path.abspath(self.context.exec_path) src = os.path.abspath(self.context.exec_path)
for cdist_type in cdist.core.Type.list_types(self.type_base_path): for cdist_type in cdist.core.Type.list_types(self.context.type_base_path):
dst = os.path.join(self.context.bin_path, cdist_type.name) dst = os.path.join(self.context.bin_path, cdist_type.name)
log.debug("Linking emulator: %s to %s", src, dst) self.log.debug("Linking emulator: %s to %s", src, dst)
# FIXME: handle exception / make it more beautiful / Steven: raise except :-) # FIXME: handle exception / make it more beautiful / Steven: raise except :-)
os.symlink(src, dst) os.symlink(src, dst)
def deploy_to(self): def deploy_to(self):
"""Mimic the old deploy to: Deploy to one host""" """Mimic the old deploy to: Deploy to one host"""
log.info("Deploying to " + self.context.target_host) self.log.info("Deploying to " + self.context.target_host)
self.stage_prepare() self.stage_prepare()
self.stage_run() self.stage_run()
@ -187,25 +188,25 @@ class ConfigInstall(object):
start_time = time.time() start_time = time.time()
self.deploy_to() self.deploy_to()
self.cleanup() self.cleanup()
log.info("Finished run of %s in %s seconds", self.log.info("Finished run of %s in %s seconds",
self.context.target_host, time.time() - start_time) self.context.target_host, time.time() - start_time)
def stage_prepare(self): def stage_prepare(self):
"""Do everything for a deploy, minus the actual code stage""" """Do everything for a deploy, minus the actual code stage"""
self.link_emulator() self.link_emulator()
self.run_global_explorers() self.explorer.run_global_explorers()
self.run_initial_manifest() self.run_initial_manifest()
log.info("Running object manifests and type explorers") self.log.info("Running object manifests and type explorers")
# Continue process until no new objects are created anymore # Continue process until no new objects are created anymore
new_objects_created = True new_objects_created = True
while new_objects_created: while new_objects_created:
new_objects_created = False new_objects_created = False
for cdist_object in cdist.core.Object.list_objects(self.object_base_path, for cdist_object in cdist.core.Object.list_objects(self.object_base_path,
self.type_base_path): self.context.type_base_path):
if cdist_object.prepared: if cdist_object.prepared:
log.debug("Skipping rerun of object %s", cdist_object) self.log.debug("Skipping rerun of object %s", cdist_object)
continue continue
else: else:
self.object_prepare(cdist_object) self.object_prepare(cdist_object)
@ -213,8 +214,8 @@ class ConfigInstall(object):
def stage_run(self): def stage_run(self):
"""The final (and real) step of deployment""" """The final (and real) step of deployment"""
log.info("Generating and executing code") self.log.info("Generating and executing code")
for cdist_object in cdist.core.Object.list_objects(self.object_base_path, for cdist_object in cdist.core.Object.list_objects(self.object_base_path,
self.type_base_path): self.context.type_base_path):
log.debug("Run object: %s", cdist_object) self.log.debug("Run object: %s", cdist_object)
self.object_run(cdist_object) self.object_run(cdist_object)