logger.info("...querying MoM database for subtasks of project %s"%project_mom2id)
logger.info("...querying MoM database for subtasks of project %s"%project_mom2id)
# todo: double-check the correct use of ids. What refers to a mom2id and what refers to a database entry pk does not seem systematic and is very comfusing.
# todo: double-check the correct use of ids. What refers to a mom2id and what refers to a database entry pk does not seem systematic and is very comfusing.
# todo: clarify: Measurements correspond to subtask and Observations correspond to task level?
# todo: clarify: Measurements correspond to subtask and Observations correspond to task level?
# todo: clarify: Is there info on template/start/stop on Measurement level somewhere? Using the parent obs now.
# We have lofar_observation and lofar_pipeline tables, but lofar_observation seems to refer to a 'task level mom2object'
# with measurement and pipeline children, where the latter are further described on the lofar_pipeline table.
# So I'm assuming that type '%%MEASUREMENT%%' here correspond to observation subtasks, which also means that some
# info is apparently squashed together with that of other subtasks of the same task in the lofar_observation entry
# of the parent/'task'.
# todo: clarify: Is there info on template/start/stop on Measurement level somewhere? Using the parent task/observation now.
related_lofar_observation.template, related_lofar_observation_specification.starttime AS starttime, related_lofar_observation_specification.endtime AS endtime
FROM mom2object
FROM mom2object
INNER JOIN mom2object AS related_mom2object ON mom2object.parentid = related_mom2object.parentid
INNER JOIN mom2object AS related_mom2object ON mom2object.parentid = related_mom2object.parentid
INNER JOIN mom2objectstatus ON related_mom2object.currentstatusid = mom2objectstatus.id
INNER JOIN mom2objectstatus ON related_mom2object.currentstatusid = mom2objectstatus.id
INNER JOIN status ON mom2objectstatus.statusid = status.id
INNER JOIN status ON mom2objectstatus.statusid = status.id
LEFT JOIN lofar_observation ON related_mom2object.id = lofar_observation.mom2objectid
LEFT JOIN lofar_observation AS related_lofar_observation ON related_mom2object.id = related_lofar_observation.mom2objectid
LEFT JOIN lofar_observation_specification AS related_lofar_observation_specification ON related_lofar_observation.user_specification_id = related_lofar_observation_specification.id
LEFT JOIN lofar_observation ON mom2object.id = lofar_observation.mom2objectid
LEFT JOIN lofar_observation_specification ON lofar_observation.user_specification_id = lofar_observation_specification.id
LEFT JOIN lofar_observation_specification ON lofar_observation.user_specification_id = lofar_observation_specification.id
WHERE mom2object.mom2id = %s
WHERE mom2object.mom2id = %s
'''
'''
#AND parent_mom2object.mom2objecttype LIKE '%%FOLDER%%'
logger.info("Using scheduling unit draft_id=%s blueprint_id=%s from related task mom2id=%s for task mom2id=%s"%(draft.id,blueprint.id,details["mom2id"],task_mom2id))
blueprint=related_task.scheduling_unit_blueprint
returndraft,blueprint
draft=blueprint.draft
logger.info("...using scheduling unit draft_id=%s blueprint_id=%s from related task mom2id=%s for task mom2id=%s"%(draft.id,blueprint.id,details["mom2id"],task_mom2id))
returndraft,blueprint
else:
logger.info("...related task mom2id=%s starts too far apart (seconds=%s threshold=%s)"%(details["mom2id"],time_distance,max_time_distance))
continue
else:
logger.warning("Cannot compare times, assuming task mom2id=%s is not related to %s"%(task_mom2id,details))# todo: Investigate... is this because sometimes user sometimes system specified?
continue
scheduling_unit_draft_details={"name":'dummy',
scheduling_unit_draft_details={"name":'dummy',
"description":"Scheduling unit draft (created during MoM migration for task mom2id=%s)"%task_mom2id,
"description":"Scheduling unit draft (created during MoM migration for task mom2id=%s)"%task_mom2id,
logger.warning("No SubtaskTemplate matching '%s' in tmss database! Using dummy id=%s instead for subtask mom2id=%s"%(template_name,specifications_template.id,mom_details['mom2id']))
else:
else:
logger.error('Missing template name in MoM details! - Skipping subtask mom2id=%(mom2id)s'%mom_details)
logger.error('Missing template name in MoM details! - Skipping subtask mom2id=%(mom2id)s'%mom_details)
stats['subtasks_skipped']+=1
stats['subtasks_skipped']+=1
continue
continue
# ----------------
# the following entries are needed to relate a task to it's project.
logger.info('...found scheduling unit template id=%s for subtask mom2id=%s templatename=%s'%(scheduling_unit_template.id,mom_details["mom2id"],template_name))
logger.info('...found SchedulingUnitTemplate id=%s for subtask mom2id=%s templatename=%s'%(scheduling_unit_template.id,mom_details["mom2id"],template_name))
logger.warning('No scheduling unit template was found for subtask mom2id=%s templatename=%s. Using dummy template id=%s'%(mom_details["mom2id"],template_name,scheduling_unit_template.id))
logger.warning('No SchedulingUnitTemplate was found for subtask mom2id=%s templatename=%s. Using dummy template id=%s'%(mom_details["mom2id"],template_name,scheduling_unit_template.id))
"specifications_doc":{},# todo: where from? We have user_specification_id (for task?) and system_specification_id (for subtask?) on lofar_observation (I guess referring to lofar_observation_specification). Shall we piece things together from that, or is there a text blob to use? Also: pipeline info lives in obs_spec too?