All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencent.devops.process.engine.atom.IAtomTask.kt Maven / Gradle / Ivy

The newest version!
/*
 * Tencent is pleased to support the open source community by making BK-CI 蓝鲸持续集成平台 available.
 *
 * Copyright (C) 2019 THL A29 Limited, a Tencent company.  All rights reserved.
 *
 * BK-CI 蓝鲸持续集成平台 is licensed under the MIT license.
 *
 * A copy of the MIT License is included in this file.
 *
 *
 * Terms of the MIT License:
 * ---------------------------------------------------
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of
 * the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 * LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
 * NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

package com.tencent.devops.process.engine.atom

import com.tencent.devops.common.api.pojo.ErrorCode
import com.tencent.devops.common.api.pojo.ErrorType
import com.tencent.devops.common.api.util.EnvUtils
import com.tencent.devops.common.api.util.timestampmilli
import com.tencent.devops.common.event.enums.ActionType
import com.tencent.devops.common.pipeline.container.NormalContainer
import com.tencent.devops.common.pipeline.container.VMBuildContainer
import com.tencent.devops.common.pipeline.enums.BuildStatus
import com.tencent.devops.common.pipeline.pojo.element.Element
import com.tencent.devops.common.pipeline.pojo.element.RunCondition
import com.tencent.devops.common.pipeline.type.docker.DockerDispatchType
import com.tencent.devops.process.engine.common.Timeout
import com.tencent.devops.process.engine.pojo.PipelineBuildTask
import org.slf4j.LoggerFactory
import java.util.concurrent.TimeUnit

/**
 * 引擎构建的最基础的原子业务逻辑接口定义
 * @author irwinsun
 * @version 1.0
 */
interface IAtomTask {

    companion object {
        val logger = LoggerFactory.getLogger(IAtomTask::class.java)!!
    }

    /**
     * 开始执行原子逻辑,一般原子的业务逻辑都在这里处理.
     * 请注意: 如果有需要线程大量的循环sleep等待其他处理结果来判断是否成功的逻辑,请拆开到 tryFinish 去做判断
     * 并且在 tryFinish 函数确认返回false,则引擎后续会继续调度 tryFinish 函数来处理.
     * 该设计用来处理那些需要大量循环查询原子任务是否结束的,拆分为单独的 tryFinish 进行尝试查询状态以终止,减少线程被独占做无用的sleep
     * 应用场景:
     * 1.同步原子,需要轮循等待接口返回数据以决定原子是否完成整个业务, eg: CodeCC/apk加固/子流水线调用
     *
     * 例外: 当前原子执行失败则不会等待,直接标识为当前原子执行结束 status.isFinish()
     *
     * @param task 执行任务
     * @param param 参数
     * @param runVariables 当前流水线运行中产生的变量
     * @return BuildStatus 返回标志位是否要等待其他任务结束才结束
     */
    fun execute(task: PipelineBuildTask, param: T, runVariables: Map): AtomResponse

    /**
     * 读取参数Element
     */
    fun getParamElement(task: PipelineBuildTask): T

    fun execute(task: PipelineBuildTask, runVariables: Map): AtomResponse {
        return execute(task, getParamElement(task), runVariables)
    }

    /**
     * 是否结束当前原子结束,如果不是,则后续引擎会不断地去调用该方法来判断原子是否结束了。
     * 子类通过复写该方法来实现,目前默认用查任务状态的方式保证大部分原子都是这类的操作
     *
     *
     * @param task 执行任务
     * @param runVariables 运行时变量
     * @param actionType 事件动作
     * @return BuildStatus
     *      返回标志位是否要等待其他任务结束才结束,如果返回 status.isFinish()
     *          true: 可以结束当前原子
     *          false: 需要等待其在他任务执行完。后续会不断的去调用该函数去查直到false,或者超时
     *          例外: 当前原子执行失败则不会等待,直接标识为当前原子执行结束
     */
    @Suppress("ALL")
    fun tryFinish(task: PipelineBuildTask, runVariables: Map, actionType: ActionType): AtomResponse {
        val param = getParamElement(task)
        var atomResponse = tryFinishImpl(task, param, runVariables, actionType)
        // 未结束?检查是否超时
        if (!atomResponse.buildStatus.isFinish()) {
            val startTime = task.startTime?.timestampmilli() ?: 0L
            val timeoutMills: Long =
                if (param is Element) {
                    val additionalOptions = param.additionalOptions
                    Timeout.transMinuteTimeoutToMills(additionalOptions?.timeout?.toInt())
                } else if (param is NormalContainer) {
                    Timeout.transMinuteTimeoutToMills(
                        (param.jobControlOption?.prepareTimeout ?: Timeout.DEFAULT_PREPARE_MINUTES)
                    )
                } else if (param is VMBuildContainer) {
                    // docker 构建机要求10分钟内超时
                    if (param.dispatchType is DockerDispatchType || !param.dockerBuildVersion.isNullOrBlank()) {
                        Timeout.transMinuteTimeoutToMills(
                            (param.jobControlOption?.prepareTimeout ?: Timeout.DEFAULT_PREPARE_MINUTES)
                        )
                    } else {
                        Timeout.transMinuteTimeoutToMills(param.jobControlOption?.timeout)
                    }
                } else {
                    0L
                }
            val runCondition = task.additionalOptions?.runCondition
            if (timeoutMills > 0 && System.currentTimeMillis() - startTime >= timeoutMills) {
                logger.info(
                    "[${task.buildId}]|TIME_OUT|" +
                        "startTime=$startTime|timeoutMills=$timeoutMills|current=${System.currentTimeMillis()}"
                )
                atomResponse = AtomResponse(
                    buildStatus = BuildStatus.EXEC_TIMEOUT,
                    errorType = ErrorType.USER,
                    errorCode = ErrorCode.USER_TASK_OUTTIME_LIMIT,
                    errorMsg = "Task time out ${TimeUnit.MILLISECONDS.toMinutes(timeoutMills)} minutes"
                )
            } else if (actionType.isTerminate()) { // 强制终止的设置为失败
                logger.info("[${task.buildId}]|FORCE_TERMINATE|job=${task.containerId}|task=${task.taskId}")
                atomResponse = defaultFailAtomResponse
            } else if (actionType == ActionType.END && runCondition != RunCondition.PRE_TASK_FAILED_EVEN_CANCEL) {
                logger.info("[${task.buildId}]|CANCEL|job=${task.containerId}|task=${task.taskId}")
                atomResponse = AtomResponse(buildStatus = BuildStatus.CANCELED)
            }
        }
        return atomResponse
    }

    private fun tryFinishImpl(
        task: PipelineBuildTask,
        param: T,
        runVariables: Map,
        actionType: ActionType
    ): AtomResponse {
        val atomResponse = tryFinish(task, param, runVariables, actionType.isTerminate())
        val runCondition = task.additionalOptions?.runCondition
        return if (!atomResponse.buildStatus.isFinish()) {
            if (actionType.isTerminate()) { // 未结束,强制情况下则设置为失敗,此为旧内置插件才会有的问题。
                AtomResponse(
                    buildStatus = BuildStatus.FAILED,
                    errorType = ErrorType.PLUGIN,
                    errorCode = ErrorCode.PLUGIN_DEFAULT_ERROR,
                    errorMsg = "Force Terminate!"
                )
            } else if (actionType == ActionType.END && runCondition != RunCondition.PRE_TASK_FAILED_EVEN_CANCEL) {
                // 将能够取消的内置插件的状态设置为CANCELED
                AtomResponse(buildStatus = BuildStatus.CANCELED)
            } else {
                atomResponse
            }
        } else {
            atomResponse
        }
    }

    fun tryFinish(
        task: PipelineBuildTask,
        param: T,
        runVariables: Map,
        force: Boolean = false
    ): AtomResponse {
        return if (force) {
            if (task.status.isFinish()) {
                AtomResponse(
                    buildStatus = task.status,
                    errorType = task.errorType,
                    errorCode = task.errorCode,
                    errorMsg = task.errorMsg
                )
            } else { // 强制终止的设置为失败
                defaultFailAtomResponse
            }
        } else {
            AtomResponse(
                buildStatus = task.status,
                errorType = task.errorType,
                errorCode = task.errorCode,
                errorMsg = task.errorMsg
            )
        }
    }

    fun parseVariable(value: String?, runVariables: Map): String {
        if (value.isNullOrBlank()) {
            return ""
        }
        return EnvUtils.parseEnv(value, runVariables)
    }
}

/**
 * 原子执行结果
 * @version 1.0
 */
data class AtomResponse(
    val buildStatus: BuildStatus,
    val outputVars: Map? = null, // 输出的变量,需要持久化的
    var errorType: ErrorType? = null,
    var errorCode: Int? = null,
    var errorMsg: String? = null
)

val defaultSuccessAtomResponse = AtomResponse(BuildStatus.SUCCEED)

val defaultFailAtomResponse = AtomResponse(
    buildStatus = BuildStatus.FAILED,
    errorType = ErrorType.USER,
    errorCode = ErrorCode.PLUGIN_DEFAULT_ERROR,
    errorMsg = "not definded error"
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy