org.gradle.api.tasks.util.internal.CachingPatternSpecFactory 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 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.api.tasks.util.internal;
import com.google.common.base.MoreObjects;
import com.google.common.base.Objects;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.collect.ImmutableList;
import org.gradle.api.file.FileTreeElement;
import org.gradle.api.file.RelativePath;
import org.gradle.api.specs.Spec;
import org.gradle.cache.internal.HeapProportionalCacheSizer;
import org.gradle.internal.UncheckedException;
import java.util.Collection;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
public class CachingPatternSpecFactory extends PatternSpecFactory {
private static final int RESULTS_CACHE_MAX_SIZE = 100000;
private static final int INSTANCES_MAX_SIZE = 30000;
private final HeapProportionalCacheSizer cacheSizer;
private final Cache> specInstanceCache;
public CachingPatternSpecFactory() {
cacheSizer = new HeapProportionalCacheSizer();
specInstanceCache = CacheBuilder.newBuilder().maximumSize(cacheSizer.scaleCacheSize(INSTANCES_MAX_SIZE)).build();
}
@Override
protected Spec createSpec(final Collection patterns, final boolean include, final boolean caseSensitive) {
final SpecKey key = new SpecKey(ImmutableList.copyOf(patterns), include, caseSensitive);
try {
return specInstanceCache.get(key, new Callable>() {
@Override
public Spec call() throws Exception {
Spec spec = CachingPatternSpecFactory.super.createSpec(patterns, include, caseSensitive);
return new CachingSpec(spec);
}
});
} catch (ExecutionException e) {
throw UncheckedException.throwAsUncheckedException(e.getCause());
}
}
private class CachingSpec implements Spec {
private final Spec spec;
private final Cache resultCache = CacheBuilder.newBuilder().maximumSize(cacheSizer.scaleCacheSize(RESULTS_CACHE_MAX_SIZE)).build();
CachingSpec(Spec spec) {
this.spec = spec;
}
@Override
public boolean isSatisfiedBy(final FileTreeElement element) {
try {
return resultCache.get(element.getRelativePath(), new Callable() {
@Override
public Boolean call() {
return spec.isSatisfiedBy(element);
}
});
} catch (ExecutionException e) {
throw UncheckedException.throwAsUncheckedException(e.getCause());
}
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("spec", spec)
.toString();
}
}
private static class SpecKey {
private final ImmutableList patterns;
private final boolean include;
private final boolean caseSensitive;
private final int hashCode;
private SpecKey(ImmutableList patterns, boolean include, boolean caseSensitive) {
this.patterns = patterns;
this.include = include;
this.caseSensitive = caseSensitive;
this.hashCode = Objects.hashCode(patterns, include, caseSensitive);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SpecKey that = (SpecKey) o;
return Objects.equal(this.patterns, that.patterns)
&& Objects.equal(this.include, that.include)
&& Objects.equal(this.caseSensitive, that.caseSensitive);
}
@Override
public int hashCode() {
return hashCode;
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("patterns", patterns)
.add("include", include)
.add("caseSensitive", caseSensitive)
.toString();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy