Skip to content
Snippets Groups Projects
Commit fb27c776 authored by Janet Goldstein's avatar Janet Goldstein Committed by Charlotte Hausman
Browse files

Post Apocalypse Round 6 - Ingestion

parent 5c7a47c0
No related branches found
No related tags found
1 merge request!365WS-543: Addressed issues found in calibration ingestion testing
This commit is part of merge request !365. Comments created here will be created in the context of that merge request.
...@@ -14,9 +14,11 @@ import pendulum ...@@ -14,9 +14,11 @@ import pendulum
from pendulum import DateTime from pendulum import DateTime
from ingest_envoy.manifest_components import ( from ingest_envoy.manifest_components import (
MANIFEST_NAME_BASE,
MANIFEST_NAME_EXT,
ARTIFACT_NAME, ARTIFACT_NAME,
TARFILE_EXT, ARTIFACT_EXT,
WEBLOG_FILENAME, WEBLOG,
JSON, JSON,
IngestionManifestKey, IngestionManifestKey,
ManifestComponentIF, ManifestComponentIF,
...@@ -27,7 +29,6 @@ from ingest_envoy.manifest_components import ( ...@@ -27,7 +29,6 @@ from ingest_envoy.manifest_components import (
AncillaryProduct, AncillaryProduct,
OutputGroup, OutputGroup,
SCIENCE_PRODUCT_PATTERN, SCIENCE_PRODUCT_PATTERN,
MANIFEST_FILENAME,
) )
from ingest_envoy.utilities import ( from ingest_envoy.utilities import (
ScienceProductType, ScienceProductType,
...@@ -151,7 +152,7 @@ class IngestionManifestBuilder: ...@@ -151,7 +152,7 @@ class IngestionManifestBuilder:
# N.B. this is sufficient for most types of ingestion, # N.B. this is sufficient for most types of ingestion,
# but ALMA CALs will have multiple EB SPs, identified only by locator, # but ALMA CALs will have multiple EB SPs, identified only by locator,
# and VLBAs have no input group at all. # and VLBAs have no input group at all.
sp_in = InputScienceProduct(locator=self.locator) sp_in = InputScienceProduct(sp_type=self.sp_type, locator=self.locator)
return InputGroup([sp_in]) return InputGroup([sp_in])
...@@ -187,7 +188,7 @@ class IngestionManifestBuilder: ...@@ -187,7 +188,7 @@ class IngestionManifestBuilder:
""" """
current_time = pendulum.now() current_time = pendulum.now()
timestamp = format_timestamp(current_time) timestamp = format_timestamp(current_time)
return f"{ARTIFACT_NAME}{timestamp}{TARFILE_EXT}" return f"{ARTIFACT_NAME}{timestamp}{ARTIFACT_EXT}"
def write_ingestion_artifacts_tar(self) -> Path: def write_ingestion_artifacts_tar(self) -> Path:
""" """
...@@ -219,11 +220,11 @@ class IngestionManifestBuilder: ...@@ -219,11 +220,11 @@ class IngestionManifestBuilder:
ancillary_products = [] ancillary_products = []
# if there's a weblog in here, grab it # if there's a weblog in here, grab it
maybe_weblogs = [file for file in self.files_found if file.name == WEBLOG_FILENAME] maybe_weblogs = [file for file in self.files_found if file.name.endswith(WEBLOG)]
if len(maybe_weblogs) > 0: if len(maybe_weblogs) > 0:
weblog = maybe_weblogs[0] weblog = maybe_weblogs[0]
weblog_ap = AncillaryProduct( weblog_ap = AncillaryProduct(
type=AncillaryProductType.PIPELINE_WEBLOG_TYPE, filename=weblog.name type=AncillaryProductType.PIPELINE_WEBLOG, filename=weblog.name
) )
ancillary_products.append(weblog_ap) ancillary_products.append(weblog_ap)
...@@ -280,7 +281,7 @@ class IngestionManifest(ManifestIF): ...@@ -280,7 +281,7 @@ class IngestionManifest(ManifestIF):
:return: :return:
""" """
output_path = self.staging_source_dir / MANIFEST_FILENAME output_path = self.staging_source_dir / build_manifest_filename()
to_write = json.dumps(self.to_json(), indent=4) to_write = json.dumps(self.to_json(), indent=4)
with open(output_path, "w") as out: with open(output_path, "w") as out:
...@@ -335,6 +336,17 @@ def format_timestamp(datetime: DateTime) -> str: ...@@ -335,6 +336,17 @@ def format_timestamp(datetime: DateTime) -> str:
return datetime.format("YYYY_MM_DDThh_mm_ss.SSS") return datetime.format("YYYY_MM_DDThh_mm_ss.SSS")
def build_manifest_filename() -> str:
"""
Build unique manifest filename in standard format.
:return: the filename
"""
current_time = pendulum.now()
timestamp = format_timestamp(current_time)
return f"{MANIFEST_NAME_BASE}{timestamp}{MANIFEST_NAME_EXT}"
def find_manifest(ingestion_path: Path) -> Path: def find_manifest(ingestion_path: Path) -> Path:
""" """
Find the ingestion manifest at this ingestion path. Find the ingestion manifest at this ingestion path.
...@@ -342,7 +354,8 @@ def find_manifest(ingestion_path: Path) -> Path: ...@@ -342,7 +354,8 @@ def find_manifest(ingestion_path: Path) -> Path:
:param ingestion_path: home of ingestion files :param ingestion_path: home of ingestion files
:return: :return:
""" """
for json_file in ingestion_path.glob(MANIFEST_FILENAME): for file in ingestion_path.iterdir():
return json_file if file.name.startswith(MANIFEST_NAME_BASE) and file.name.endswith(MANIFEST_NAME_EXT):
return file
raise FileNotFoundError(f"No ingestion manifest found at {ingestion_path}") raise FileNotFoundError(f"No ingestion manifest found at {ingestion_path}")
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