/* * Copyright 2016-present Facebook, Inc. * * 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.facebook.buck.rules; import com.facebook.buck.model.BuildTarget; import com.facebook.buck.util.HumanReadableException; import com.google.common.collect.ImmutableList; import java.util.Optional; /** * A {@link ToolProvider} which provides the {@link Tool} object of the {@link BinaryBuildRule} * references by a given {@link BuildTarget}. */ public class BinaryBuildRuleToolProvider implements ToolProvider { private final BuildTarget target; private final String source; public BinaryBuildRuleToolProvider(BuildTarget target, String source) { this.target = target; this.source = source; } @Override public Tool resolve(BuildRuleResolver resolver) { Optional<BuildRule> rule = resolver.getRuleOptional(target); if (!rule.isPresent()) { throw new HumanReadableException("%s: no rule found for %s", source, target); } if (!(rule.get() instanceof BinaryBuildRule)) { throw new HumanReadableException("%s: %s must be an executable rule", source, target); } return ((BinaryBuildRule) rule.get()).getExecutableCommand(); } @Override public Iterable<BuildTarget> getParseTimeDeps() { return ImmutableList.of(target); } }