ccalvarin | 5305a36 | 2018-04-20 13:56:55 -0700 | [diff] [blame] | 1 | // Copyright 2018 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 | #include "src/main/cpp/bazel_startup_options.h" |
| 15 | |
| 16 | #include <cassert> |
| 17 | |
| 18 | #include "src/main/cpp/blaze_util.h" |
ccalvarin | 90e116c | 2018-05-15 16:41:19 -0700 | [diff] [blame] | 19 | #include "src/main/cpp/util/logging.h" |
ccalvarin | 5305a36 | 2018-04-20 13:56:55 -0700 | [diff] [blame] | 20 | #include "src/main/cpp/workspace_layout.h" |
| 21 | |
| 22 | namespace blaze { |
| 23 | |
| 24 | BazelStartupOptions::BazelStartupOptions( |
| 25 | const WorkspaceLayout *workspace_layout) |
ccalvarin | 90e116c | 2018-05-15 16:41:19 -0700 | [diff] [blame] | 26 | : StartupOptions("Bazel", workspace_layout), |
| 27 | user_bazelrc_(""), |
ccalvarin | 5e5ee0d | 2018-08-23 08:56:01 -0700 | [diff] [blame] | 28 | use_system_rc(true), |
| 29 | use_workspace_rc(true), |
Googler | 96c8a90 | 2022-03-14 08:05:57 -0700 | [diff] [blame] | 30 | use_home_rc(true) { |
Laszlo Csomor | 5697da9 | 2019-08-23 01:41:52 -0700 | [diff] [blame] | 31 | RegisterNullaryStartupFlagNoRc("home_rc", &use_home_rc); |
Laszlo Csomor | 5697da9 | 2019-08-23 01:41:52 -0700 | [diff] [blame] | 32 | RegisterNullaryStartupFlagNoRc("system_rc", &use_system_rc); |
| 33 | RegisterNullaryStartupFlagNoRc("workspace_rc", &use_workspace_rc); |
ccalvarin | 5305a36 | 2018-04-20 13:56:55 -0700 | [diff] [blame] | 34 | RegisterUnaryStartupFlag("bazelrc"); |
| 35 | } |
| 36 | |
| 37 | blaze_exit_code::ExitCode BazelStartupOptions::ProcessArgExtra( |
| 38 | const char *arg, const char *next_arg, const std::string &rcfile, |
| 39 | const char **value, bool *is_processed, std::string *error) { |
| 40 | assert(value); |
| 41 | assert(is_processed); |
| 42 | |
| 43 | if ((*value = GetUnaryOption(arg, next_arg, "--bazelrc")) != nullptr) { |
| 44 | if (!rcfile.empty()) { |
Laszlo Csomor | 5697da9 | 2019-08-23 01:41:52 -0700 | [diff] [blame] | 45 | *error = "Can't specify --bazelrc in the RC file."; |
ccalvarin | 5305a36 | 2018-04-20 13:56:55 -0700 | [diff] [blame] | 46 | return blaze_exit_code::BAD_ARGV; |
| 47 | } |
ccalvarin | 90e116c | 2018-05-15 16:41:19 -0700 | [diff] [blame] | 48 | user_bazelrc_ = *value; |
ccalvarin | 5305a36 | 2018-04-20 13:56:55 -0700 | [diff] [blame] | 49 | } else { |
| 50 | *is_processed = false; |
| 51 | return blaze_exit_code::SUCCESS; |
| 52 | } |
| 53 | |
| 54 | *is_processed = true; |
| 55 | return blaze_exit_code::SUCCESS; |
| 56 | } |
| 57 | |
ccalvarin | 90e116c | 2018-05-15 16:41:19 -0700 | [diff] [blame] | 58 | void BazelStartupOptions::MaybeLogStartupOptionWarnings() const { |
| 59 | if (ignore_all_rc_files) { |
| 60 | if (!user_bazelrc_.empty()) { |
| 61 | BAZEL_LOG(WARNING) << "Value of --bazelrc is ignored, since " |
| 62 | "--ignore_all_rc_files is on."; |
| 63 | } |
ccalvarin | 5e5ee0d | 2018-08-23 08:56:01 -0700 | [diff] [blame] | 64 | if ((use_home_rc) && |
| 65 | option_sources.find("home_rc") != option_sources.end()) { |
| 66 | BAZEL_LOG(WARNING) << "Explicit value of --home_rc is " |
| 67 | "ignored, since --ignore_all_rc_files is on."; |
| 68 | } |
| 69 | if ((use_system_rc) && |
| 70 | option_sources.find("system_rc") != option_sources.end()) { |
| 71 | BAZEL_LOG(WARNING) << "Explicit value of --system_rc is " |
| 72 | "ignored, since --ignore_all_rc_files is on."; |
| 73 | } |
| 74 | if ((use_workspace_rc) && |
| 75 | option_sources.find("workspace_rc") != option_sources.end()) { |
| 76 | BAZEL_LOG(WARNING) << "Explicit value of --workspace_rc is " |
ccalvarin | 90e116c | 2018-05-15 16:41:19 -0700 | [diff] [blame] | 77 | "ignored, since --ignore_all_rc_files is on."; |
| 78 | } |
| 79 | } |
Laszlo Csomor | 52f4434 | 2019-07-10 05:10:04 -0700 | [diff] [blame] | 80 | bool output_user_root_has_space = |
| 81 | output_user_root.find_first_of(' ') != std::string::npos; |
| 82 | if (output_user_root_has_space) { |
| 83 | BAZEL_LOG(WARNING) |
| 84 | << "Output user root \"" << output_user_root |
| 85 | << "\" contains a space. This will probably break the build. " |
| 86 | "You should set a different --output_user_root."; |
laszlocsomor | 6f66539 | 2019-08-27 08:15:51 -0700 | [diff] [blame] | 87 | } else if (output_base.Contains(' ')) { |
Laszlo Csomor | 52f4434 | 2019-07-10 05:10:04 -0700 | [diff] [blame] | 88 | // output_base is computed from output_user_root by default. |
| 89 | // If output_user_root was bad, don't check output_base: while output_base |
| 90 | // may also be bad, we already warned about output_user_root so there's no |
| 91 | // point in another warning. |
| 92 | BAZEL_LOG(WARNING) |
laszlocsomor | 6f66539 | 2019-08-27 08:15:51 -0700 | [diff] [blame] | 93 | << "Output base \"" << output_base.AsPrintablePath() |
Laszlo Csomor | 52f4434 | 2019-07-10 05:10:04 -0700 | [diff] [blame] | 94 | << "\" contains a space. This will probably break the build. " |
| 95 | "You should not set --output_base and let Bazel use the default, or " |
| 96 | "set --output_base to a path without space."; |
| 97 | } |
ccalvarin | 90e116c | 2018-05-15 16:41:19 -0700 | [diff] [blame] | 98 | } |
| 99 | |
jcater | 6bd0aa4 | 2019-07-08 09:10:05 -0700 | [diff] [blame] | 100 | void BazelStartupOptions::AddExtraOptions( |
| 101 | std::vector<std::string> *result) const { |
| 102 | StartupOptions::AddExtraOptions(result); |
| 103 | } |
| 104 | |
ccalvarin | 5305a36 | 2018-04-20 13:56:55 -0700 | [diff] [blame] | 105 | } // namespace blaze |