blob: 1de82ed8895e2dc1f75ed2244be87c01f935c262 [file] [log] [blame]
ccalvarin5305a362018-04-20 13:56:55 -07001// 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"
ccalvarin90e116c2018-05-15 16:41:19 -070019#include "src/main/cpp/util/logging.h"
ccalvarin5305a362018-04-20 13:56:55 -070020#include "src/main/cpp/workspace_layout.h"
21
22namespace blaze {
23
24BazelStartupOptions::BazelStartupOptions(
25 const WorkspaceLayout *workspace_layout)
ccalvarin90e116c2018-05-15 16:41:19 -070026 : StartupOptions("Bazel", workspace_layout),
27 user_bazelrc_(""),
ccalvarin5e5ee0d2018-08-23 08:56:01 -070028 use_system_rc(true),
29 use_workspace_rc(true),
Googler96c8a902022-03-14 08:05:57 -070030 use_home_rc(true) {
Laszlo Csomor5697da92019-08-23 01:41:52 -070031 RegisterNullaryStartupFlagNoRc("home_rc", &use_home_rc);
Laszlo Csomor5697da92019-08-23 01:41:52 -070032 RegisterNullaryStartupFlagNoRc("system_rc", &use_system_rc);
33 RegisterNullaryStartupFlagNoRc("workspace_rc", &use_workspace_rc);
ccalvarin5305a362018-04-20 13:56:55 -070034 RegisterUnaryStartupFlag("bazelrc");
35}
36
37blaze_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 Csomor5697da92019-08-23 01:41:52 -070045 *error = "Can't specify --bazelrc in the RC file.";
ccalvarin5305a362018-04-20 13:56:55 -070046 return blaze_exit_code::BAD_ARGV;
47 }
ccalvarin90e116c2018-05-15 16:41:19 -070048 user_bazelrc_ = *value;
ccalvarin5305a362018-04-20 13:56:55 -070049 } 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
ccalvarin90e116c2018-05-15 16:41:19 -070058void 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 }
ccalvarin5e5ee0d2018-08-23 08:56:01 -070064 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 "
ccalvarin90e116c2018-05-15 16:41:19 -070077 "ignored, since --ignore_all_rc_files is on.";
78 }
79 }
Laszlo Csomor52f44342019-07-10 05:10:04 -070080 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.";
laszlocsomor6f665392019-08-27 08:15:51 -070087 } else if (output_base.Contains(' ')) {
Laszlo Csomor52f44342019-07-10 05:10:04 -070088 // 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)
laszlocsomor6f665392019-08-27 08:15:51 -070093 << "Output base \"" << output_base.AsPrintablePath()
Laszlo Csomor52f44342019-07-10 05:10:04 -070094 << "\" 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 }
ccalvarin90e116c2018-05-15 16:41:19 -070098}
99
jcater6bd0aa42019-07-08 09:10:05 -0700100void BazelStartupOptions::AddExtraOptions(
101 std::vector<std::string> *result) const {
102 StartupOptions::AddExtraOptions(result);
103}
104
ccalvarin5305a362018-04-20 13:56:55 -0700105} // namespace blaze