blob: a1e16de5b1986862fea334f4579ffbe26bf3b7d6 [file] [log] [blame]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* 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.android.build.gradle.internal.api;
import com.android.annotations.NonNull;
import com.android.annotations.Nullable;
import com.android.build.gradle.api.GroupableProductFlavor;
import com.android.builder.model.BuildType;
import com.android.builder.model.ProductFlavor;
import java.util.Collections;
import java.util.List;
/**
* An object representing a Variant (made of a build type and one or more flavors), and
* a boolean controlling whether this variant is to be excluded.
*/
public class VariantFilter implements com.android.build.gradle.api.VariantFilter {
@NonNull
private final ReadOnlyObjectProvider readOnlyObjectProvider;
private boolean ignore;
private ProductFlavor defaultConfig;
private BuildType buildType;
private List<GroupableProductFlavor> flavors;
public VariantFilter(@NonNull ReadOnlyObjectProvider readOnlyObjectProvider) {
this.readOnlyObjectProvider = readOnlyObjectProvider;
}
public void reset(
@NonNull ProductFlavor defaultConfig,
@NonNull BuildType buildType,
@Nullable List<GroupableProductFlavor> flavors) {
ignore = false;
this.defaultConfig = defaultConfig;
this.buildType = buildType;
this.flavors = flavors;
}
/**
* Whether to ignore this variant.
*/
public boolean isIgnore() {
return ignore;
}
@Override
public void setIgnore(boolean ignore) {
this.ignore = ignore;
}
/**
* The default config. This is a Read-Only version of the global
* <code>android.defaultConfig</code> object.
*/
@Override
@NonNull
public ProductFlavor getDefaultConfig() {
return readOnlyObjectProvider.getDefaultConfig(defaultConfig);
}
/**
* The Build Type used by the variant. This is Read-Only version, as changing this
* object would have global impact.
*/
@Override
@NonNull
public BuildType getBuildType() {
return readOnlyObjectProvider.getBuildType(buildType);
}
/**
* The list of Product Flavors for this variant. These are returned as Read-Only versions, as
* changing these objects would have global impact.
*/
@NonNull
@Override
public List<GroupableProductFlavor> getFlavors() {
return flavors != null ?
new ImmutableFlavorList(flavors, readOnlyObjectProvider) :
Collections.<GroupableProductFlavor>emptyList();
}
}