aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp/util/file_linux.h
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2016-09-29 08:56:42 +0000
committerGravatar Yun Peng <pcloudy@google.com>2016-09-29 09:13:09 +0000
commit60b15f92e77a7873ad9f72964b4d19dc9d3c2f78 (patch)
tree6fef48ae55b55987e4989b12bafa4956cafde9dc /src/main/cpp/util/file_linux.h
parent51417759a37e5b11003dd773d5c90ddd4c7a6aa7 (diff)
Move blaze_util::Which to standalone library.
This method is only used by blaze_util_linux.cc so instead of porting it to Windows, I'm moving it to a separate library. As part of this change I'm creating separate libraries for other sources in //src/main/cpp/util as well, so their dependencies are clearly defined in the BUILD file, plus we can port them one by one. This is part of the effort of compiling Bazel on Windows with the MSVC toolchain. -- MOS_MIGRATED_REVID=134636777
Diffstat (limited to 'src/main/cpp/util/file_linux.h')
-rw-r--r--src/main/cpp/util/file_linux.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/main/cpp/util/file_linux.h b/src/main/cpp/util/file_linux.h
new file mode 100644
index 0000000000..018353adfc
--- /dev/null
+++ b/src/main/cpp/util/file_linux.h
@@ -0,0 +1,33 @@
+// Copyright 2016 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.
+
+// This header file defines file utilities we only need under Linux.
+
+#ifndef BAZEL_SRC_MAIN_CPP_UTIL_FILE_LINUX_H_
+#define BAZEL_SRC_MAIN_CPP_UTIL_FILE_LINUX_H_
+
+#include <string>
+
+namespace blaze_util {
+
+using std::string;
+
+// Checks each element of the PATH variable for executable. If none is found, ""
+// is returned. Otherwise, the full path to executable is returned. Can die if
+// looking up PATH fails.
+string Which(const string &executable);
+
+} // namespace blaze_util
+
+#endif // BAZEL_SRC_MAIN_CPP_UTIL_FILE_LINUX_H_