Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
53cd61ba
Commit
53cd61ba
authored
9 years ago
by
Stefan Froehlich
Browse files
Options
Downloads
Patches
Plain Diff
Task #8488 Bugfix, keys from external parsets were not handled correctly.
parent
34c4b146
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CEP/Pipeline/recipes/sip/bin/genericpipeline.py
+10
-21
10 additions, 21 deletions
CEP/Pipeline/recipes/sip/bin/genericpipeline.py
CEP/Pipeline/recipes/sip/master/executable_args.py
+2
-2
2 additions, 2 deletions
CEP/Pipeline/recipes/sip/master/executable_args.py
with
12 additions
and
23 deletions
CEP/Pipeline/recipes/sip/bin/genericpipeline.py
+
10
−
21
View file @
53cd61ba
...
...
@@ -193,8 +193,6 @@ class GenericPipeline(control):
typeval
=
step
.
getString
(
'
type
'
)
except
:
typeval
=
''
#self._construct_cmdline(inputargs, step, resultdicts)
if
stepname
in
step_parset_obj
:
self
.
_construct_step_parset
(
inputdict
,
step_parset_obj
[
stepname
],
...
...
@@ -206,14 +204,13 @@ class GenericPipeline(control):
if
self
.
task_definitions
.
get
(
typeval
,
'
recipe
'
)
==
'
executable_args
'
:
inputdict
[
'
stepname
'
]
=
stepname
self
.
_construct_cmdline
2
(
inputargs
,
step
,
resultdicts
)
self
.
_construct_cmdline
(
inputargs
,
step
,
resultdicts
)
if
stepname
in
step_parset_files
:
inputdict
[
'
parset
'
]
=
step_parset_files
[
stepname
]
self
.
_construct_input
(
inputdict
,
step
,
resultdicts
)
# hack, popping 'type' is necessary, why? because you deleted kind already in parsets
try
:
inputdict
.
pop
(
'
type
'
)
...
...
@@ -377,7 +374,7 @@ class GenericPipeline(control):
# \hack
self
.
_replace_output_keyword
(
inoutdict
,
argsparset
,
argsparset
.
keys
(),
resdicts
)
def
_construct_cmdline
2
(
self
,
inoutargs
,
controlparset
,
resdicts
):
def
_construct_cmdline
(
self
,
inoutargs
,
controlparset
,
resdicts
):
inoutdict
=
{}
argsparset
=
controlparset
.
makeSubset
(
controlparset
.
fullModuleName
(
'
cmdline
'
)
+
'
.
'
)
self
.
_replace_output_keyword
(
inoutdict
,
argsparset
,
argsparset
.
keys
(),
resdicts
)
...
...
@@ -387,19 +384,6 @@ class GenericPipeline(control):
if
'
cmdline
'
in
k
:
controlparset
.
remove
(
k
)
def
_construct_cmdline
(
self
,
inoutargs
,
controlparset
,
resdicts
):
argsparset
=
controlparset
.
makeSubset
(
controlparset
.
fullModuleName
(
'
cmdline
'
)
+
'
.
'
)
for
k
in
argsparset
.
keys
():
if
argsparset
.
getString
(
k
).
__contains__
(
'
.output.
'
):
step
,
outvar
=
argsparset
.
getString
(
k
).
split
(
'
.output.
'
)
inoutargs
.
append
(
resdicts
[
step
][
outvar
])
else
:
inoutargs
.
append
(
argsparset
.
getString
(
k
))
try
:
controlparset
.
remove
(
'
cmdline.inmap
'
)
except
:
pass
def
_construct_steps
(
self
,
step_name_list
,
step_control_dict
,
step_parset_files
,
step_parset_obj
,
parset_dir
):
step_list_copy
=
(
copy
.
deepcopy
(
step_name_list
))
counter
=
0
...
...
@@ -480,9 +464,14 @@ class GenericPipeline(control):
parsetdict
=
{}
for
orig
in
self
.
parset
.
keys
:
for
item
in
tmp_keys
:
if
(
stepname
+
'
.
'
)
in
orig
and
(
'
argument.
'
+
item
in
orig
and
not
'
argument.
'
+
item
+
'
.
'
in
orig
):
ordered_keys
.
append
(
item
)
continue
if
not
str
(
orig
).
startswith
(
'
#
'
):
if
(
stepname
+
'
.
'
)
in
orig
and
(
'
argument.
'
+
item
in
orig
and
not
'
argument.
'
+
item
+
'
.
'
in
orig
):
ordered_keys
.
append
(
item
)
continue
# add keys from parset files that were not in the original list
for
item
in
argsparset
.
keys
():
if
not
item
in
ordered_keys
:
ordered_keys
.
append
(
item
)
additional
=
self
.
_replace_output_keyword
(
parsetdict
,
argsparset
,
ordered_keys
,
resdicts
)
for
k
in
argsparset
.
keys
():
argsparset
.
replace
(
k
,
parsetdict
[
k
])
...
...
This diff is collapsed.
Click to expand it.
CEP/Pipeline/recipes/sip/master/executable_args.py
+
2
−
2
View file @
53cd61ba
...
...
@@ -275,8 +275,8 @@ class executable_args(BaseRecipe, RemoteCommandRecipeMixIn):
parsetdict
[
k
]
=
str
(
parset
[
k
])
# construct multiple input data
if
not
self
.
inputs
[
'
inputkey
s
'
]
and
self
.
inputs
[
'
inputkey
'
]:
self
.
inputs
[
'
inputkeys
'
].
append
(
self
.
inputs
[
'
inputkey
'
])
if
self
.
inputs
[
'
inputkey
'
]
and
not
self
.
inputs
[
'
inputkey
'
]
in
self
.
inputs
[
'
inputkey
s
'
]:
self
.
inputs
[
'
inputkeys
'
].
insert
(
0
,
self
.
inputs
[
'
inputkey
'
])
if
not
self
.
inputs
[
'
outputkeys
'
]
and
self
.
inputs
[
'
outputkey
'
]:
self
.
inputs
[
'
outputkeys
'
].
append
(
self
.
inputs
[
'
outputkey
'
])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment