Skip to content
Snippets Groups Projects
Commit 5a8840ce authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8475: Reenable auto mode for CEP4, but replace "CEP4:" hostnames with localhost

parent 831162d2
No related branches found
No related tags found
No related merge requests found
...@@ -46,12 +46,24 @@ class pulsar_pipeline(control): ...@@ -46,12 +46,24 @@ class pulsar_pipeline(control):
dps = self.parset.makeSubset( dps = self.parset.makeSubset(
self.parset.fullModuleName('DataProducts') + '.' self.parset.fullModuleName('DataProducts') + '.'
) )
def fix_locations(locations):
""" Hack to turn CEP4:/xxxx paths into valid host:path combinations. """
def fix(loc):
host,path = loc.split(':')
if host == "CEP4":
host = "localhost"
return "%s:%s" % (host,path)
return [fix(loc) for loc in locations]
# Coherent Stokes input data # Coherent Stokes input data
self.coherentStokesEnabled = dps.getBool('Input_CoherentStokes.enabled', False) self.coherentStokesEnabled = dps.getBool('Input_CoherentStokes.enabled', False)
self.input_data['coherent'] = DataMap([ self.input_data['coherent'] = DataMap([
tuple(os.path.join(location, filename).split(':')) + (skip,) tuple(os.path.join(location, filename).split(':')) + (skip,)
for location, filename, skip in zip( for location, filename, skip in zip(
dps.getStringVector('Input_CoherentStokes.locations'), fix_locations(dps.getStringVector('Input_CoherentStokes.locations')),
dps.getStringVector('Input_CoherentStokes.filenames'), dps.getStringVector('Input_CoherentStokes.filenames'),
dps.getBoolVector('Input_CoherentStokes.skip')) dps.getBoolVector('Input_CoherentStokes.skip'))
]) ])
...@@ -62,7 +74,7 @@ class pulsar_pipeline(control): ...@@ -62,7 +74,7 @@ class pulsar_pipeline(control):
self.input_data['incoherent'] = DataMap([ self.input_data['incoherent'] = DataMap([
tuple(os.path.join(location, filename).split(':')) + (skip,) tuple(os.path.join(location, filename).split(':')) + (skip,)
for location, filename, skip in zip( for location, filename, skip in zip(
dps.getStringVector('Input_IncoherentStokes.locations'), fix_locations(dps.getStringVector('Input_IncoherentStokes.locations')),
dps.getStringVector('Input_IncoherentStokes.filenames'), dps.getStringVector('Input_IncoherentStokes.filenames'),
dps.getBoolVector('Input_IncoherentStokes.skip')) dps.getBoolVector('Input_IncoherentStokes.skip'))
]) ])
...@@ -71,7 +83,7 @@ class pulsar_pipeline(control): ...@@ -71,7 +83,7 @@ class pulsar_pipeline(control):
self.output_data['data'] = DataMap([ self.output_data['data'] = DataMap([
tuple(os.path.join(location, filename).split(':')) + (skip,) tuple(os.path.join(location, filename).split(':')) + (skip,)
for location, filename, skip in zip( for location, filename, skip in zip(
dps.getStringVector('Output_Pulsar.locations'), fix_locations(dps.getStringVector('Output_Pulsar.locations')),
dps.getStringVector('Output_Pulsar.filenames'), dps.getStringVector('Output_Pulsar.filenames'),
dps.getBoolVector('Output_Pulsar.skip')) dps.getBoolVector('Output_Pulsar.skip'))
]) ])
...@@ -146,7 +158,7 @@ class pulsar_pipeline(control): ...@@ -146,7 +158,7 @@ class pulsar_pipeline(control):
# Rebuilding sys.argv without the options given automatically by framework # Rebuilding sys.argv without the options given automatically by framework
# --auto = automatic run from framework # --auto = automatic run from framework
# -q = quiet mode, no user interaction # -q = quiet mode, no user interaction
sys.argv = ['pulp.py', '-q'] sys.argv = ['pulp.py', '--auto', '-q']
if self.globalfs: if self.globalfs:
project = self.parset.getString(self.parset.fullModuleName('Campaign') + '.name') project = self.parset.getString(self.parset.fullModuleName('Campaign') + '.name')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment