Skip to content

Commit

Permalink
Merge pull request #872 from deepmodeling/zjgemi
Browse files Browse the repository at this point in the history
fix: add lifecycle hooks to step/task
  • Loading branch information
zjgemi authored Oct 23, 2024
2 parents b57edb3 + 9030946 commit 62d2abe
Show file tree
Hide file tree
Showing 9 changed files with 667 additions and 9 deletions.
7 changes: 4 additions & 3 deletions src/dflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
ShellOPTemplate)
from .resource import Resource
from .slurm import SlurmJob, SlurmJobTemplate, SlurmRemoteExecutor
from .step import (Step, argo_concat, argo_enumerate, argo_len, argo_range,
argo_sequence, argo_sum)
from .step import (HookStep, Step, argo_concat, argo_enumerate, argo_len,
argo_range, argo_sequence, argo_sum)
from .steps import Steps
from .task import Task
from .utils import (copy_artifact, copy_s3, download_artifact, download_s3,
Expand All @@ -44,7 +44,8 @@
"LineageClient", "Secret", "query_workflows",
"query_archived_workflows", "ContainerExecutor", "ArgoStep",
"ArgoWorkflow", "argo_enumerate", "path_object_of_artifact",
"CustomArtifact", "gen_code", "jsonpickle", "HTTPArtifact"]
"CustomArtifact", "gen_code", "jsonpickle", "HTTPArtifact",
"HookStep"]


if os.environ.get("DFLOW_LINEAGE"):
Expand Down
7 changes: 5 additions & 2 deletions src/dflow/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from .v1alpha1_artifact import V1alpha1Artifact
from .v1alpha1_lifecycle_hook import V1alpha1LifecycleHook
from .v1alpha1_parameter import V1alpha1Parameter
from .v1alpha1_retry_strategy import V1alpha1RetryStrategy
from .v1alpha1_sequence import V1alpha1Sequence
from .v1alpha1_value_from import V1alpha1ValueFrom
from .v1alpha1_workflow_step import V1alpha1WorkflowStep

__all__ = ["V1alpha1Artifact", "V1alpha1Parameter",
"V1alpha1RetryStrategy", "V1alpha1Sequence", "V1alpha1ValueFrom"]
__all__ = ["V1alpha1Artifact", "V1alpha1LifecycleHook", "V1alpha1Parameter",
"V1alpha1RetryStrategy", "V1alpha1Sequence", "V1alpha1ValueFrom",
"V1alpha1WorkflowStep"]
199 changes: 199 additions & 0 deletions src/dflow/client/v1alpha1_lifecycle_hook.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
# coding: utf-8

"""
Argo Server API
You can get examples of requests and responses by using the CLI with `--gloglevel=9`, e.g. `argo list --gloglevel=9` # noqa: E501
The version of the OpenAPI document: v2.12.2
Generated by: https://openapi-generator.tech
"""


import pprint
import re # noqa: F401

import six

from argo.workflows.client.configuration import Configuration


class V1alpha1LifecycleHook(object):
"""NOTE: This class is auto generated by OpenAPI Generator.
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""

"""
Attributes:
openapi_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
openapi_types = {
'arguments': 'V1alpha1Arguments',
'expression': 'str',
'template': 'str',
'template_ref': 'V1alpha1TemplateRef',
}

attribute_map = {
'arguments': 'arguments',
'expression': 'expression',
'template': 'template',
'template_ref': 'templateRef'
}

def __init__(self, arguments=None, expression=None, template=None, template_ref=None, local_vars_configuration=None): # noqa: E501
"""V1alpha1LifecycleHook - a model defined in OpenAPI""" # noqa: E501
if local_vars_configuration is None:
local_vars_configuration = Configuration()
self.local_vars_configuration = local_vars_configuration

self._arguments = None
self._expression = None
self._template = None
self._template_ref = None

if arguments is not None:
self.arguments = arguments
if expression is not None:
self.expression = expression
if template is not None:
self.template = template
if template_ref is not None:
self.template_ref = template_ref

@property
def arguments(self):
"""Gets the arguments of this V1alpha1LifecycleHook. # noqa: E501
:return: The arguments of this V1alpha1LifecycleHook. # noqa: E501
:rtype: V1alpha1Arguments
"""
return self._arguments

@arguments.setter
def arguments(self, arguments):
"""Sets the arguments of this V1alpha1LifecycleHook.
:param arguments: The arguments of this V1alpha1LifecycleHook. # noqa: E501
:type: V1alpha1Arguments
"""

self._arguments = arguments

@property
def expression(self):
"""Gets the expression of this V1alpha1LifecycleHook. # noqa: E501
:return: The expression of this V1alpha1LifecycleHook. # noqa: E501
:rtype: V1alpha1ContinueOn
"""
return self._expression

@expression.setter
def expression(self, expression):
"""Sets the expression of this V1alpha1LifecycleHook.
:param expression: The expression of this V1alpha1LifecycleHook. # noqa: E501
:type: V1alpha1ContinueOn
"""

self._expression = expression

@property
def template(self):
"""Gets the template of this V1alpha1LifecycleHook. # noqa: E501
Template is the name of the template to execute at the hook # noqa: E501
:return: The template of this V1alpha1LifecycleHook. # noqa: E501
:rtype: str
"""
return self._template

@template.setter
def template(self, template):
"""Sets the template of this V1alpha1LifecycleHook.
Template is the name of the template to execute at the hook # noqa: E501
:param template: The template of this V1alpha1LifecycleHook. # noqa: E501
:type: str
"""

self._template = template

@property
def template_ref(self):
"""Gets the template_ref of this V1alpha1LifecycleHook. # noqa: E501
:return: The template_ref of this V1alpha1LifecycleHook. # noqa: E501
:rtype: V1alpha1TemplateRef
"""
return self._template_ref

@template_ref.setter
def template_ref(self, template_ref):
"""Sets the template_ref of this V1alpha1LifecycleHook.
:param template_ref: The template_ref of this V1alpha1LifecycleHook. # noqa: E501
:type: V1alpha1TemplateRef
"""

self._template_ref = template_ref

def to_dict(self):
"""Returns the model properties as a dict"""
result = {}

for attr, _ in six.iteritems(self.openapi_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
result[attr] = value

return result

def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())

def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()

def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, V1alpha1LifecycleHook):
return False

return self.to_dict() == other.to_dict()

def __ne__(self, other):
"""Returns true if both objects are not equal"""
if not isinstance(other, V1alpha1LifecycleHook):
return True

return self.to_dict() != other.to_dict()
Loading

0 comments on commit 62d2abe

Please sign in to comment.