blob: 58907a7c0ec662a5aa526ec3bd8cefd7d3a8571f [file] [log] [blame]
buchgr559a07d2017-11-30 11:09:35 -08001// Copyright 2017 The Bazel Authors. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14package com.google.devtools.build.lib.runtime;
15
janakrea42b152020-09-09 12:23:27 -070016import static com.google.common.base.Preconditions.checkNotNull;
17
nharmatadb8c3272020-05-04 09:50:18 -070018import com.google.common.base.Strings;
jmmv50adefb2020-10-02 09:25:34 -070019import com.google.devtools.build.lib.jni.JniLoader;
nharmatadb8c3272020-05-04 09:50:18 -070020import com.google.devtools.build.lib.server.FailureDetails.FailureDetail;
21import com.google.devtools.build.lib.server.FailureDetails.Filesystem;
22import com.google.devtools.build.lib.server.FailureDetails.Filesystem.Code;
buchgr559a07d2017-11-30 11:09:35 -080023import com.google.devtools.build.lib.unix.UnixFileSystem;
24import com.google.devtools.build.lib.util.AbruptExitException;
nharmatadb8c3272020-05-04 09:50:18 -070025import com.google.devtools.build.lib.util.DetailedExitCode;
buchgr559a07d2017-11-30 11:09:35 -080026import com.google.devtools.build.lib.util.OS;
ccalvarinbda12a12018-06-21 18:57:26 -070027import com.google.devtools.build.lib.vfs.DigestHashFunction;
28import com.google.devtools.build.lib.vfs.DigestHashFunction.DigestFunctionConverter;
jmmv50adefb2020-10-02 09:25:34 -070029import com.google.devtools.build.lib.vfs.FileSystem;
buchgr559a07d2017-11-30 11:09:35 -080030import com.google.devtools.build.lib.vfs.JavaIoFileSystem;
shahan1b4aa062018-10-29 17:00:51 -070031import com.google.devtools.build.lib.vfs.PathFragment;
buchgr559a07d2017-11-30 11:09:35 -080032import com.google.devtools.build.lib.windows.WindowsFileSystem;
33import com.google.devtools.common.options.OptionsParsingException;
juliexxiae91a4502018-08-15 14:42:29 -070034import com.google.devtools.common.options.OptionsParsingResult;
buchgr559a07d2017-11-30 11:09:35 -080035
36/**
jcater02ce2a62020-04-07 08:06:00 -070037 * Module to provide a {@link com.google.devtools.build.lib.vfs.FileSystem} instance that uses
38 * {@code SHA256} as the default hash function, or else what's specified by {@code
39 * -Dbazel.DigestFunction}.
buchgr559a07d2017-11-30 11:09:35 -080040 *
janakrea42b152020-09-09 12:23:27 -070041 * <p>Because of Blaze/Bazel divergence we can't make the {@link
42 * com.google.devtools.build.lib.vfs.FileSystem} class use {@code SHA256} by default.
buchgr559a07d2017-11-30 11:09:35 -080043 */
44public class BazelFileSystemModule extends BlazeModule {
ccalvarin78142a62018-08-01 19:25:22 -070045 @Override
shahan1b4aa062018-10-29 17:00:51 -070046 public ModuleFileSystem getFileSystem(
Googlerea917002019-03-19 13:34:09 -070047 OptionsParsingResult startupOptions, PathFragment realExecRootBase)
janakrea42b152020-09-09 12:23:27 -070048 throws AbruptExitException {
49 BlazeServerStartupOptions options =
50 checkNotNull(startupOptions.getOptions(BlazeServerStartupOptions.class));
51 DigestHashFunction digestHashFunction = options.digestHashFunction;
52 if (digestHashFunction == null) {
53 String value = System.getProperty("bazel.DigestFunction", "SHA256");
54 try {
55 digestHashFunction = new DigestFunctionConverter().convert(value);
56 } catch (OptionsParsingException e) {
57 throw new AbruptExitException(
58 DetailedExitCode.of(
janakrea42b152020-09-09 12:23:27 -070059 FailureDetail.newBuilder()
60 .setMessage(Strings.nullToEmpty(e.getMessage()))
61 .setFilesystem(
62 Filesystem.newBuilder()
63 .setCode(Code.DEFAULT_DIGEST_HASH_FUNCTION_INVALID_VALUE))
64 .build()),
65 e);
66 }
67 }
jmmv50adefb2020-10-02 09:25:34 -070068
69 FileSystem fs;
70 if (OS.getCurrent() == OS.WINDOWS) {
71 fs = new WindowsFileSystem(digestHashFunction, options.enableWindowsSymlinks);
72 } else {
73 if (JniLoader.isJniAvailable()) {
74 fs = new UnixFileSystem(digestHashFunction, options.unixDigestHashAttributeName);
75 } else {
76 fs = new JavaIoFileSystem(digestHashFunction);
77 }
buchgr559a07d2017-11-30 11:09:35 -080078 }
jmmv50adefb2020-10-02 09:25:34 -070079 return ModuleFileSystem.create(fs);
buchgr559a07d2017-11-30 11:09:35 -080080 }
81}