blob: e0c8a6f7d1d12a1745091e41c2b15d1134f43ca9 [file] [log] [blame]
// Copyright 2018 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.skydoc.fakebuildapi;
import com.google.devtools.build.lib.skylarkbuildapi.SkylarkAttrApi.Descriptor;
import com.google.devtools.build.lib.syntax.Printer;
import com.google.devtools.build.skydoc.rendering.proto.StardocOutputProtos.AttributeInfo;
import com.google.devtools.build.skydoc.rendering.proto.StardocOutputProtos.AttributeType;
import com.google.devtools.build.skydoc.rendering.proto.StardocOutputProtos.ProviderNameGroup;
import java.util.List;
/**
* Fake implementation of {@link Descriptor}.
*/
public class FakeDescriptor implements Descriptor {
private final AttributeType type;
private final String docString;
private final boolean mandatory;
private final List<List<String>> providerNameGroups;
private final String defaultRepresentation;
public FakeDescriptor(
AttributeType type,
String docString,
boolean mandatory,
List<List<String>> providerNameGroups,
Object defaultObject) {
this.type = type;
this.docString = docString;
this.mandatory = mandatory;
this.providerNameGroups = providerNameGroups;
this.defaultRepresentation = defaultObject.toString();
}
@Override
public void repr(Printer printer) {}
public AttributeInfo asAttributeInfo(String attributeName) {
AttributeInfo.Builder attrInfo =
AttributeInfo.newBuilder()
.setName(attributeName)
.setDocString(docString)
.setType(type)
.setMandatory(mandatory)
.setDefaultValue(mandatory ? "" : defaultRepresentation);
if (!providerNameGroups.isEmpty()) {
for (List<String> providerNameGroup : providerNameGroups) {
ProviderNameGroup.Builder providerNameListBuild = ProviderNameGroup.newBuilder();
ProviderNameGroup providerNameList =
providerNameListBuild.addAllProviderName(providerNameGroup).build();
attrInfo.addProviderNameGroup(providerNameList);
}
}
return attrInfo.build();
}
}