org.gradle.launcher.daemon.server.DaemonRegistryUnavailableExpirationStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 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.launcher.daemon.server;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import org.gradle.api.logging.Logger;
import org.gradle.api.logging.Logging;
import org.gradle.launcher.daemon.context.DaemonContext;
import org.gradle.launcher.daemon.registry.DaemonDir;
import org.gradle.launcher.daemon.registry.DaemonInfo;
import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult;
import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStrategy;
import java.io.File;
import java.util.List;
import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.GRACEFUL_EXPIRE;
public class DaemonRegistryUnavailableExpirationStrategy implements DaemonExpirationStrategy {
private static final Logger LOG = Logging.getLogger(DaemonRegistryUnavailableExpirationStrategy.class);
public static final String REGISTRY_BECAME_UNREADABLE = "after the daemon registry became unreadable";
public static final String REGISTRY_ENTRY_UNEXPECTEDLY_LOST = "after the daemon was no longer found in the daemon registry";
public static final String REGISTRY_BECAME_INACCESSIBLE = "after the daemon registry became inaccessible";
private final Daemon daemon;
public DaemonRegistryUnavailableExpirationStrategy(Daemon daemon) {
this.daemon = daemon;
}
@Override
public DaemonExpirationResult checkExpiration() {
try {
final DaemonContext daemonContext = daemon.getDaemonContext();
final File daemonRegistryDir = daemonContext.getDaemonRegistryDir();
if (!new DaemonDir(daemonRegistryDir).getRegistry().canRead()) {
LOG.warn("Daemon registry {} became unreadable. Expiring daemon.", daemonRegistryDir);
return new DaemonExpirationResult(GRACEFUL_EXPIRE, REGISTRY_BECAME_UNREADABLE);
} else {
// Check that given daemon still exists in registry - a daemon registry could be removed and recreated between checks
List allDaemonPids = Lists.transform(daemon.getDaemonRegistry().getAll(), new Function() {
public Long apply(DaemonInfo info) {
return info.getPid();
}
});
if (!allDaemonPids.contains(daemonContext.getPid())) {
return new DaemonExpirationResult(GRACEFUL_EXPIRE, REGISTRY_ENTRY_UNEXPECTEDLY_LOST);
}
}
} catch (SecurityException se) {
LOG.warn("Daemon registry became inaccessible. Expiring daemon. Error message is '{}'", se.getMessage());
return new DaemonExpirationResult(GRACEFUL_EXPIRE, REGISTRY_BECAME_INACCESSIBLE);
}
return DaemonExpirationResult.NOT_TRIGGERED;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy