Skip to content
Snippets Groups Projects
Commit e6e76041 authored by Karim Ahmed's avatar Karim Ahmed
Browse files

FEAT / Expose dark configurations in update_config.py

parent c29ba0ef
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,7 @@ def test_main_sys_exit(capsys): ...@@ -33,6 +33,7 @@ def test_main_sys_exit(capsys):
"update_config", "update_config",
"--karabo-id", "SPB_DET_AGIPD1M-1", "--karabo-id", "SPB_DET_AGIPD1M-1",
"--webservice-address", "inproc://socket", "--webservice-address", "inproc://socket",
"--dark",
] ]
): ):
...@@ -68,6 +69,7 @@ def test_main(capsys): ...@@ -68,6 +69,7 @@ def test_main(capsys):
"--cycle", "000000", "--cycle", "000000",
"--rel-gain", "true", "--rel-gain", "true",
"--webservice-address", "inproc://socket", "--webservice-address", "inproc://socket",
"--correct",
], ],
): ):
with patch("zmq.Context", return_value=context): with patch("zmq.Context", return_value=context):
...@@ -119,6 +121,7 @@ args_1 = { ...@@ -119,6 +121,7 @@ args_1 = {
"karabo_id": "SPB_DET_AGIPD1M-1", "karabo_id": "SPB_DET_AGIPD1M-1",
"proposal": 000000, "proposal": 000000,
"cycle": 000000, "cycle": 000000,
"correct": True,
"apply": False, "apply": False,
"webservice_port": "tcp://max-exfl016:5555", "webservice_port": "tcp://max-exfl016:5555",
"instrument": None, "instrument": None,
...@@ -147,7 +150,8 @@ args_2["no_rel_gain"] = True ...@@ -147,7 +150,8 @@ args_2["no_rel_gain"] = True
def test_add_available_configs_to_arg_parser(): def test_add_available_configs_to_arg_parser():
"""Test creating available configuration """Test creating available configuration
dictionary with update booleans.""" dictionary with update booleans."""
available_conf = _add_available_configs_to_arg_parser("SPB_DET_AGIPD1M-1") available_conf = _add_available_configs_to_arg_parser(
karabo_id="SPB_DET_AGIPD1M-1", action="correct")
assert available_conf == EXPECTED_CONF assert available_conf == EXPECTED_CONF
......
...@@ -7,6 +7,8 @@ import zmq ...@@ -7,6 +7,8 @@ import zmq
# Defining the exposed configurations by the script. # Defining the exposed configurations by the script.
AGIPD_CONFIGURATIONS = { AGIPD_CONFIGURATIONS = {
"correct":
{
"force-hg-if-below": {'typ': int}, "force-hg-if-below": {'typ': int},
"rel-gain": {'typ': bool}, "rel-gain": {'typ': bool},
"xray-gain": {'typ': bool}, "xray-gain": {'typ': bool},
...@@ -18,6 +20,21 @@ AGIPD_CONFIGURATIONS = { ...@@ -18,6 +20,21 @@ AGIPD_CONFIGURATIONS = {
'msg': "Range list of maximum pulse indices " 'msg': "Range list of maximum pulse indices "
"(--max-pulses start end step). " "(--max-pulses start end step). "
"3 max input elements. "}, "3 max input elements. "},
},
"dark":
{
"thresholds-offset-hard-hg": {'typ': list},
"thresholds-offset-hard-mg": {'typ': list},
"thresholds-offset-hard-lg": {'typ': list},
"thresholds-offset-hard-hg-fixed": {'typ': list},
"thresholds-offset-hard-mg-fixed": {'typ': list},
"thresholds-offset-hard-lg-fixed": {'typ': list},
"thresholds-offset-sigma": {'typ': list},
"thresholds-noise-hard-hg": {'typ': list},
"thresholds-noise-hard-mg": {'typ': list},
"thresholds-noise-hard-lg": {'typ': list},
"thresholds-noise-sigma": {'typ': list},
}
} }
DATA_MAPPING = { DATA_MAPPING = {
...@@ -44,16 +61,24 @@ parser = argparse.ArgumentParser( ...@@ -44,16 +61,24 @@ parser = argparse.ArgumentParser(
conflict_handler="resolve", conflict_handler="resolve",
) )
required_args = parser.add_argument_group('required arguments') required_args = parser.add_argument_group('required arguments')
required_args.add_argument('--karabo-id', type=str,
choices=['SPB_DET_AGIPD1M-1', required_args.add_argument(
'MID_DET_AGIPD1M-1']) '--karabo-id', type=str,
required_args.add_argument('--proposal', type=str, choices=['SPB_DET_AGIPD1M-1', 'MID_DET_AGIPD1M-1'])
help='The proposal number, without leading p, ' required_args.add_argument(
'but with leading zeros.') '--proposal', type=str,
help='The proposal number, without leading p, but with leading zeros.')
required_args.add_argument('--cycle', type=str, help='The facility cycle.') required_args.add_argument('--cycle', type=str, help='The facility cycle.')
parser.add_argument('--apply', action='store_true',
help='Apply and push the requested ' action_group = required_args.add_mutually_exclusive_group()
'configuration update to the git.') action_group.add_argument(
'--correct', '-c', action='store_true')
action_group.add_argument(
'--dark', '-d', action='store_true')
parser.add_argument(
'--apply', action='store_true',
help='Apply and push the requested configuration update to the git.')
parser.add_argument( parser.add_argument(
'--webservice-address', '--webservice-address',
type=str, type=str,
...@@ -69,7 +94,7 @@ parser.add_argument( ...@@ -69,7 +94,7 @@ parser.add_argument(
) )
def _add_available_configs_to_arg_parser(karabo_id: str): def _add_available_configs_to_arg_parser(karabo_id: str, action: str):
"""Add the available configuration for the selected detector """Add the available configuration for the selected detector
to the argument parser. to the argument parser.
...@@ -79,10 +104,13 @@ def _add_available_configs_to_arg_parser(karabo_id: str): ...@@ -79,10 +104,13 @@ def _add_available_configs_to_arg_parser(karabo_id: str):
available_conf = [{}, DATA_MAPPING] available_conf = [{}, DATA_MAPPING]
# adding "no" bools to available configurations # adding "no" bools to available configurations
for key, val in AVAILABLE_DETECTORS[karabo_id][0].items():
# Loop over action configurations in available_detectors dictionary.
for key, val in AVAILABLE_DETECTORS[karabo_id][0][action].items():
available_conf[0][key] = val available_conf[0][key] = val
if val['typ'] == bool: if val['typ'] == bool:
available_conf[0][f'no-{key}'] = {'typ': bool} available_conf[0][f'no-{key}'] = {'typ': bool}
for conf in available_conf: for conf in available_conf:
for option, info in conf.items(): for option, info in conf.items():
typ = info['typ'] typ = info['typ']
...@@ -126,8 +154,9 @@ def _create_new_config_from_args_input( ...@@ -126,8 +154,9 @@ def _create_new_config_from_args_input(
"""Create an updated configuration from CLI args """Create an updated configuration from CLI args
with data-mapping and correct configs.""" with data-mapping and correct configs."""
karabo_id = args["karabo_id"] karabo_id = args["karabo_id"]
task = "correct" action = "dark" if args.get("dark") else "correct"
new_conf = {task: {instrument: {karabo_id: {}}}} new_conf = {action: {instrument: {karabo_id: {}}}}
for key, value in args.items(): for key, value in args.items():
key = key.replace("_", "-") key = key.replace("_", "-")
for conf in available_conf: for conf in available_conf:
...@@ -138,7 +167,7 @@ def _create_new_config_from_args_input( ...@@ -138,7 +167,7 @@ def _create_new_config_from_args_input(
# convert no arguments to bool false # convert no arguments to bool false
if 'no-' in key and isinstance(value, bool): if 'no-' in key and isinstance(value, bool):
if key not in AVAILABLE_DETECTORS[karabo_id][0].keys(): if key not in AVAILABLE_DETECTORS[karabo_id][0].keys():
new_conf[task][instrument][karabo_id][key.replace('no-', '')] = False # noqa new_conf[action][instrument][karabo_id][key.replace('no-', '')] = False # noqa
# avoid saving the "no-"key into the updated config # avoid saving the "no-"key into the updated config
continue continue
...@@ -148,11 +177,11 @@ def _create_new_config_from_args_input( ...@@ -148,11 +177,11 @@ def _create_new_config_from_args_input(
new_conf['data-mapping'] = {karabo_id: {key: {}}} new_conf['data-mapping'] = {karabo_id: {key: {}}}
new_conf['data-mapping'][karabo_id][key] = value new_conf['data-mapping'][karabo_id][key] = value
else: else:
new_conf[task][instrument][karabo_id][key] = value new_conf[action][instrument][karabo_id][key] = value
return new_conf return new_conf
def main(testing=False): def main():
# remove help calls, to avoid exiting the argument parser. # remove help calls, to avoid exiting the argument parser.
argv = sys.argv[1:] argv = sys.argv[1:]
add_help = False add_help = False
...@@ -167,10 +196,14 @@ def main(testing=False): ...@@ -167,10 +196,14 @@ def main(testing=False):
karabo_id = args["karabo_id"] karabo_id = args["karabo_id"]
webservice_address = args["webservice_address"] webservice_address = args["webservice_address"]
instrument = args['instrument'] instrument = args['instrument']
proposal = args['proposal']
cycle = args['cycle']
action = "dark" if args.get("dark") else "correct"
# Avoid erros when karabo_id not given through the command line. # Avoid errors when karabo_id and action are not given.
if karabo_id is not None: if karabo_id and action:
available_conf = _add_available_configs_to_arg_parser(karabo_id) available_conf = _add_available_configs_to_arg_parser(
karabo_id, action)
# check if instrument is not given from CLI (e.g. CALLAB) # check if instrument is not given from CLI (e.g. CALLAB)
if instrument is None: if instrument is None:
# extract instrument from karabo_id # extract instrument from karabo_id
...@@ -183,10 +216,11 @@ def main(testing=False): ...@@ -183,10 +216,11 @@ def main(testing=False):
args = vars(parser.parse_args(argv)) args = vars(parser.parse_args(argv))
proposal = args['proposal'] if (
cycle = args['cycle'] instrument is None or
proposal is None or
if instrument is None or proposal is None or cycle is None: cycle is None
):
print("Need to define all fields") print("Need to define all fields")
sys.exit(1) sys.exit(1)
......
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