Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1 | // Copyright 2014 Google Inc. 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 | |
| 15 | #include <errno.h> |
| 16 | #include <limits.h> |
| 17 | #include <string.h> // strerror |
| 18 | #include <sys/statfs.h> |
| 19 | #include <unistd.h> |
| 20 | |
| 21 | #include <cstdlib> |
| 22 | #include <cstdio> |
| 23 | |
Han-Wen Nienhuys | 36fbe63 | 2015-04-21 13:58:08 +0000 | [diff] [blame^] | 24 | #include "src/main/cpp/blaze_exit_code.h" |
| 25 | #include "src/main/cpp/blaze_util_platform.h" |
| 26 | #include "src/main/cpp/blaze_util.h" |
| 27 | #include "src/main/cpp/util/errors.h" |
| 28 | #include "src/main/cpp/util/file.h" |
| 29 | #include "src/main/cpp/util/strings.h" |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 30 | |
| 31 | namespace blaze { |
| 32 | |
Thiago Farina | 241f46c | 2015-04-13 14:33:30 +0000 | [diff] [blame] | 33 | using blaze_util::die; |
| 34 | using blaze_util::pdie; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 35 | using std::string; |
| 36 | |
| 37 | void WarnFilesystemType(const string& output_base) { |
| 38 | } |
| 39 | |
| 40 | string GetSelfPath() { |
| 41 | char buffer[PATH_MAX] = {}; |
| 42 | ssize_t bytes = readlink("/proc/self/exe", buffer, sizeof(buffer)); |
| 43 | if (bytes == sizeof(buffer)) { |
| 44 | // symlink contents truncated |
| 45 | bytes = -1; |
| 46 | errno = ENAMETOOLONG; |
| 47 | } |
| 48 | if (bytes == -1) { |
| 49 | pdie(blaze_exit_code::INTERNAL_ERROR, "error reading /proc/self/exe"); |
| 50 | } |
| 51 | buffer[bytes] = '\0'; // readlink does not NUL-terminate |
| 52 | return string(buffer); |
| 53 | } |
| 54 | |
Kristina Chodorow | 9396335 | 2015-03-20 19:11:19 +0000 | [diff] [blame] | 55 | string GetOutputRoot() { |
| 56 | return "/var/tmp"; |
| 57 | } |
| 58 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 59 | pid_t GetPeerProcessId(int socket) { |
| 60 | struct ucred creds = {}; |
| 61 | socklen_t len = sizeof creds; |
| 62 | if (getsockopt(socket, SOL_SOCKET, SO_PEERCRED, &creds, &len) == -1) { |
| 63 | pdie(blaze_exit_code::LOCAL_ENVIRONMENTAL_ERROR, |
| 64 | "can't get server pid from connection"); |
| 65 | } |
| 66 | return creds.pid; |
| 67 | } |
| 68 | |
| 69 | uint64 MonotonicClock() { |
| 70 | struct timespec ts = {}; |
| 71 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 72 | return ts.tv_sec * 1000000000LL + ts.tv_nsec; |
| 73 | } |
| 74 | |
| 75 | uint64 ProcessClock() { |
| 76 | struct timespec ts = {}; |
| 77 | clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts); |
| 78 | return ts.tv_sec * 1000000000LL + ts.tv_nsec; |
| 79 | } |
| 80 | |
| 81 | void SetScheduling(bool batch_cpu_scheduling, int io_nice_level) { |
| 82 | // TODO(bazel-team): There should be a similar function on Windows. |
| 83 | } |
| 84 | |
| 85 | string GetProcessCWD(int pid) { |
| 86 | char server_cwd[PATH_MAX] = {}; |
| 87 | if (readlink( |
| 88 | ("/proc/" + std::to_string(pid) + "/cwd").c_str(), |
| 89 | server_cwd, sizeof(server_cwd)) < 0) { |
| 90 | return ""; |
| 91 | } |
| 92 | |
| 93 | return string(server_cwd); |
| 94 | } |
| 95 | |
Thiago Farina | 01f3600 | 2015-04-08 15:59:08 +0000 | [diff] [blame] | 96 | bool IsSharedLibrary(const string &filename) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 97 | return blaze_util::ends_with(filename, ".dll"); |
| 98 | } |
| 99 | |
| 100 | string GetDefaultHostJavabase() { |
| 101 | const char *javahome = getenv("JAVA_HOME"); |
| 102 | if (javahome == NULL) { |
| 103 | die(blaze_exit_code::LOCAL_ENVIRONMENTAL_ERROR, |
| 104 | "Error: JAVA_HOME not set."); |
| 105 | } |
| 106 | return javahome; |
| 107 | } |
| 108 | |
| 109 | } // namespace blaze |