blob: 9be0ea495d0347ceb4fa56e87a1d068ce392906b [file] [log] [blame]
// Copyright 2015 The Bazel Authors. 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.bazel.repository;
import com.google.devtools.build.lib.analysis.BlazeDirectories;
import com.google.devtools.build.lib.bazel.repository.downloader.HttpDownloader;
import com.google.devtools.build.lib.packages.Rule;
import com.google.devtools.build.lib.rules.repository.NewRepositoryFileHandler;
import com.google.devtools.build.lib.rules.repository.RepositoryDirectoryValue;
import com.google.devtools.build.lib.skyframe.PrecomputedValue;
import com.google.devtools.build.lib.syntax.EvalException;
import com.google.devtools.build.lib.syntax.SkylarkSemantics;
import com.google.devtools.build.lib.vfs.Path;
import com.google.devtools.build.skyframe.SkyFunction.Environment;
import com.google.devtools.build.skyframe.SkyFunctionException.Transience;
import java.util.Map;
/**
* Clones a Git repository, creates a WORKSPACE file, and adds a BUILD file for it.
*/
public class NewGitRepositoryFunction extends GitRepositoryFunction {
public NewGitRepositoryFunction(HttpDownloader httpDownloader) {
super(httpDownloader);
}
@Override
public RepositoryDirectoryValue.Builder fetch(Rule rule, Path outputDirectory,
BlazeDirectories directories, Environment env, Map<String, String> markerData)
throws InterruptedException, RepositoryFunctionException {
// Deprecation in favor of the Skylark variant.
SkylarkSemantics skylarkSemantics = PrecomputedValue.SKYLARK_SEMANTICS.get(env);
if (skylarkSemantics == null) {
return null;
}
if (skylarkSemantics.incompatibleRemoveNativeGitRepository()) {
throw new RepositoryFunctionException(
new EvalException(null,
"The native git_repository rule is deprecated."
+ " load(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"git_repository\") for a"
+ " replacement."
+ "\nUse --incompatible_remove_native_git_repository=false to temporarily continue"
+ " using the native rule."),
Transience.PERSISTENT);
}
NewRepositoryFileHandler fileHandler = new NewRepositoryFileHandler(directories.getWorkspace());
if (!fileHandler.prepareFile(rule, env)) {
return null;
}
createDirectory(outputDirectory, rule);
GitCloner.clone(rule, outputDirectory, env.getListener(), clientEnvironment, downloader);
fileHandler.finishFile(rule, outputDirectory, markerData);
return RepositoryDirectoryValue.builder().setPath(outputDirectory);
}
}