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

org.gradle.deployment.internal.RegisteredDeployment Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2017 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.deployment.internal;

import org.gradle.initialization.ContinuousExecutionGate;
import org.gradle.internal.concurrent.Stoppable;

class RegisteredDeployment implements Stoppable {
    private final String id;
    private final DeploymentInternal delegate;
    private final DeploymentHandle handle;
    private final boolean restartable;

    private RegisteredDeployment(String id, boolean restartable, DeploymentHandle handle, DeploymentInternal delegate) {
        this.id = id;
        this.restartable = restartable;
        this.delegate = delegate;
        this.handle = handle;
    }

    static RegisteredDeployment create(String id, DeploymentRegistry.ChangeBehavior changeBehavior, ContinuousExecutionGate continuousExecutionGate, DeploymentHandle deploymentHandle) {
        switch(changeBehavior) {
            case NONE:
                return new RegisteredDeployment(id, false, deploymentHandle, new OutOfDateTrackingDeployment());
            case RESTART:
                return new RegisteredDeployment(id, true, deploymentHandle, new SimpleBlockingDeployment(new OutOfDateTrackingDeployment()));
            case BLOCK:
                return new RegisteredDeployment(id, false, deploymentHandle, new GateControllingDeployment(continuousExecutionGate, new SimpleBlockingDeployment(new OutOfDateTrackingDeployment())));
            default:
                throw new IllegalArgumentException("Unknown changeBehavior " + changeBehavior);
        }
    }

    public DeploymentInternal getDeployment() {
        return delegate;
    }

    public void outOfDate() {
        delegate.outOfDate();
    }

    public void upToDate(Throwable failure) {
        delegate.upToDate(failure);
        restart();
    }

    public DeploymentHandle getHandle() {
        return handle;
    }

    @Override
    public void stop() {
        handle.stop();
    }

    private void restart() {
        if (restartable) {
            handle.stop();
            handle.start(delegate);
        }
    }

    @Override
    public String toString() {
        return "Deployment{"
            + "id='" + id + '\''
            + ", handle=" + handle
            + ", restartable=" + restartable
            + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy