| // Copyright 2014 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.docgen.skylark; |
| |
| import com.google.common.base.Preconditions; |
| import com.google.common.collect.HashMultimap; |
| import com.google.common.collect.ImmutableList; |
| import com.google.common.collect.Iterables; |
| import com.google.common.collect.Multimap; |
| import com.google.devtools.build.lib.skylarkinterface.SkylarkCallable; |
| import com.google.devtools.build.lib.skylarkinterface.SkylarkModule; |
| import com.google.devtools.build.lib.skylarkinterface.StarlarkDeprecated; |
| import java.text.Collator; |
| import java.util.Collection; |
| import java.util.Locale; |
| import java.util.TreeMap; |
| import javax.annotation.Nullable; |
| |
| /** |
| * A class representing documentation for a Skylark built-in object with its {@link SkylarkModule} |
| * annotation and with the {@link SkylarkCallable} methods it documents. |
| */ |
| public final class SkylarkModuleDoc extends SkylarkDoc { |
| private final SkylarkModule module; |
| private final Class<?> classObject; |
| private final Multimap<String, SkylarkJavaMethodDoc> javaMethods; |
| private TreeMap<String, SkylarkMethodDoc> methodMap; |
| private final String title; |
| private final boolean deprecated; |
| @Nullable private SkylarkConstructorMethodDoc javaConstructor; |
| |
| public SkylarkModuleDoc(SkylarkModule module, Class<?> classObject) { |
| this.module = Preconditions.checkNotNull( |
| module, "Class has to be annotated with SkylarkModule: %s", classObject); |
| this.classObject = classObject; |
| this.methodMap = new TreeMap<>(Collator.getInstance(Locale.US)); |
| this.javaMethods = HashMultimap.<String, SkylarkJavaMethodDoc>create(); |
| this.deprecated = classObject.isAnnotationPresent(StarlarkDeprecated.class); |
| if (module.title().isEmpty()) { |
| this.title = module.name(); |
| } else { |
| this.title = module.title(); |
| } |
| } |
| |
| @Override |
| public String getName() { |
| return module.name(); |
| } |
| |
| @Override |
| public String getDocumentation() { |
| return SkylarkDocUtils.substituteVariables(module.doc()); |
| } |
| |
| public String getTitle() { |
| return title; |
| } |
| |
| @Override |
| public boolean isDeprecated() { |
| return deprecated; |
| } |
| |
| public SkylarkModule getAnnotation() { |
| return module; |
| } |
| |
| public Class<?> getClassObject() { |
| return classObject; |
| } |
| |
| public void setConstructor(SkylarkConstructorMethodDoc method) { |
| Preconditions.checkState(javaConstructor == null); |
| javaConstructor = method; |
| } |
| |
| public void addMethod(SkylarkJavaMethodDoc method) { |
| if (!method.documented()) { |
| return; |
| } |
| |
| String shortName = method.getName(); |
| Collection<SkylarkJavaMethodDoc> overloads = javaMethods.get(shortName); |
| if (!overloads.isEmpty()) { |
| method.setOverloaded(true); |
| // Overload information only needs to be updated if we're discovering the first overload |
| // (= the second method of the same name). |
| if (overloads.size() == 1) { |
| Iterables.getOnlyElement(overloads).setOverloaded(true); |
| } |
| } |
| javaMethods.put(shortName, method); |
| // If the method is overloaded, getName() now returns a longer, unique name including |
| // the names of the parameters. |
| String uniqueName = method.getName(); |
| Preconditions.checkState( |
| !methodMap.containsKey(uniqueName), |
| "There are multiple overloads of %s with the same signature!", |
| uniqueName); |
| methodMap.put(uniqueName, method); |
| } |
| |
| public boolean javaMethodsNotCollected() { |
| return javaMethods.isEmpty(); |
| } |
| |
| public Collection<SkylarkMethodDoc> getJavaMethods() { |
| ImmutableList.Builder<SkylarkMethodDoc> returnedMethods = ImmutableList.builder(); |
| if (javaConstructor != null) { |
| returnedMethods.add(javaConstructor); |
| } |
| return returnedMethods.addAll(javaMethods.values()).build(); |
| } |
| |
| public Collection<SkylarkMethodDoc> getMethods() { |
| ImmutableList.Builder<SkylarkMethodDoc> methods = ImmutableList.builder(); |
| if (javaConstructor != null) { |
| methods.add(javaConstructor); |
| } |
| return methods.addAll(methodMap.values()).build(); |
| } |
| } |