Source code for autowisp.database.processing

"""Define base class for processing images or lightcurves."""

import logging
import os
from os import path
from tempfile import TemporaryDirectory
from sqlalchemy import sql, select
from numpy import inf as infinity

from autowisp.multiprocessing_util import (
    setup_process,
    get_log_outerr_filenames,
)
from autowisp.database.interface import start_db_session, get_project_home
from autowisp.exceptions import ConfigurationError, PipelineError
from autowisp.evaluator import Evaluator
from autowisp.fits_utilities import get_primary_header
from autowisp.image_calibration.fits_util import (
    add_required_keywords,
    add_channel_keywords,
)
from autowisp.database.user_interface import get_db_configuration
from autowisp.data_reduction.data_reduction_file import DataReductionFile
from autowisp.light_curves.light_curve_file import LightCurveFile
from autowisp import processing_steps
from autowisp.processing_steps.manual_util import raise_config_parse_errors

# False positive due to unusual importing
# pylint: disable=no-name-in-module
from autowisp.database.data_model import (
    Condition,
    ConditionExpression,
    Configuration,
    ImageMasterSelection,
    ImageType,
    ImageProcessingProgress,
    InputMasterTypes,
    LightCurveProcessingProgress,
    MasterFile,
    MasterType,
    PipelineRun,
    Step,
)

# pylint: enable=no-name-in-module


[docs] class ProcessingInProgress(PipelineError): """Raised when a particular step is running in a different process/host.""" def __init__(self, pipeline_run): self.host = pipeline_run.host self.process_id = pipeline_run.process_id self.started = pipeline_run.started super().__init__( f"Processing pipeline is still running on {self.host!r} with " f"process id {self.process_id!r}, started {self.started}!" )
# pylint: disable=too-many-instance-attributes
[docs] class ProcessingManager: """ Utilities for automated processing of images or lightcurves. Attrs: configuration(dict): Indexed by parameter name with values further dictionaries with keys: ``version``: the actual version used including fallback ``value``: dict indexed by frozenset of expression IDs that an image must satisfy for the parameter to have a given value. condition_expressions({int: str}): Dictionary of condition expressions that must be evaluated against the header of each input images to determine the exact values of the configuration parameters applicable to a given image. Keys are the condition expression IDs from the database and values are the actual expressions. step_version(dict): Indexed by step name of the largest value of the actual version used for any parameter required by that step. current_step(Step): The currently active step. _current_processing(ImageProcessingProgress): The currently active step (the processing progress initiated the last time `start_step()` was called). _processed_ids(dict): The keys are the filenames of the required inputs (DR or FITS) for the current step and the values are dictionaries with keys ``'image_id'`` and ``'channel'`` identifying what was processed. _evaluated_expressions(dict): Indexed by image ID and then channel, dictionary containing dictionary with keys: * values: the values of the condition expressions for the given image and channel indexed by their expression IDs. * matched: A set of the expression IDs for which the corresponding expression converts to boolean True. * calibrated: the filename of the calibrated image * dr: the filename of the data reduction file * masters: A dictionary indexed by master type name of the best master of the given type to apply to the image An additional entry with channel=None is included which contains just the common (intersection) set of expressions satisfied for all channels. _master_expressions(dict): Indexed by master type, then tuple of expression values ordered by expression ID of the masters of the given type that match the given expression values. pending(dict): Information about what images or lightcurves still need processing by the various steps. The format is different for image vs lightcurve processing managers. """
[docs] def get_param_values( self, matched_expressions, parameters=None, db_session=None ): """ Return the values to use for the given parameters. Args: matched_expressions(set): Set of expression IDs that the image we are getting configuration for matches. parameters([] or str): List of parameter names, or a step, or its name to get configuration for. Defaults to current step if not specified. as_args(bool): If True, return a list of arguments ready to pass directly to one of the command line parser of the processing steps. db_session: Session to use for DB queries. Only needed if specifying parameters by step name or using default. Returns: dict or list: The values for the given parameters indexed by parameter name. """ def get_value(param): """Return value for given parameter.""" for required_expressions, value in self.configuration[param][ "value" ].items(): if required_expressions <= matched_expressions: return value raise ConfigurationError( f"No applicable configuration value found for {param!r}; " "check this step's configuration." ) if parameters is None: parameters = self.current_step if isinstance(parameters, str): parameters = [ param.name for param in db_session.scalar( select(Step).filter_by(name=parameters) ).parameters ] elif isinstance(parameters, Step): parameters = [param.name for param in parameters.parameters] return {param: get_value(param) for param in parameters}
[docs] def _write_config_file( # pylint: disable=too-many-arguments self, matched_expressions, outf, db_session, *, db_steps=None, step_names=None, ): """ Write to given file configuration for given matched expressions. Returns: Set of tuples of parameters and values as set in the file. Used for comparing configurations. """ # TODO: exclude master options if db_steps is None: if step_names is None: steps = db_session.scalars(select(Step).order_by(Step.id)).all() else: steps = [ db_session.execute( select(Step).filter_by(name=name) ).scalar_one() for name in step_names ] return self._write_config_file( matched_expressions, outf, db_steps=steps, db_session=db_session ) result = set() for step in db_steps: self._logger.debug("Getting configuration for %s step", step.name) outf.write(f"[{step.name}]\n") step_config = self.get_param_values( matched_expressions, [param.name for param in step.parameters] ) self._logger.debug( "Adding configuration for %s step to config file", step.name ) for param, value in step_config.items(): if value is not None: outf.write(f" {param} = {value!r}\n") self._logger.debug(" %s = %s", param, repr(value)) result.add((param, value)) self._logger.debug(" %s in result", param) outf.write("\n") return frozenset(result)
[docs] def _get_best_master(self, candidate_masters, image_eval): """Find the best master from given list for given image/channel.""" self._logger.debug( "Selecting best master for %s, channel %s from %s", repr(image_eval("RAWFNAME")), repr(image_eval("CLRCHNL")), repr(candidate_masters), ) if not candidate_masters: return None best_master_value = infinity best_master_fname = None for master_fname, use_smallest in candidate_masters: assert use_smallest is not None, ( f"Master {master_fname} is a candidate for " f'{image_eval("RAWFNAME")} but has no expression saying which ' "of several candidates to prefer!" ) master_value = image_eval(use_smallest) if master_value < best_master_value: best_master_value = master_value best_master_fname = master_fname assert best_master_fname, ( f"None of the {len(candidate_masters)} candidate masters for " f'{image_eval("RAWFNAME")}, channel {image_eval("CLRCHNL")} could ' "be ranked; their preference expressions gave no usable value!" ) return best_master_fname
[docs] def _get_master( self, master_type, image_values, image_eval, db_session, *, ambiguous_ok=False, ): """Return the master that should be used for the given image. Args: ambiguous_ok(bool): If True and multiple candidates exist but none has ``use_smallest`` set, return ``None`` instead of asserting. Only pass True for master types (e.g. ``single_photref``) whose selection is done externally via ``ImageMasterSelection`` rather than by evaluating a header expression. """ expressions = db_session.execute( select(ConditionExpression.id, ConditionExpression.expression) .join_from( Condition, ConditionExpression, Condition.expression_id # pylint: disable=no-member == ConditionExpression.id, # pylint: disable=no-member ) .where( Condition.id # pylint: disable=no-member == master_type.condition_id # pylint: disable=no-member ) .order_by(ConditionExpression.id) ).all() if master_type.name not in self._master_expressions: self._logger.debug( "Evaluating expressions for all masters of type: %s", repr(master_type.name), ) self._master_expressions[master_type.name] = {} all_masters = db_session.execute( select(MasterFile.filename, MasterFile.use_smallest).filter_by( type_id=master_type.id, enabled=True, ) ).all() for master in all_masters: master_eval = Evaluator(master.filename) expr_values = tuple( master_eval(expr) for _, expr in expressions ) if ( expr_values not in self._master_expressions[master_type.name] ): self._master_expressions[master_type.name][expr_values] = [] self._master_expressions[master_type.name][expr_values].append( master ) expr_values = tuple(image_values[expr_id] for expr_id, _ in expressions) self._logger.debug( "Master %s available for: %s", master_type.name, repr(self._master_expressions[master_type.name].keys()), ) candidates = self._master_expressions[master_type.name].get( expr_values, [] ) self._logger.debug("Candidate Masters: %s", repr(candidates)) if len(candidates) == 1: return candidates[0].filename if ambiguous_ok and ( not candidates or candidates[0].use_smallest is None ): return None return self._get_best_master(candidates, image_eval)
[docs] def _get_evaluated_entry( self, evaluate, image_type_id, calib_config, db_session, image_id=None, channel=None, ): """Return entry to add to self._evaluated_expressions.""" evaluated_expressions = { "values": { expr_id: evaluate(expression) for expr_id, expression in self.condition_expressions.items() }, "calibrated": calib_config["calibrated_fname"].format_map( evaluate.symtable ), "masters": {}, } evaluated_expressions["matched"] = set( expr_id for expr_id, value in evaluated_expressions["values"].items() if value ) for required_expressions, value in self.configuration[ "data-reduction-fname" ]["value"].items(): if required_expressions <= evaluated_expressions["matched"]: evaluated_expressions["dr"] = value.format_map( evaluate.symtable ) break if "dr" not in evaluated_expressions: raise ConfigurationError( "None of the configured data reduction filenames applies to " f'{evaluate("RAWFNAME")}, channel {evaluate("CLRCHNL")}: the ' "conditions attached to each of them are all unsatisfied!" ) for master_type in db_session.scalars( select(MasterType) .join(InputMasterTypes) .where(InputMasterTypes.image_type_id == image_type_id) .distinct() ): if master_type.name not in ["epd_stat", "tfa_stat"]: pinned = None if image_id is not None and channel is not None: pinned = db_session.scalar( select(MasterFile.filename) .join( ImageMasterSelection, MasterFile.id == ImageMasterSelection.master_file_id, ) .where( ImageMasterSelection.image_id == image_id, ImageMasterSelection.channel == channel, ImageMasterSelection.master_type_id == master_type.id, ) ) evaluated_expressions["masters"][master_type.name] = ( pinned if pinned is not None else self._get_master( master_type, evaluated_expressions["values"], evaluate, db_session, ambiguous_ok=(master_type.name == "single_photref"), ) ) return evaluated_expressions
[docs] @staticmethod def _get_extra_header(db_image): """Return the kewyords to auto-add to FITS headers at calibration.""" obs_session = db_image.observing_session return { "IMAGETYP": db_image.image_type.name, "OBSSSNID": obs_session.label, "TARGETID": obs_session.target.name, "OBSERVER": obs_session.observer.name, "CAMERAID": obs_session.camera.serial_number, "TELSCPID": obs_session.telescope.serial_number, }
[docs] @staticmethod def check_interrupted_statuses(step_module, step_name, interrupted): """Verify a step can clean up after the progress it is handed. Unlike the start status, there is no universally valid value here: how far a step can get before being interrupted is genuinely step-specific (most only ever record "started", but lightcurve creation also has a "points added, not yet final" stage), so every step with a ``cleanup_interrupted`` declares its own ``allowed_interrupted_status_values``. As for the start status, a declaration of ``None`` means the step sorts this out itself -- ``fit_magnitudes`` reads an iteration number out of the status rather than matching it against a fixed set. Checked once here rather than inside each step's ``cleanup_interrupted``, because the statuses come from ``ProcessedImages`` rows that only the manager reads. Args: step_module: The module implementing the step. step_name(str): Its name, for the message. interrupted: The ``(filename, status)`` pairs about to be handed to the step's ``cleanup_interrupted``. Returns: None """ allowed = getattr( step_module, "allowed_interrupted_status_values", (0,) ) if allowed is None: return for input_fname, status in interrupted: assert status in allowed, ( f"Interrupted {step_name} left {input_fname} at status " f"{status!r}, which it never reports; it can only be " f"interrupted at {allowed!r}!" )
[docs] @staticmethod def check_start_status(step_module, step_name, start_status): """Verify a step can start from the status the database implies. The status says how far a previous run got. ``None`` -- nothing done yet -- is always acceptable, so a step that cannot resume at all declares nothing; anything else means the stored progress and the step disagree about what resuming means. A step that *can* resume lists the extra statuses it accepts in its module-level ``allowed_start_status_values``, and a step that declares ``None`` works this out for itself (``fit_magnitudes`` derives an iteration number from the status rather than just checking it). This lives here, rather than as an assert repeated in every step, because it is only meaningful when the manager derives the status from ``ProcessedImages`` rows -- run standalone, a step is handed a constant by its own ``main()``. Args: step_module: The module implementing the step. step_name(str): Its name, for the message. start_status: What the manager is about to pass it. Returns: None """ allowed = getattr(step_module, "allowed_start_status_values", ()) if allowed is None or start_status is None: return assert start_status in allowed, ( f"Cannot start {step_name} from status {start_status!r}: it " "resumes only from " + (f"{allowed!r} or " if allowed else "") + "no previous processing at all!" )
[docs] def get_matched_expressions(self, evaluate): """Return set of matching expressions given an evaluator for image.""" def check(expr): """Return True if expression evaluates True.""" try: return evaluate(expr) except NameError: return False return set( expr_id for expr_id, expression in self.condition_expressions.items() if check(expression) )
[docs] def evaluate_expressions_image(self, image, db_session): """ Return evaluator for header expressions for given image. Args: image(Image): Instance of database Image for which to evaluate the condition expressions. The image header is augmented by ``IMAGE_TYPE`` keyword set to the name of the image type of the given image. db_session: Used to select the best master. return_evaluator(bool): Should an evaluator setup per the image header be returned for further use? Returns: Evaluator or None: Evaluator ready to evaluate additional expressions involving FITS headers. Only returned if ``return_evaluator`` is True. """ if image.id in self._evaluated_expressions: return self._logger.debug("Evaluating expressions for: %s", repr(image)) evaluate = Evaluator(get_primary_header(image.raw_fname, True)) evaluate.symtable.update(self._get_extra_header(image)) self._logger.debug( "Matched expressions: %s", repr(self.get_matched_expressions(evaluate)), ) self._evaluated_expressions[image.id] = {} all_channel = {"matched": None, "values": None} for channel_name, channel_slice in self._get_split_channels( image ).items(): self._logger.debug( "Adding channel keywords for channel %s of %s", channel_name, image.raw_fname, ) add_channel_keywords(evaluate.symtable, channel_name, channel_slice) self._logger.debug( "Configuring for channel %s (%s) of %s", channel_name, evaluate.symtable["CLRCHNL"], image.raw_fname, ) calib_config = self.get_config( self.get_matched_expressions(evaluate), db_session, step_name="calibrate", )[0] self._logger.debug( "Raw HDU for channel %s (%s) of %s: %s", channel_name, evaluate.symtable["CLRCHNL"], image.raw_fname, repr(calib_config["raw_hdu"]), ) add_required_keywords(evaluate.symtable, calib_config, True) evaluated_expressions = self._get_evaluated_entry( evaluate, image.image_type_id, calib_config, db_session, image_id=image.id, channel=channel_name, ) if all_channel["matched"] is None: all_channel["matched"] = evaluated_expressions["matched"] all_channel["values"] = dict(evaluated_expressions["values"]) else: all_channel["matched"] = ( all_channel["matched"] & evaluated_expressions["matched"] ) # False positive # pylint: disable=unsubscriptable-object # pylint: disable=unsupported-delete-operation for expr_id in list(all_channel["values"].keys()): if ( all_channel["values"][expr_id] != evaluated_expressions["values"][expr_id] ): del all_channel["values"][expr_id] # pylint: enable=unsupported-delete-operation # pylint: enable=unsubscriptable-object self._evaluated_expressions[image.id][ channel_name ] = evaluated_expressions self._evaluated_expressions[image.id][None] = { "matched": all_channel["matched"], "values": all_channel["values"], } self._logger.debug( "Evaluated expressions for image %s: %s", image, repr(self._evaluated_expressions[image.id]), )
[docs] def get_product_fname(self, image_id, channel, product): """ Return the ``dr`` or ``calibrated`` filename of specified image/channel. `self.evaluate_image_expressions()` must already have been called for this image. """ return self._evaluated_expressions[image_id][channel][product]
[docs] def get_master_fname(self, image_id, channel, master_type_name): """Return the filename of best master for a given image/channel.""" return self._evaluated_expressions[image_id][channel]["masters"][ master_type_name ]
#: The processing-progress ORM class this manager records in. Set by #: each concrete subclass so the shared log-locating machinery below #: knows which table a progress id refers to. _progress_model = None
[docs] def _progress_image_type(self, processing_progress, db_session): """Return the ``image_type`` name in a progress row's log names. The per-process log filenames are keyed on ``processing_step`` and ``image_type`` (see ``setup_process``). Image processing has the image type on the progress row directly; lightcurve processing derives it from the single photometric reference. Subclasses supply the mapping. Args: processing_progress: A row of :attr:`_progress_model`. db_session: Active session for any lookups. Returns: str: The image-type name used when the logs were written. """ raise NotImplementedError
[docs] def find_processing_outputs(self, processing_progress, db_session=None): """Return all logging and output filenames for given processing ID. Works for both image and lightcurve processing: everything but the progress table (:attr:`_progress_model`) and the image-type lookup (:meth:`_progress_image_type`) is shared, and both managers write their logs through the same ``processing_step`` + ``image_type`` naming. Args: processing_progress: Either a :attr:`_progress_model` row or its integer id. db_session: Optional active session; one is opened if omitted. Returns: tuple: ``(main_fnames, worker_fnames)`` as produced by ``get_log_outerr_filenames``. """ if db_session is None: # False positivie # pylint: disable=redefined-argument-from-local with start_db_session() as db_session: # pylint: enable=redefined-argument-from-local return self.find_processing_outputs( processing_progress, db_session ) # _progress_model is None only on the base class, which is never # used directly; every concrete manager sets it to its ORM class. # pylint: disable=isinstance-second-argument-not-valid-type if not isinstance(processing_progress, self._progress_model): # pylint: enable=isinstance-second-argument-not-valid-type return self.find_processing_outputs( db_session.scalar( select(self._progress_model).filter_by( id=processing_progress ) ), db_session, ) image_type = self._progress_image_type(processing_progress, db_session) main_fnames = get_log_outerr_filenames( existing_pid=processing_progress.run.process_id, task="*", parent_pid="", processing_step=processing_progress.step.name, image_type=image_type, **self._processing_config, ) logging.info("Main fnames: %s", repr(main_fnames)) assert len(main_fnames[0]) == len(main_fnames[1]) == 1, ( f"{processing_progress.step.name} reported " f"{len(main_fnames[0])} input and {len(main_fnames[1])} output " "files where exactly one of each was expected!" ) return ( tuple(fname[0] for fname in main_fnames), get_log_outerr_filenames( existing_pid="*", task="*", parent_pid=processing_progress.run.process_id, processing_step=processing_progress.step.name, image_type=image_type, **self._processing_config, ), )
[docs] def _create_current_processing(self, step, target, db_session): """Add a new ProcessingProgress at start of given step.""" self.current_step = step progress_class = ( ImageProcessingProgress if target[0] == "image_type" else LightCurveProcessingProgress ) self._current_processing = progress_class( run_id=self._pipeline_run_id, step_id=step.id, **{target[0] + "_id": target[1]}, configuration_version=self.step_version[step.name], # False positive # pylint: disable=not-callable started=sql.func.now(), # pylint: enable=not-callable finished=None, ) db_session.add(self._current_processing) db_session.flush()
[docs] def _cleanup_interrupted(self, db_session): """Cleanup previously interrupted processing for the current step.""" raise RuntimeError( "Cleanup is not defined for ProcessingManager base class" )
[docs] def _get_split_channels(self, image): """Return the ``split_channels`` option for the given image.""" return { channel.name: ( slice(channel.y_offset, None, channel.y_step), slice(channel.x_offset, None, channel.x_step), ) for channel in image.observing_session.camera.channels }
[docs] def __init__(self, pipeline_run_id, version=None): """ Set the public class attributes per the given configuartion version. Args: pipeline_run_id(int): The ID of the PipelineRun using the instance. If set to None, all logging is suppressed and no processing can be performed. Useful for reviewing the results of past processing. version(int): The version of the parameters to get. If a parameter value is not specified for this exact version use the value with the largest version not exceeding ``version``. By default us the latest configuration version in the database. Returns: None """ if pipeline_run_id is None: logging.disable() else: logging.disable(logging.NOTSET) DataReductionFile.get_file_structure() LightCurveFile.get_file_structure() self._logger = logging.getLogger(__name__) self.current_step = None self._current_processing = None self.configuration = {} self.condition_expressions = {} self._evaluated_expressions = {} self._master_expressions = {} self._processed_ids = {} self.pending = {} self._some_failed = False self._pipeline_run_id = pipeline_run_id # Keys threaded into every per-step config so each worker process # can rebuild the pipeline-run snapshot for error context (phase # 2). All come straight from the run row -- which is the single # source of truth for code_version (set once at run creation). self._error_context_keys = {} with start_db_session() as db_session: if pipeline_run_id is not None: pipeline_run = db_session.get(PipelineRun, pipeline_run_id) if pipeline_run is not None: self._error_context_keys = { "pipeline_run_id": pipeline_run_id, "host": pipeline_run.host, "pipeline_started": pipeline_run.started, "code_version": pipeline_run.code_version, } if version is None: version = db_session.execute( # False positivie # pylint: disable=not-callable # pylint: disable=no-member select(sql.func.max(Configuration.version)) # pylint: enable=not-callable # pylint: enable=no-member ).scalar_one() db_configuration = get_db_configuration(version, db_session) for config_entry in db_configuration: if config_entry.parameter.name not in self.configuration: self.configuration[config_entry.parameter.name] = { "version": config_entry.version, "value": {}, } self.configuration[config_entry.parameter.name]["value"][ frozenset( cond.expression_id for cond in config_entry.conditions ) ] = config_entry.value for cond in config_entry.conditions: if cond.expression_id not in self.condition_expressions: self.condition_expressions[cond.expression_id] = ( cond.expression.expression ) self._processing_config = self.get_config( self.get_matched_expressions(Evaluator()), db_session, step_name="add_images_to_db", )[0] del self._processing_config["processing_step"] del self._processing_config["image_type"] if pipeline_run_id is not None: setup_process( task="main", parent_pid="", processing_step="init_processing", image_type="none", **self._processing_config, ) for master_type in db_session.scalars(select(MasterType)).all(): for expression in ( master_type.match_expressions + master_type.split_expressions ): self.condition_expressions[expression.id] = ( expression.expression ) self._logger.debug( "Condition expressions to evaluate: %s", repr(self.condition_expressions), ) self.step_version = { step.name: max( self.configuration[param.name]["version"] for param in step.parameters ) for step in db_session.scalars(select(Step)).all() } if pipeline_run_id is not None: self._cleanup_interrupted(db_session)
[docs] def get_config( # pylint: disable=too-many-arguments self, matched_expressions, db_session, *, db_step=None, step_name=None, image_id=None, channel=None, ): """Return the configuration for the given step for given expressions.""" assert ( db_step or step_name ), "Requesting a configuration without saying which step it is for!" if matched_expressions is None: assert image_id is not None and channel is not None, ( "Requesting the configuration for " f"{step_name or db_step.name} without either the matched " "expressions or an image and channel to evaluate them for!" ) matched_expressions = self._evaluated_expressions[image_id][ channel ]["matched"] with TemporaryDirectory() as temp_dir: temp_file_path = path.join(temp_dir, "config_file.tmp") with open( temp_file_path, mode="w", encoding="utf-8" ) as config_file: config_key = self._write_config_file( matched_expressions, config_file, db_steps=[db_step] if db_step else None, step_names=[step_name] if not db_step else None, db_session=db_session, ) self._logger.debug( "Flushing config file %s", repr(config_file.name) ) config_file.flush() os.fsync( config_file.fileno() ) # Ensure data is written to disk (cross-platform) self._logger.debug( "Wrote config file %s", repr(config_file.name) ) # Parse stored configuration into the step's config dict. # In this programmatic context a bad value must raise a # recordable ConfigurationError, not print usage and # sys.exit() into a detached run's redirected log. with raise_config_parse_errors(): config = getattr( processing_steps, db_step.name if db_step else step_name ).parse_command_line(["-c", config_file.name]) config["project_home"] = get_project_home() config.update(self._error_context_keys) return (config, config_key)
[docs] def set_pending(self, db_session): """ Set the unprocessed images and channels split by step and image type. Args: db_session(Session): The database session to use. Returns: {(step.id, image_type.id): (Image, str)}: The images and channels of the specified type for which the specified step has not applied with the current configuration. """ raise RuntimeError( "Setting pending is not defined for ProcessingManager base class" )
[docs] def add_masters(self, new_masters, step_name=None, image_type_name=None): """ Add new master files to the database. Args: new_masters(dict or iterable of dicts): Information about the new mbaster(s) to add. Each dictionary should include: * type: The type of master being added. * filename: The full path to the new master file. * preference_order: Expression to select among multiple possible masters. For each frame the expression for each candidate master is evaluateed using the frame header and the master with the smallest resulting value is used. * disable(bool): Optional. If set to True the masters are recorded in the database, but not flagged enabled. step_name(str): The name of the step that generated the masters. image_type_name(str): The name of the type of images whose processing created the masters. """ self._logger.debug( "Adding new masters from %s step for %s images:\n%s", step_name, image_type_name, repr(new_masters), ) with start_db_session() as db_session: master_id = ( db_session.scalar( # False positive # pylint: disable=not-callable select(sql.func.max(MasterFile.id)) # pylint: enable=not-callable ) or 0 ) + 1 type_id_select = select(MasterType.id) if step_name is not None: assert image_type_name is not None, ( f"Looking up the master type produced by {step_name} " "without saying which image type it was created from!" ) type_id_select = ( type_id_select.join(ImageType) .join(Step) .where( Step.name == step_name, ImageType.name == image_type_name, ) ) if isinstance(new_masters, dict): new_masters = (new_masters,) if self._current_processing is not None: self._current_processing = db_session.merge( self._current_processing, load=False ) for master in new_masters: if len(new_masters) > 1 or step_name is None: master_type_id = db_session.scalar( type_id_select.where(MasterType.name == master["type"]) ) else: master_type_id = db_session.scalar(type_id_select) db_session.add( MasterFile( id=master_id, type_id=master_type_id, progress_id=( None if self._current_processing is None else self._current_processing.id ), filename=master["filename"], use_smallest=master["preference_order"], enabled=not master.get("disable", False), ) ) master_id += 1
[docs] def create_config_file(self, example_header, outf, steps=None): """ Save configuration for processing given header to given output file. Args: example_header(str or dict-like): The header to use to determine the values of the configuration parameters. Can be passed directly as a header instance or FITS or DR filename. outf(file or str): The file to write the configuration to. Can be passed as something providing a write method or filename. Overwritten if exists. steps(list): If specified, only configuration parameters required by these steps will be included. steps=None Returns: None """ matched_expressions = self.get_matched_expressions( Evaluator(example_header) ) with start_db_session() as db_session: if isinstance(outf, str): with open(outf, "w", encoding="utf-8") as opened_outf: self._write_config_file( matched_expressions, opened_outf, step_names=steps, db_session=db_session, ) else: self._write_config_file( matched_expressions, outf, step_names=steps, db_session=db_session, )
[docs] def __call__(self, limit_to_steps=None): """Perform all the processing for the given steps (all if None).""" raise RuntimeError("Calling instance of ProcessingManager base class!")
# pylint: enable=too-many-locals # pylint: enable=too-many-branches # pylint: enable=too-many-instance-attributes