aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/packages
diff options
context:
space:
mode:
authorGravatar Nathan Harmata <nharmata@google.com>2016-04-05 19:49:43 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-04-07 11:40:36 +0000
commit351475627b9e94e5afdf472cbf465f49c433a25e (patch)
tree464c30ffd1bf8b023fef87d8d2549d956c859d9f /src/main/java/com/google/devtools/build/lib/packages
parenteb89cccfd3aff746b59da3feb31eb3ae528ce909 (diff)
Make non-empty attribute checks happen during analysis of the target in question, rather than during loading of the target's package. This way a target's package won't be in error if e.g. an unrelated target has empty 'srcs'.
-- MOS_MIGRATED_REVID=119079777
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/packages')
-rw-r--r--src/main/java/com/google/devtools/build/lib/packages/RuleClass.java41
1 files changed, 20 insertions, 21 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/packages/RuleClass.java b/src/main/java/com/google/devtools/build/lib/packages/RuleClass.java
index 9accac3899..ed2ad3064c 100644
--- a/src/main/java/com/google/devtools/build/lib/packages/RuleClass.java
+++ b/src/main/java/com/google/devtools/build/lib/packages/RuleClass.java
@@ -1401,7 +1401,6 @@ public final class RuleClass {
boolean explicit = attributeValues.isAttributeExplicitlySpecified(attributeName);
setRuleAttributeValue(rule, eventHandler, attr, nativeAttributeValue, explicit);
definedAttrIndices.set(attrIndex);
- checkAttrValNonEmpty(rule, eventHandler, attributeValue, attr);
}
return definedAttrIndices;
}
@@ -1457,7 +1456,6 @@ public final class RuleClass {
attrsWithComputedDefaults.add(attr);
} else {
Object defaultValue = getAttributeNoncomputedDefaultValue(attr, pkgBuilder);
- checkAttrValNonEmpty(rule, eventHandler, defaultValue, attr);
rule.setAttributeValue(attr, defaultValue, /*explicit=*/ false);
checkAllowedValues(rule, attr, eventHandler);
}
@@ -1500,26 +1498,27 @@ public final class RuleClass {
/*explicit=*/false);
}
- private void checkAttrValNonEmpty(
- Rule rule, EventHandler eventHandler, Object attributeValue, Attribute attr) {
- if (!attr.isNonEmpty()) {
- return;
- }
-
- boolean isEmpty = false;
-
- if (attributeValue instanceof SkylarkList) {
- isEmpty = ((SkylarkList) attributeValue).isEmpty();
- } else if (attributeValue instanceof List<?>) {
- isEmpty = ((List<?>) attributeValue).isEmpty();
- } else if (attributeValue instanceof Map<?, ?>) {
- isEmpty = ((Map<?, ?>) attributeValue).isEmpty();
- }
+ public void checkAttributesNonEmpty(
+ Rule rule, RuleErrorConsumer ruleErrorConsumer, AttributeMap attributes) {
+ for (String attributeName : attributes.getAttributeNames()) {
+ Attribute attr = attributes.getAttributeDefinition(attributeName);
+ if (!attr.isNonEmpty()) {
+ continue;
+ }
+ Object attributeValue = attributes.get(attributeName, attr.getType());
+
+ boolean isEmpty = false;
+ if (attributeValue instanceof SkylarkList) {
+ isEmpty = ((SkylarkList) attributeValue).isEmpty();
+ } else if (attributeValue instanceof List<?>) {
+ isEmpty = ((List<?>) attributeValue).isEmpty();
+ } else if (attributeValue instanceof Map<?, ?>) {
+ isEmpty = ((Map<?, ?>) attributeValue).isEmpty();
+ }
- if (isEmpty) {
- rule.reportError(rule.getLabel() + ": non empty attribute '" + attr.getName()
- + "' in '" + name + "' rule '" + rule.getLabel() + "' has to have at least one value",
- eventHandler);
+ if (isEmpty) {
+ ruleErrorConsumer.attributeError(attr.getName(), "attribute must be non empty");
+ }
}
}