blob: 61597cc1c3e97b4dfc65d29b6f6eb9a7bc779310 [file] [log] [blame]
// Copyright 2020 The Bazel Authors. All rights reserved.
//
// 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.google.devtools.build.lib.analysis.config;
import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
import com.google.devtools.build.lib.events.EventHandler;
import com.google.devtools.build.lib.syntax.StarlarkValue;
import java.util.List;
import javax.annotation.Nullable;
/**
* An interface for language-specific configurations.
*
* <p>All implementations must be immutable and communicate this as clearly as possible (e.g.
* declare {@link com.google.common.collect.ImmutableList} signatures on their interfaces vs. {@link
* List}). This is because fragment instances may be shared across configurations.
*
* <p>Fragments are Starlark values, as returned by {@code ctx.fragments.android}, for example.
*/
@Immutable
public abstract class Fragment implements StarlarkValue {
@Override
public boolean isImmutable() {
return true; // immutable and Starlark-hashable
}
/**
* Validates the options for this Fragment. Issues warnings for the use of deprecated options, and
* warnings or errors for any option settings that conflict.
*/
@SuppressWarnings("unused")
public void reportInvalidOptions(EventHandler reporter, BuildOptions buildOptions) {}
/**
* Returns a fragment of the output directory name for this configuration. The output directory
* for the whole configuration contains all the short names by all fragments.
*/
@Nullable
public String getOutputDirectoryName() {
return null;
}
}