blob: 224ccd862e9c0a294731856cfd1a6b3551429899 [file] [log] [blame]
/*
* Copyright 2012-present Facebook, Inc.
*
* 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 com.facebook.buck.rules;
import java.io.IOException;
import java.util.Map;
import java.util.Set;
import java.util.logging.Logger;
import javax.annotation.Nullable;
public class FakeDefaultJavaLibraryRule extends DefaultJavaLibraryRule {
private final boolean isCached;
private final boolean hasUncachedDescendants;
private final boolean ruleInputsAreCached;
protected FakeDefaultJavaLibraryRule(BuildRuleParams buildRuleParams,
Set<String> srcs,
Set<String> resources,
@Nullable String proguardConfig,
AnnotationProcessingParams annotationProcessingParams,
boolean exportDeps,
boolean isCached,
boolean hasUncachedDescendants,
boolean ruleInputsAreCached) {
super(buildRuleParams, srcs, resources, proguardConfig, annotationProcessingParams, exportDeps);
this.isCached = isCached;
this.hasUncachedDescendants = hasUncachedDescendants;
this.ruleInputsAreCached = ruleInputsAreCached;
}
@Override
public boolean hasUncachedDescendants(BuildContext context) throws IOException {
return hasUncachedDescendants;
}
@Override
protected boolean ruleInputsCached(BuildContext context, Logger logger) throws IOException {
return ruleInputsAreCached;
}
@Override
boolean checkIsCached(BuildContext context, Logger logger) throws IOException {
return isCached;
}
public static FakeDefaultJavaLibraryRule.Builder newFakeJavaLibraryRuleBuilder() {
return new FakeDefaultJavaLibraryRule.Builder();
}
public static class Builder extends DefaultJavaLibraryRule.Builder {
private boolean isCached;
private boolean hasUncachedDescendants;
private boolean ruleInputsAreCached;
public FakeDefaultJavaLibraryRule build(Map<String, BuildRule> buildRuleIndex) {
BuildRuleParams buildRuleParams = createBuildRuleParams(buildRuleIndex);
AnnotationProcessingParams processingParams =
annotationProcessingBuilder.build(buildRuleIndex);
return new FakeDefaultJavaLibraryRule(
buildRuleParams,
srcs,
resources,
proguardConfig,
processingParams,
exportDeps,
isCached,
hasUncachedDescendants,
ruleInputsAreCached);
}
public Builder setIsCached(boolean isCached) {
this.isCached = isCached;
return this;
}
public Builder setHasUncachedDescendants(boolean hasUncachedDescendants) {
this.hasUncachedDescendants = hasUncachedDescendants;
return this;
}
public Builder setRuleInputsAreCached(boolean ruleInputsAreCached) {
this.ruleInputsAreCached = ruleInputsAreCached;
return this;
}
}
}