-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dataflow plan node JoinToCustomGranularityNode
- Loading branch information
1 parent
4af0e56
commit 2aaf239
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
from __future__ import annotations | ||
|
||
from abc import ABC | ||
from dataclasses import dataclass | ||
from typing import Sequence | ||
|
||
from metricflow_semantics.dag.id_prefix import IdPrefix, StaticIdPrefix | ||
from metricflow_semantics.dag.mf_dag import DisplayedProperty | ||
from metricflow_semantics.specs.time_dimension_spec import TimeDimensionSpec | ||
from metricflow_semantics.visitor import VisitorOutputT | ||
|
||
from metricflow.dataflow.dataflow_plan import DataflowPlanNode, DataflowPlanNodeVisitor | ||
|
||
|
||
@dataclass(frozen=True) | ||
class JoinToCustomGranularityNode(DataflowPlanNode, ABC): | ||
"""Join parent dataset to time spine dataset to convert time dimension to a custom granularity.""" | ||
|
||
time_dimension_spec: TimeDimensionSpec | ||
|
||
@staticmethod | ||
def create( # noqa: D102 | ||
parent_node: DataflowPlanNode, time_dimension_spec: TimeDimensionSpec | ||
) -> JoinToCustomGranularityNode: | ||
return JoinToCustomGranularityNode(parent_nodes=(parent_node,), time_dimension_spec=time_dimension_spec) | ||
|
||
@classmethod | ||
def id_prefix(cls) -> IdPrefix: # noqa: D102 | ||
return StaticIdPrefix.DATAFLOW_NODE_JOIN_TO_CUSTOM_GRANULARITY_ID_PREFIX | ||
|
||
def accept(self, visitor: DataflowPlanNodeVisitor[VisitorOutputT]) -> VisitorOutputT: # noqa: D102 | ||
return visitor.visit_join_to_custom_granularity_node(self) | ||
|
||
@property | ||
def description(self) -> str: # noqa: D102 | ||
return """Join to Custom Granularity Dataset""" | ||
|
||
@property | ||
def displayed_properties(self) -> Sequence[DisplayedProperty]: # noqa: D102 | ||
return tuple(super().displayed_properties) + ( | ||
DisplayedProperty("time_dimension_spec", self.time_dimension_spec), | ||
) | ||
|
||
@property | ||
def parent_node(self) -> DataflowPlanNode: # noqa: D102 | ||
return self.parent_nodes[0] | ||
|
||
def functionally_identical(self, other_node: DataflowPlanNode) -> bool: # noqa: D102 | ||
return isinstance(other_node, self.__class__) and other_node.time_dimension_spec == self.time_dimension_spec | ||
|
||
def with_new_parents( # noqa: D102 | ||
self, new_parent_nodes: Sequence[DataflowPlanNode] | ||
) -> JoinToCustomGranularityNode: | ||
assert len(new_parent_nodes) == 1, "JoinToCustomGranularity accepts exactly one parent node." | ||
return JoinToCustomGranularityNode.create( | ||
parent_node=new_parent_nodes[0], time_dimension_spec=self.time_dimension_spec | ||
) |