Source code for airflow.providers.cncf.kubernetes.python_kubernetes_script

#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
"""Utilities for using the kubernetes decorator."""

from __future__ import annotations

import os
from collections import deque

from jinja2 import Environment, FileSystemLoader, StrictUndefined, select_autoescape
from jinja2.nativetypes import NativeEnvironment


def _balance_parens(after_decorator):
    num_paren = 1
    after_decorator = deque(after_decorator)
    after_decorator.popleft()
    while num_paren:
        current = after_decorator.popleft()
        if current == "(":
            num_paren += 1
        elif current == ")":
            num_paren -= 1
    return "".join(after_decorator)


[docs]def remove_task_decorator(python_source: str, task_decorator_name: str) -> str: """ Remove @task.kubernetes or similar as well as @setup and @teardown. :param python_source: python source code :param task_decorator_name: the task decorator name """ def _remove_task_decorator(py_source, decorator_name): if decorator_name not in py_source: return python_source split = python_source.split(decorator_name) before_decorator, after_decorator = split[0], split[1] if after_decorator[0] == "(": after_decorator = _balance_parens(after_decorator) if after_decorator[0] == "\n": after_decorator = after_decorator[1:] return before_decorator + after_decorator decorators = ["@setup", "@teardown", task_decorator_name] for decorator in decorators: python_source = _remove_task_decorator(python_source, decorator) return python_source
[docs]def write_python_script( jinja_context: dict, filename: str, render_template_as_native_obj: bool = False, ): """ Render the python script to a file to execute in the virtual environment. :param jinja_context: The jinja context variables to unpack and replace with its placeholders in the template file. :param filename: The name of the file to dump the rendered script to. :param render_template_as_native_obj: If ``True``, rendered Jinja template would be converted to a native Python object """ template_loader = FileSystemLoader(searchpath=os.path.dirname(__file__)) template_env: Environment if render_template_as_native_obj: template_env = NativeEnvironment(loader=template_loader, undefined=StrictUndefined) else: template_env = Environment( loader=template_loader, undefined=StrictUndefined, autoescape=select_autoescape(["html", "xml"]), ) template = template_env.get_template("python_kubernetes_script.jinja2") template.stream(**jinja_context).dump(filename)

Was this entry helpful?