blob: 79353521d876f47776219511c306d376721b1f2b [file] [log] [blame]
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001// 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 Nienhuys36fbe632015-04-21 13:58:08 +000024#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 Nienhuysd08b27f2015-02-25 16:45:20 +010030
31namespace blaze {
32
Thiago Farina241f46c2015-04-13 14:33:30 +000033using blaze_util::die;
34using blaze_util::pdie;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010035using std::string;
36
37void WarnFilesystemType(const string& output_base) {
38}
39
40string 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 Chodorow93963352015-03-20 19:11:19 +000055string GetOutputRoot() {
56 return "/var/tmp";
57}
58
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010059pid_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
69uint64 MonotonicClock() {
70 struct timespec ts = {};
71 clock_gettime(CLOCK_MONOTONIC, &ts);
72 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
73}
74
75uint64 ProcessClock() {
76 struct timespec ts = {};
77 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
78 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
79}
80
81void SetScheduling(bool batch_cpu_scheduling, int io_nice_level) {
82 // TODO(bazel-team): There should be a similar function on Windows.
83}
84
85string 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 Farina01f36002015-04-08 15:59:08 +000096bool IsSharedLibrary(const string &filename) {
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010097 return blaze_util::ends_with(filename, ".dll");
98}
99
100string 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