cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 1 | // Copyright 2018 The Bazel Authors. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package com.google.devtools.build.skydoc.fakebuildapi; |
| 16 | |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 17 | import com.google.common.collect.ImmutableList; |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 18 | import com.google.common.collect.ImmutableMap; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 19 | import com.google.devtools.build.lib.cmdline.Label; |
cparsons | 1771054 | 2018-07-13 15:23:46 -0700 | [diff] [blame] | 20 | import com.google.devtools.build.lib.cmdline.LabelSyntaxException; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 21 | import com.google.devtools.build.lib.events.Location; |
| 22 | import com.google.devtools.build.lib.skylarkbuildapi.FileApi; |
| 23 | import com.google.devtools.build.lib.skylarkbuildapi.FileTypeApi; |
| 24 | import com.google.devtools.build.lib.skylarkbuildapi.ProviderApi; |
| 25 | import com.google.devtools.build.lib.skylarkbuildapi.SkylarkAspectApi; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 26 | import com.google.devtools.build.lib.skylarkbuildapi.SkylarkRuleFunctionsApi; |
| 27 | import com.google.devtools.build.lib.syntax.BaseFunction; |
| 28 | import com.google.devtools.build.lib.syntax.Environment; |
| 29 | import com.google.devtools.build.lib.syntax.EvalException; |
| 30 | import com.google.devtools.build.lib.syntax.FuncallExpression; |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 31 | import com.google.devtools.build.lib.syntax.Runtime; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 32 | import com.google.devtools.build.lib.syntax.SkylarkDict; |
| 33 | import com.google.devtools.build.lib.syntax.SkylarkList; |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 34 | import com.google.devtools.build.lib.syntax.SkylarkType; |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 35 | import com.google.devtools.build.skydoc.fakebuildapi.FakeDescriptor.Type; |
cparsons | fc0e52f | 2018-07-09 11:06:57 -0700 | [diff] [blame] | 36 | import com.google.devtools.build.skydoc.rendering.AttributeInfo; |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 37 | import com.google.devtools.build.skydoc.rendering.ProviderFieldInfo; |
| 38 | import com.google.devtools.build.skydoc.rendering.ProviderInfo; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 39 | import com.google.devtools.build.skydoc.rendering.RuleInfo; |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 40 | import java.util.Comparator; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 41 | import java.util.List; |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 42 | import java.util.Map; |
cparsons | fc0e52f | 2018-07-09 11:06:57 -0700 | [diff] [blame] | 43 | import java.util.stream.Collectors; |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 44 | import javax.annotation.Nullable; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 45 | |
| 46 | /** |
| 47 | * Fake implementation of {@link SkylarkRuleFunctionsApi}. |
| 48 | * |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 49 | * <p>This fake hooks into the global {@code rule()} function, adding descriptors of calls of that |
| 50 | * function to a {@link List} given in the class constructor.</p> |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 51 | */ |
| 52 | public class FakeSkylarkRuleFunctionsApi implements SkylarkRuleFunctionsApi<FileApi> { |
| 53 | |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 54 | private static final FakeDescriptor IMPLICIT_NAME_ATTRIBUTE_DESCRIPTOR = |
brandjon | 09f7cbc | 2018-10-04 12:45:07 -0700 | [diff] [blame] | 55 | new FakeDescriptor(Type.STRING, "A unique name for this target.", true); |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 56 | private final List<RuleInfo> ruleInfoList; |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 57 | private final List<ProviderInfo> providerInfoList; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 58 | |
| 59 | /** |
| 60 | * Constructor. |
| 61 | * |
| 62 | * @param ruleInfoList the list of {@link RuleInfo} objects to which rule() invocation information |
| 63 | * will be added |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 64 | * @param providerInfoList the list of {@link ProviderInfo} objects to which provider() |
| 65 | * invocation information will be added |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 66 | */ |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 67 | public FakeSkylarkRuleFunctionsApi(List<RuleInfo> ruleInfoList, |
| 68 | List<ProviderInfo> providerInfoList) { |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 69 | this.ruleInfoList = ruleInfoList; |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 70 | this.providerInfoList = providerInfoList; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | @Override |
| 74 | public ProviderApi provider(String doc, Object fields, Location location) throws EvalException { |
cparsons | b68bf02 | 2018-10-17 10:33:40 -0700 | [diff] [blame^] | 75 | FakeProviderApi fakeProvider = new FakeProviderApi(); |
| 76 | // Field documentation will be output preserving the order in which the fields are listed. |
| 77 | ImmutableList.Builder<ProviderFieldInfo> providerFieldInfos = ImmutableList.builder(); |
| 78 | if (fields instanceof SkylarkList) { |
| 79 | @SuppressWarnings("unchecked") |
| 80 | SkylarkList<String> fieldNames = (SkylarkList<String>) |
| 81 | SkylarkType.cast( |
| 82 | fields, |
| 83 | SkylarkList.class, String.class, location, |
| 84 | "Expected list of strings or dictionary of string -> string for 'fields'"); |
| 85 | for (String fieldName : fieldNames) { |
| 86 | providerFieldInfos.add(new ProviderFieldInfo(fieldName)); |
| 87 | } |
| 88 | } else if (fields instanceof SkylarkDict) { |
| 89 | Map<String, String> dict = SkylarkType.castMap( |
| 90 | fields, |
| 91 | String.class, String.class, |
| 92 | "Expected list of strings or dictionary of string -> string for 'fields'"); |
| 93 | for (Map.Entry<String, String> fieldEntry : dict.entrySet()) { |
| 94 | providerFieldInfos.add(new ProviderFieldInfo(fieldEntry.getKey(), fieldEntry.getValue())); |
| 95 | } |
| 96 | } else { |
| 97 | // fields is NONE, so there is no field information to add. |
| 98 | } |
| 99 | providerInfoList.add(new ProviderInfo(fakeProvider, doc, providerFieldInfos.build())); |
| 100 | return fakeProvider; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | @Override |
| 104 | public BaseFunction rule(BaseFunction implementation, Boolean test, Object attrs, |
| 105 | Object implicitOutputs, Boolean executable, Boolean outputToGenfiles, |
| 106 | SkylarkList<?> fragments, SkylarkList<?> hostFragments, Boolean skylarkTestable, |
| 107 | SkylarkList<?> toolchains, String doc, SkylarkList<?> providesArg, |
| 108 | Boolean executionPlatformConstraintsAllowed, SkylarkList<?> execCompatibleWith, |
| 109 | FuncallExpression ast, Environment funcallEnv) throws EvalException { |
cparsons | fc0e52f | 2018-07-09 11:06:57 -0700 | [diff] [blame] | 110 | List<AttributeInfo> attrInfos; |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 111 | ImmutableMap.Builder<String, FakeDescriptor> attrsMapBuilder = ImmutableMap.builder(); |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 112 | if (attrs != null && attrs != Runtime.NONE) { |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 113 | SkylarkDict<?, ?> attrsDict = (SkylarkDict<?, ?>) attrs; |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 114 | attrsMapBuilder.putAll(attrsDict.getContents(String.class, FakeDescriptor.class, "attrs")); |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 115 | } |
| 116 | |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 117 | attrsMapBuilder.put("name", IMPLICIT_NAME_ATTRIBUTE_DESCRIPTOR); |
| 118 | attrInfos = attrsMapBuilder.build().entrySet().stream() |
cparsons | 9e58e22 | 2018-08-28 13:01:34 -0700 | [diff] [blame] | 119 | .filter(entry -> !entry.getKey().startsWith("_")) |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 120 | .map(entry -> new AttributeInfo( |
| 121 | entry.getKey(), |
| 122 | entry.getValue().getDocString(), |
| 123 | entry.getValue().getType().getDescription(), |
| 124 | entry.getValue().isMandatory())) |
| 125 | .collect(Collectors.toList()); |
| 126 | attrInfos.sort(new AttributeNameComparator()); |
| 127 | |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 128 | RuleDefinitionIdentifier functionIdentifier = new RuleDefinitionIdentifier(); |
cparsons | fc0e52f | 2018-07-09 11:06:57 -0700 | [diff] [blame] | 129 | |
| 130 | ruleInfoList.add(new RuleInfo(functionIdentifier, ast.getLocation(), doc, attrInfos)); |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 131 | return functionIdentifier; |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | @Override |
| 135 | public Label label(String labelString, Boolean relativeToCallerRepository, Location loc, |
| 136 | Environment env) throws EvalException { |
cparsons | 1771054 | 2018-07-13 15:23:46 -0700 | [diff] [blame] | 137 | try { |
| 138 | return Label.parseAbsolute( |
| 139 | labelString, |
| 140 | /* defaultToMain= */ false, |
| 141 | /* repositoryMapping= */ ImmutableMap.of()); |
| 142 | } catch (LabelSyntaxException e) { |
| 143 | throw new EvalException(loc, "Illegal absolute label syntax: " + labelString); |
| 144 | } |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | @Override |
| 148 | public FileTypeApi<FileApi> fileType(SkylarkList<?> types, Location loc, Environment env) |
| 149 | throws EvalException { |
| 150 | return null; |
| 151 | } |
| 152 | |
| 153 | @Override |
| 154 | public SkylarkAspectApi aspect(BaseFunction implementation, SkylarkList<?> attributeAspects, |
| 155 | Object attrs, SkylarkList<?> requiredAspectProvidersArg, SkylarkList<?> providesArg, |
| 156 | SkylarkList<?> fragments, SkylarkList<?> hostFragments, SkylarkList<?> toolchains, String doc, |
| 157 | FuncallExpression ast, Environment funcallEnv) throws EvalException { |
cparsons | 6922b5f | 2018-08-28 08:32:09 -0700 | [diff] [blame] | 158 | return new FakeSkylarkAspect(); |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 159 | } |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 160 | |
| 161 | /** |
| 162 | * A fake {@link BaseFunction} implementation which serves as an identifier for a rule definition. |
| 163 | * A skylark invocation of 'rule()' should spawn a unique instance of this class and return it. |
| 164 | * Thus, skylark code such as 'foo = rule()' will result in 'foo' being assigned to a unique |
| 165 | * identifier, which can later be matched to a registered rule() invocation saved by the fake |
| 166 | * build API implementation. |
| 167 | */ |
| 168 | private static class RuleDefinitionIdentifier extends BaseFunction { |
| 169 | |
cparsons | 93adb10 | 2018-07-11 11:44:17 -0700 | [diff] [blame] | 170 | private static int idCounter = 0; |
| 171 | |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 172 | public RuleDefinitionIdentifier() { |
cparsons | 93adb10 | 2018-07-11 11:44:17 -0700 | [diff] [blame] | 173 | super("RuleDefinitionIdentifier" + idCounter++); |
cparsons | d790ce4 | 2018-06-27 15:29:02 -0700 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | @Override |
| 177 | public boolean equals(@Nullable Object other) { |
| 178 | // Use exact object matching. |
| 179 | return this == other; |
| 180 | } |
| 181 | } |
cparsons | 11c9f20 | 2018-07-11 10:30:02 -0700 | [diff] [blame] | 182 | |
| 183 | /** |
| 184 | * A comparator for {@link AttributeInfo} objects which sorts by attribute name alphabetically, |
| 185 | * except that any attribute named "name" is placed first. |
| 186 | */ |
| 187 | private static class AttributeNameComparator implements Comparator<AttributeInfo> { |
| 188 | |
| 189 | @Override |
| 190 | public int compare(AttributeInfo o1, AttributeInfo o2) { |
| 191 | if (o1.getName().equals("name")) { |
| 192 | return o2.getName().equals("name") ? 0 : -1; |
| 193 | } else if (o2.getName().equals("name")) { |
| 194 | return 1; |
| 195 | } else { |
| 196 | return o1.getName().compareTo(o2.getName()); |
| 197 | } |
| 198 | } |
| 199 | } |
cparsons | 5d85e75 | 2018-06-26 13:47:28 -0700 | [diff] [blame] | 200 | } |