blob: 89b74803728eb0df95279e39e6ec67c964d48eff [file] [log] [blame]
// Copyright 2017 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.packages;
import com.google.common.collect.ImmutableCollection;
import com.google.devtools.build.lib.events.Location;
import com.google.devtools.build.lib.syntax.CallUtils;
import com.google.devtools.build.lib.syntax.EvalException;
import com.google.devtools.build.lib.syntax.StarlarkSemantics;
/**
* Abstract base class for implementations of {@link StructImpl} that expose
* StarlarkCallable-annotated fields (not just methods) to Starlark code.
*/
public abstract class NativeInfo extends StructImpl {
protected NativeInfo(Provider provider) {
this(provider, Location.BUILTIN);
}
protected NativeInfo(Provider provider, Location loc) {
super(provider, loc);
}
// TODO(adonovan): logically this should be a parameter of getValue
// and getFieldNames or an instance field of this object.
private static final StarlarkSemantics SEMANTICS = StarlarkSemantics.DEFAULT_SEMANTICS;
@Override
public Object getValue(String name) throws EvalException {
// @SkylarkCallable(structField=true) -- Java field
if (getFieldNames().contains(name)) {
try {
return CallUtils.getField(SEMANTICS, this, name);
} catch (InterruptedException exception) {
// Struct fields on NativeInfo objects are supposed to behave well and not throw
// exceptions, as they should be logicless field accessors. If this occurs, it's
// indicative of a bad NativeInfo implementation.
throw new IllegalStateException(
String.format(
"Access of field %s was unexpectedly interrupted, but should be "
+ "uninterruptible. This is indicative of a bad provider implementation.",
name));
}
}
return null;
}
@Override
public ImmutableCollection<String> getFieldNames() {
return CallUtils.getFieldNames(SEMANTICS, this);
}
}