// Copyright 2014 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.base.Optional; import com.google.common.base.Preconditions; import com.google.devtools.build.lib.actions.Artifact; import com.google.devtools.build.lib.actions.Root; import com.google.devtools.build.lib.analysis.AnalysisEnvironment; import com.google.devtools.build.lib.analysis.AnalysisUtils; import com.google.devtools.build.lib.syntax.Label; import com.google.devtools.build.lib.vfs.FileSystemUtils; import com.google.devtools.build.lib.vfs.PathFragment; /** * Factory class for generating artifacts which are used as intermediate output. */ // TODO(bazel-team): This should really be named DerivedArtifacts as it contains methods for // final as well as intermediate artifacts. final class IntermediateArtifacts { /** * Extension used on the temporary dsym bundle location. Must end in {@code .dSYM} for dsymutil * to generate a plist file. */ static final String TMP_DSYM_BUNDLE_SUFFIX = ".temp.app.dSYM"; private final AnalysisEnvironment analysisEnvironment; private final Root binDirectory; private final Label ownerLabel; private final String archiveFileNameSuffix; /** * Label to scope the output paths of generated artifacts, in addition to {@link #ownerLabel}. */ private final Optional