buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 1 | // 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. |
| 14 | package com.google.devtools.build.lib.runtime; |
| 15 | |
janakr | ea42b15 | 2020-09-09 12:23:27 -0700 | [diff] [blame] | 16 | import static com.google.common.base.Preconditions.checkNotNull; |
| 17 | |
nharmata | db8c327 | 2020-05-04 09:50:18 -0700 | [diff] [blame] | 18 | import com.google.common.base.Strings; |
jmmv | 50adefb | 2020-10-02 09:25:34 -0700 | [diff] [blame] | 19 | import com.google.devtools.build.lib.jni.JniLoader; |
nharmata | db8c327 | 2020-05-04 09:50:18 -0700 | [diff] [blame] | 20 | import com.google.devtools.build.lib.server.FailureDetails.FailureDetail; |
| 21 | import com.google.devtools.build.lib.server.FailureDetails.Filesystem; |
| 22 | import com.google.devtools.build.lib.server.FailureDetails.Filesystem.Code; |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 23 | import com.google.devtools.build.lib.unix.UnixFileSystem; |
| 24 | import com.google.devtools.build.lib.util.AbruptExitException; |
nharmata | db8c327 | 2020-05-04 09:50:18 -0700 | [diff] [blame] | 25 | import com.google.devtools.build.lib.util.DetailedExitCode; |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 26 | import com.google.devtools.build.lib.util.OS; |
ccalvarin | bda12a1 | 2018-06-21 18:57:26 -0700 | [diff] [blame] | 27 | import com.google.devtools.build.lib.vfs.DigestHashFunction; |
| 28 | import com.google.devtools.build.lib.vfs.DigestHashFunction.DigestFunctionConverter; |
jmmv | 50adefb | 2020-10-02 09:25:34 -0700 | [diff] [blame] | 29 | import com.google.devtools.build.lib.vfs.FileSystem; |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 30 | import com.google.devtools.build.lib.vfs.JavaIoFileSystem; |
shahan | 1b4aa06 | 2018-10-29 17:00:51 -0700 | [diff] [blame] | 31 | import com.google.devtools.build.lib.vfs.PathFragment; |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 32 | import com.google.devtools.build.lib.windows.WindowsFileSystem; |
| 33 | import com.google.devtools.common.options.OptionsParsingException; |
juliexxia | e91a450 | 2018-08-15 14:42:29 -0700 | [diff] [blame] | 34 | import com.google.devtools.common.options.OptionsParsingResult; |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 35 | |
| 36 | /** |
jcater | 02ce2a6 | 2020-04-07 08:06:00 -0700 | [diff] [blame] | 37 | * 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}. |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 40 | * |
janakr | ea42b15 | 2020-09-09 12:23:27 -0700 | [diff] [blame] | 41 | * <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. |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 43 | */ |
| 44 | public class BazelFileSystemModule extends BlazeModule { |
ccalvarin | 78142a6 | 2018-08-01 19:25:22 -0700 | [diff] [blame] | 45 | @Override |
shahan | 1b4aa06 | 2018-10-29 17:00:51 -0700 | [diff] [blame] | 46 | public ModuleFileSystem getFileSystem( |
Googler | ea91700 | 2019-03-19 13:34:09 -0700 | [diff] [blame] | 47 | OptionsParsingResult startupOptions, PathFragment realExecRootBase) |
janakr | ea42b15 | 2020-09-09 12:23:27 -0700 | [diff] [blame] | 48 | 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( |
janakr | ea42b15 | 2020-09-09 12:23:27 -0700 | [diff] [blame] | 59 | 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 | } |
jmmv | 50adefb | 2020-10-02 09:25:34 -0700 | [diff] [blame] | 68 | |
| 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 | } |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 78 | } |
jmmv | 50adefb | 2020-10-02 09:25:34 -0700 | [diff] [blame] | 79 | return ModuleFileSystem.create(fs); |
buchgr | 559a07d | 2017-11-30 11:09:35 -0800 | [diff] [blame] | 80 | } |
| 81 | } |