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

org.gradle.execution.NotifyingBuildExecuter Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2019 the original author or authors.
 *
 * Licensed 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.
 */

package org.gradle.execution;

import org.gradle.api.internal.GradleInternal;
import org.gradle.internal.operations.BuildOperationCategory;
import org.gradle.internal.operations.BuildOperationContext;
import org.gradle.internal.operations.BuildOperationDescriptor;
import org.gradle.internal.operations.BuildOperationExecutor;
import org.gradle.internal.operations.RunnableBuildOperation;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

public class NotifyingBuildExecuter implements BuildExecuter {
    private final BuildExecuter delegate;
    private final BuildOperationExecutor buildOperationExecutor;

    public NotifyingBuildExecuter(BuildExecuter delegate, BuildOperationExecutor buildOperationExecutor) {
        this.delegate = delegate;
        this.buildOperationExecutor = buildOperationExecutor;
    }

    @Override
    public void execute(GradleInternal gradle, Collection taskFailures) {
        buildOperationExecutor.run(new ExecuteTasks(gradle, taskFailures));
    }

    private class ExecuteTasks implements RunnableBuildOperation {
        private final GradleInternal gradle;
        private final Collection taskFailures;

        public ExecuteTasks(GradleInternal gradle, Collection taskFailures) {
            this.gradle = gradle;
            this.taskFailures = taskFailures;
        }

        @Override
        public void run(BuildOperationContext context) {
            List failures = new ArrayList();
            delegate.execute(gradle, failures);
            if (!failures.isEmpty()) {
                context.failed(failures.get(0));
            }
            taskFailures.addAll(failures);
        }

        @Override
        public BuildOperationDescriptor.Builder description() {
            BuildOperationDescriptor.Builder builder = BuildOperationDescriptor.displayName(gradle.contextualize("Run tasks"));
            if (gradle.getParent() == null) {
                builder.operationType(BuildOperationCategory.RUN_WORK_ROOT_BUILD);
            } else {
                builder.operationType(BuildOperationCategory.RUN_WORK);
            }
            builder.totalProgress(gradle.getTaskGraph().size());
            return builder;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy