// Copyright 2015 Google Inc. 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.rules.objc; import com.google.common.collect.ImmutableList; import com.google.devtools.build.lib.actions.Artifact; import com.google.devtools.build.lib.analysis.RuleConfiguredTarget.Mode; import com.google.devtools.build.lib.analysis.RuleContext; /** * Support for resource processing on Objc rules. * *

Methods on this class can be called in any order without impacting the result. */ final class ResourceSupport { private final RuleContext ruleContext; private final Attributes attributes; /** * Creates a new resource support for the given context. */ ResourceSupport(RuleContext ruleContext) { this.ruleContext = ruleContext; this.attributes = new Attributes(ruleContext); } /** * Adds common xcode settings to the given provider builder. * * @return this resource support */ ResourceSupport addXcodeSettings(XcodeProvider.Builder xcodeProviderBuilder) { xcodeProviderBuilder.addInputsToXcodegen(Xcdatamodel.inputsToXcodegen(attributes.datamodels())); xcodeProviderBuilder.addDatamodelDirs(Xcdatamodels.datamodelDirs(attributes.datamodels())); return this; } /** * Validates resource attributes on this rule. * * @return this resource support */ ResourceSupport validateAttributes() { Iterable assetCatalogErrors = ObjcCommon.notInContainerErrors( attributes.assetCatalogs(), ObjcCommon.ASSET_CATALOG_CONTAINER_TYPE); for (String error : assetCatalogErrors) { ruleContext.attributeError("asset_catalogs", error); } Iterable dataModelErrors = ObjcCommon.notInContainerErrors(attributes.datamodels(), Xcdatamodels.CONTAINER_TYPES); for (String error : dataModelErrors) { ruleContext.attributeError("datamodels", error); } return this; } private static class Attributes { private final RuleContext ruleContext; Attributes(RuleContext ruleContext) { this.ruleContext = ruleContext; } ImmutableList datamodels() { return ruleContext.getPrerequisiteArtifacts("datamodels", Mode.TARGET).list(); } ImmutableList assetCatalogs() { return ruleContext.getPrerequisiteArtifacts("asset_catalogs", Mode.TARGET).list(); } } }