Reid Spencer | 33b9d77 | 2004-09-11 04:56:56 +0000 | [diff] [blame] | 1 | //===- Unix/Process.cpp - Unix Process Implementation --------- -*- C++ -*-===// |
Michael J. Spencer | 447762d | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | 33b9d77 | 2004-09-11 04:56:56 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Michael J. Spencer | 447762d | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 7 | // |
Reid Spencer | 33b9d77 | 2004-09-11 04:56:56 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file provides the generic Unix implementation of the Process class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 14 | #include "Unix.h" |
Daniel Dunbar | 5f1c956 | 2012-05-08 20:38:00 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/Hashing.h" |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/StringRef.h" |
Chandler Carruth | cad7e5e | 2013-08-07 08:47:36 +0000 | [diff] [blame] | 17 | #include "llvm/Support/Mutex.h" |
| 18 | #include "llvm/Support/MutexGuard.h" |
Daniel Dunbar | 5f1c956 | 2012-05-08 20:38:00 +0000 | [diff] [blame] | 19 | #include "llvm/Support/TimeValue.h" |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 20 | #ifdef HAVE_SYS_TIME_H |
| 21 | #include <sys/time.h> |
| 22 | #endif |
| 23 | #ifdef HAVE_SYS_RESOURCE_H |
| 24 | #include <sys/resource.h> |
| 25 | #endif |
Eric Christopher | 22738d0 | 2012-08-06 20:52:18 +0000 | [diff] [blame] | 26 | // DragonFlyBSD, OpenBSD, and Bitrig have deprecated <malloc.h> for |
| 27 | // <stdlib.h> instead. Unix.h includes this for us already. |
| 28 | #if defined(HAVE_MALLOC_H) && !defined(__DragonFly__) && \ |
| 29 | !defined(__OpenBSD__) && !defined(__Bitrig__) |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 30 | #include <malloc.h> |
| 31 | #endif |
Chris Lattner | 698fa76 | 2005-11-14 07:00:29 +0000 | [diff] [blame] | 32 | #ifdef HAVE_MALLOC_MALLOC_H |
| 33 | #include <malloc/malloc.h> |
| 34 | #endif |
Douglas Gregor | 1543661 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 35 | #ifdef HAVE_SYS_IOCTL_H |
| 36 | # include <sys/ioctl.h> |
| 37 | #endif |
Douglas Gregor | b81294d | 2009-05-18 17:21:34 +0000 | [diff] [blame] | 38 | #ifdef HAVE_TERMIOS_H |
| 39 | # include <termios.h> |
| 40 | #endif |
Reid Spencer | 33b9d77 | 2004-09-11 04:56:56 +0000 | [diff] [blame] | 41 | |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | //=== WARNING: Implementation here must contain only generic UNIX code that |
| 44 | //=== is guaranteed to work on *all* UNIX variants. |
| 45 | //===----------------------------------------------------------------------===// |
| 46 | |
Chris Lattner | 2f107cf | 2006-09-14 06:01:41 +0000 | [diff] [blame] | 47 | using namespace llvm; |
Reid Spencer | 33b9d77 | 2004-09-11 04:56:56 +0000 | [diff] [blame] | 48 | using namespace sys; |
| 49 | |
Chandler Carruth | 97683aa | 2012-12-31 11:17:50 +0000 | [diff] [blame] | 50 | |
| 51 | process::id_type self_process::get_id() { |
| 52 | return getpid(); |
| 53 | } |
| 54 | |
Chandler Carruth | ef7f968 | 2013-01-04 23:19:55 +0000 | [diff] [blame] | 55 | static std::pair<TimeValue, TimeValue> getRUsageTimes() { |
| 56 | #if defined(HAVE_GETRUSAGE) |
| 57 | struct rusage RU; |
| 58 | ::getrusage(RUSAGE_SELF, &RU); |
| 59 | return std::make_pair( |
| 60 | TimeValue( |
| 61 | static_cast<TimeValue::SecondsType>(RU.ru_utime.tv_sec), |
| 62 | static_cast<TimeValue::NanoSecondsType>( |
| 63 | RU.ru_utime.tv_usec * TimeValue::NANOSECONDS_PER_MICROSECOND)), |
| 64 | TimeValue( |
| 65 | static_cast<TimeValue::SecondsType>(RU.ru_stime.tv_sec), |
| 66 | static_cast<TimeValue::NanoSecondsType>( |
| 67 | RU.ru_stime.tv_usec * TimeValue::NANOSECONDS_PER_MICROSECOND))); |
| 68 | #else |
| 69 | #warning Cannot get usage times on this platform |
| 70 | return std::make_pair(TimeValue(), TimeValue()); |
| 71 | #endif |
| 72 | } |
| 73 | |
| 74 | TimeValue self_process::get_user_time() const { |
Chandler Carruth | b5429f4 | 2013-01-05 00:42:50 +0000 | [diff] [blame] | 75 | #if _POSIX_TIMERS > 0 && _POSIX_CPUTIME > 0 |
Chandler Carruth | ef7f968 | 2013-01-04 23:19:55 +0000 | [diff] [blame] | 76 | // Try to get a high resolution CPU timer. |
| 77 | struct timespec TS; |
| 78 | if (::clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &TS) == 0) |
| 79 | return TimeValue(static_cast<TimeValue::SecondsType>(TS.tv_sec), |
| 80 | static_cast<TimeValue::NanoSecondsType>(TS.tv_nsec)); |
| 81 | #endif |
| 82 | |
| 83 | // Otherwise fall back to rusage based timing. |
| 84 | return getRUsageTimes().first; |
| 85 | } |
| 86 | |
| 87 | TimeValue self_process::get_system_time() const { |
| 88 | // We can only collect system time by inspecting the results of getrusage. |
| 89 | return getRUsageTimes().second; |
| 90 | } |
| 91 | |
NAKAMURA Takumi | 7a04234 | 2013-09-04 14:12:26 +0000 | [diff] [blame] | 92 | // On Cygwin, getpagesize() returns 64k(AllocationGranularity) and |
| 93 | // offset in mmap(3) should be aligned to the AllocationGranularity. |
Chandler Carruth | 15dcad9 | 2012-12-31 23:23:35 +0000 | [diff] [blame] | 94 | static unsigned getPageSize() { |
NAKAMURA Takumi | 3bbbe2e | 2013-08-21 13:47:12 +0000 | [diff] [blame] | 95 | #if defined(HAVE_GETPAGESIZE) |
Owen Anderson | a83e868 | 2009-08-19 21:48:34 +0000 | [diff] [blame] | 96 | const int page_size = ::getpagesize(); |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 97 | #elif defined(HAVE_SYSCONF) |
Owen Anderson | a83e868 | 2009-08-19 21:48:34 +0000 | [diff] [blame] | 98 | long page_size = ::sysconf(_SC_PAGE_SIZE); |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 99 | #else |
| 100 | #warning Cannot get the page size on this machine |
| 101 | #endif |
Reid Spencer | 33b9d77 | 2004-09-11 04:56:56 +0000 | [diff] [blame] | 102 | return static_cast<unsigned>(page_size); |
| 103 | } |
| 104 | |
Chandler Carruth | 15dcad9 | 2012-12-31 23:23:35 +0000 | [diff] [blame] | 105 | // This constructor guaranteed to be run exactly once on a single thread, and |
| 106 | // sets up various process invariants that can be queried cheaply from then on. |
| 107 | self_process::self_process() : PageSize(getPageSize()) { |
| 108 | } |
| 109 | |
| 110 | |
Chris Lattner | 698fa76 | 2005-11-14 07:00:29 +0000 | [diff] [blame] | 111 | size_t Process::GetMallocUsage() { |
Reid Spencer | 1cf74ce | 2004-12-20 16:06:44 +0000 | [diff] [blame] | 112 | #if defined(HAVE_MALLINFO) |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 113 | struct mallinfo mi; |
| 114 | mi = ::mallinfo(); |
| 115 | return mi.uordblks; |
Chris Lattner | 16cbc6a | 2005-11-14 07:27:56 +0000 | [diff] [blame] | 116 | #elif defined(HAVE_MALLOC_ZONE_STATISTICS) && defined(HAVE_MALLOC_MALLOC_H) |
| 117 | malloc_statistics_t Stats; |
| 118 | malloc_zone_statistics(malloc_default_zone(), &Stats); |
| 119 | return Stats.size_in_use; // darwin |
Reid Spencer | 1cf74ce | 2004-12-20 16:06:44 +0000 | [diff] [blame] | 120 | #elif defined(HAVE_SBRK) |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 121 | // Note this is only an approximation and more closely resembles |
| 122 | // the value returned by mallinfo in the arena field. |
Chris Lattner | 698fa76 | 2005-11-14 07:00:29 +0000 | [diff] [blame] | 123 | static char *StartOfMemory = reinterpret_cast<char*>(::sbrk(0)); |
| 124 | char *EndOfMemory = (char*)sbrk(0); |
| 125 | if (EndOfMemory != ((char*)-1) && StartOfMemory != ((char*)-1)) |
| 126 | return EndOfMemory - StartOfMemory; |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 127 | else |
| 128 | return 0; |
| 129 | #else |
| 130 | #warning Cannot get malloc info on this platform |
| 131 | return 0; |
| 132 | #endif |
| 133 | } |
| 134 | |
Chandler Carruth | ef7f968 | 2013-01-04 23:19:55 +0000 | [diff] [blame] | 135 | void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time, |
| 136 | TimeValue &sys_time) { |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 137 | elapsed = TimeValue::now(); |
Chandler Carruth | ef7f968 | 2013-01-04 23:19:55 +0000 | [diff] [blame] | 138 | llvm::tie(user_time, sys_time) = getRUsageTimes(); |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Sylvestre Ledru | 14ada94 | 2012-04-11 15:35:36 +0000 | [diff] [blame] | 141 | #if defined(HAVE_MACH_MACH_H) && !defined(__GNU__) |
Nate Begeman | 4840515 | 2008-04-12 00:47:46 +0000 | [diff] [blame] | 142 | #include <mach/mach.h> |
| 143 | #endif |
| 144 | |
Reid Spencer | cf15b87 | 2004-12-27 06:17:27 +0000 | [diff] [blame] | 145 | // Some LLVM programs such as bugpoint produce core files as a normal part of |
| 146 | // their operation. To prevent the disk from filling up, this function |
| 147 | // does what's necessary to prevent their generation. |
| 148 | void Process::PreventCoreFiles() { |
| 149 | #if HAVE_SETRLIMIT |
| 150 | struct rlimit rlim; |
| 151 | rlim.rlim_cur = rlim.rlim_max = 0; |
Chris Lattner | f64397b | 2006-05-14 18:53:09 +0000 | [diff] [blame] | 152 | setrlimit(RLIMIT_CORE, &rlim); |
Reid Spencer | cf15b87 | 2004-12-27 06:17:27 +0000 | [diff] [blame] | 153 | #endif |
Chris Lattner | 2f107cf | 2006-09-14 06:01:41 +0000 | [diff] [blame] | 154 | |
Sylvestre Ledru | 14ada94 | 2012-04-11 15:35:36 +0000 | [diff] [blame] | 155 | #if defined(HAVE_MACH_MACH_H) && !defined(__GNU__) |
Nate Begeman | 4840515 | 2008-04-12 00:47:46 +0000 | [diff] [blame] | 156 | // Disable crash reporting on Mac OS X 10.0-10.4 |
| 157 | |
| 158 | // get information about the original set of exception ports for the task |
| 159 | mach_msg_type_number_t Count = 0; |
| 160 | exception_mask_t OriginalMasks[EXC_TYPES_COUNT]; |
| 161 | exception_port_t OriginalPorts[EXC_TYPES_COUNT]; |
| 162 | exception_behavior_t OriginalBehaviors[EXC_TYPES_COUNT]; |
| 163 | thread_state_flavor_t OriginalFlavors[EXC_TYPES_COUNT]; |
Michael J. Spencer | 447762d | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 164 | kern_return_t err = |
Nate Begeman | 4840515 | 2008-04-12 00:47:46 +0000 | [diff] [blame] | 165 | task_get_exception_ports(mach_task_self(), EXC_MASK_ALL, OriginalMasks, |
| 166 | &Count, OriginalPorts, OriginalBehaviors, |
| 167 | OriginalFlavors); |
| 168 | if (err == KERN_SUCCESS) { |
| 169 | // replace each with MACH_PORT_NULL. |
| 170 | for (unsigned i = 0; i != Count; ++i) |
Michael J. Spencer | 447762d | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 171 | task_set_exception_ports(mach_task_self(), OriginalMasks[i], |
Nate Begeman | 4840515 | 2008-04-12 00:47:46 +0000 | [diff] [blame] | 172 | MACH_PORT_NULL, OriginalBehaviors[i], |
| 173 | OriginalFlavors[i]); |
| 174 | } |
| 175 | |
| 176 | // Disable crash reporting on Mac OS X 10.5 |
Nate Begeman | f8be383 | 2008-03-31 22:19:25 +0000 | [diff] [blame] | 177 | signal(SIGABRT, _exit); |
| 178 | signal(SIGILL, _exit); |
| 179 | signal(SIGFPE, _exit); |
| 180 | signal(SIGSEGV, _exit); |
| 181 | signal(SIGBUS, _exit); |
Chris Lattner | 2f107cf | 2006-09-14 06:01:41 +0000 | [diff] [blame] | 182 | #endif |
Reid Spencer | cf15b87 | 2004-12-27 06:17:27 +0000 | [diff] [blame] | 183 | } |
Reid Spencer | ac38f3a | 2004-12-20 00:59:28 +0000 | [diff] [blame] | 184 | |
Rui Ueyama | 471d0c5 | 2013-09-10 19:45:51 +0000 | [diff] [blame] | 185 | Optional<std::string> Process::GetEnv(StringRef Name) { |
| 186 | std::string NameStr = Name.str(); |
| 187 | const char *Val = ::getenv(NameStr.c_str()); |
| 188 | if (!Val) |
| 189 | return None; |
| 190 | return std::string(Val); |
| 191 | } |
| 192 | |
David Majnemer | 61eae2e | 2013-10-07 01:00:07 +0000 | [diff] [blame] | 193 | error_code Process::GetArgumentVector(SmallVectorImpl<const char *> &ArgsOut, |
| 194 | ArrayRef<const char *> ArgsIn, |
| 195 | SpecificBumpPtrAllocator<char> &) { |
| 196 | ArgsOut.append(ArgsIn.begin(), ArgsIn.end()); |
| 197 | |
| 198 | return error_code::success(); |
| 199 | } |
| 200 | |
Reid Spencer | 6f802ba | 2005-01-01 22:29:26 +0000 | [diff] [blame] | 201 | bool Process::StandardInIsUserInput() { |
Dan Gohman | e592923 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 202 | return FileDescriptorIsDisplayed(STDIN_FILENO); |
Reid Spencer | 6f802ba | 2005-01-01 22:29:26 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | bool Process::StandardOutIsDisplayed() { |
Dan Gohman | e592923 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 206 | return FileDescriptorIsDisplayed(STDOUT_FILENO); |
Reid Spencer | 6f802ba | 2005-01-01 22:29:26 +0000 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | bool Process::StandardErrIsDisplayed() { |
Dan Gohman | e592923 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 210 | return FileDescriptorIsDisplayed(STDERR_FILENO); |
| 211 | } |
| 212 | |
| 213 | bool Process::FileDescriptorIsDisplayed(int fd) { |
Reid Spencer | 6f802ba | 2005-01-01 22:29:26 +0000 | [diff] [blame] | 214 | #if HAVE_ISATTY |
Dan Gohman | e592923 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 215 | return isatty(fd); |
Duncan Sands | 44d423a | 2009-09-06 10:53:22 +0000 | [diff] [blame] | 216 | #else |
Reid Spencer | 6f802ba | 2005-01-01 22:29:26 +0000 | [diff] [blame] | 217 | // If we don't have isatty, just return false. |
| 218 | return false; |
Duncan Sands | 44d423a | 2009-09-06 10:53:22 +0000 | [diff] [blame] | 219 | #endif |
Reid Spencer | 6f802ba | 2005-01-01 22:29:26 +0000 | [diff] [blame] | 220 | } |
Douglas Gregor | 1543661 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 221 | |
| 222 | static unsigned getColumns(int FileID) { |
| 223 | // If COLUMNS is defined in the environment, wrap to that many columns. |
| 224 | if (const char *ColumnsStr = std::getenv("COLUMNS")) { |
| 225 | int Columns = std::atoi(ColumnsStr); |
| 226 | if (Columns > 0) |
| 227 | return Columns; |
| 228 | } |
| 229 | |
| 230 | unsigned Columns = 0; |
| 231 | |
Douglas Gregor | b81294d | 2009-05-18 17:21:34 +0000 | [diff] [blame] | 232 | #if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_TERMIOS_H) |
Douglas Gregor | 1543661 | 2009-05-11 18:05:52 +0000 | [diff] [blame] | 233 | // Try to determine the width of the terminal. |
| 234 | struct winsize ws; |
| 235 | if (ioctl(FileID, TIOCGWINSZ, &ws) == 0) |
| 236 | Columns = ws.ws_col; |
| 237 | #endif |
| 238 | |
| 239 | return Columns; |
| 240 | } |
| 241 | |
| 242 | unsigned Process::StandardOutColumns() { |
| 243 | if (!StandardOutIsDisplayed()) |
| 244 | return 0; |
| 245 | |
| 246 | return getColumns(1); |
| 247 | } |
| 248 | |
| 249 | unsigned Process::StandardErrColumns() { |
| 250 | if (!StandardErrIsDisplayed()) |
| 251 | return 0; |
| 252 | |
| 253 | return getColumns(2); |
| 254 | } |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 255 | |
Chandler Carruth | 9121985 | 2013-08-12 10:40:11 +0000 | [diff] [blame] | 256 | #ifdef HAVE_TERMINFO |
Chandler Carruth | 67ff8b7 | 2013-08-18 01:20:32 +0000 | [diff] [blame] | 257 | // We manually declare these extern functions because finding the correct |
Chandler Carruth | 9121985 | 2013-08-12 10:40:11 +0000 | [diff] [blame] | 258 | // headers from various terminfo, curses, or other sources is harder than |
| 259 | // writing their specs down. |
| 260 | extern "C" int setupterm(char *term, int filedes, int *errret); |
Chandler Carruth | 67ff8b7 | 2013-08-18 01:20:32 +0000 | [diff] [blame] | 261 | extern "C" struct term *set_curterm(struct term *termp); |
| 262 | extern "C" int del_curterm(struct term *termp); |
Chandler Carruth | 9121985 | 2013-08-12 10:40:11 +0000 | [diff] [blame] | 263 | extern "C" int tigetnum(char *capname); |
| 264 | #endif |
| 265 | |
Chandler Carruth | cad7e5e | 2013-08-07 08:47:36 +0000 | [diff] [blame] | 266 | static bool terminalHasColors(int fd) { |
Chandler Carruth | f11f1e4 | 2013-08-12 09:49:17 +0000 | [diff] [blame] | 267 | #ifdef HAVE_TERMINFO |
| 268 | // First, acquire a global lock because these C routines are thread hostile. |
Chandler Carruth | cad7e5e | 2013-08-07 08:47:36 +0000 | [diff] [blame] | 269 | static sys::Mutex M; |
| 270 | MutexGuard G(M); |
| 271 | |
| 272 | int errret = 0; |
Chandler Carruth | 9121985 | 2013-08-12 10:40:11 +0000 | [diff] [blame] | 273 | if (setupterm((char *)0, fd, &errret) != 0) |
Chandler Carruth | cad7e5e | 2013-08-07 08:47:36 +0000 | [diff] [blame] | 274 | // Regardless of why, if we can't get terminfo, we shouldn't try to print |
| 275 | // colors. |
| 276 | return false; |
| 277 | |
Chandler Carruth | f11f1e4 | 2013-08-12 09:49:17 +0000 | [diff] [blame] | 278 | // Test whether the terminal as set up supports color output. How to do this |
| 279 | // isn't entirely obvious. We can use the curses routine 'has_colors' but it |
| 280 | // would be nice to avoid a dependency on curses proper when we can make do |
| 281 | // with a minimal terminfo parsing library. Also, we don't really care whether |
| 282 | // the terminal supports the curses-specific color changing routines, merely |
| 283 | // if it will interpret ANSI color escape codes in a reasonable way. Thus, the |
| 284 | // strategy here is just to query the baseline colors capability and if it |
| 285 | // supports colors at all to assume it will translate the escape codes into |
| 286 | // whatever range of colors it does support. We can add more detailed tests |
| 287 | // here if users report them as necessary. |
| 288 | // |
| 289 | // The 'tigetnum' routine returns -2 or -1 on errors, and might return 0 if |
| 290 | // the terminfo says that no colors are supported. |
Chandler Carruth | 67ff8b7 | 2013-08-18 01:20:32 +0000 | [diff] [blame] | 291 | bool HasColors = tigetnum(const_cast<char *>("colors")) > 0; |
| 292 | |
| 293 | // Now extract the structure allocated by setupterm and free its memory |
| 294 | // through a really silly dance. |
| 295 | struct term *termp = set_curterm((struct term *)0); |
| 296 | (void)del_curterm(termp); // Drop any errors here. |
| 297 | |
| 298 | // Return true if we found a color capabilities for the current terminal. |
| 299 | if (HasColors) |
Chandler Carruth | cad7e5e | 2013-08-07 08:47:36 +0000 | [diff] [blame] | 300 | return true; |
| 301 | #endif |
| 302 | |
| 303 | // Otherwise, be conservative. |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 304 | return false; |
| 305 | } |
| 306 | |
Daniel Dunbar | 712de82 | 2012-07-20 18:29:38 +0000 | [diff] [blame] | 307 | bool Process::FileDescriptorHasColors(int fd) { |
| 308 | // A file descriptor has colors if it is displayed and the terminal has |
| 309 | // colors. |
Chandler Carruth | cad7e5e | 2013-08-07 08:47:36 +0000 | [diff] [blame] | 310 | return FileDescriptorIsDisplayed(fd) && terminalHasColors(fd); |
Daniel Dunbar | 712de82 | 2012-07-20 18:29:38 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 313 | bool Process::StandardOutHasColors() { |
Daniel Dunbar | 712de82 | 2012-07-20 18:29:38 +0000 | [diff] [blame] | 314 | return FileDescriptorHasColors(STDOUT_FILENO); |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | bool Process::StandardErrHasColors() { |
Daniel Dunbar | 712de82 | 2012-07-20 18:29:38 +0000 | [diff] [blame] | 318 | return FileDescriptorHasColors(STDERR_FILENO); |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Nico Rieck | 92d649a | 2013-09-11 00:36:48 +0000 | [diff] [blame] | 321 | void Process::UseANSIEscapeCodes(bool /*enable*/) { |
| 322 | // No effect. |
| 323 | } |
| 324 | |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 325 | bool Process::ColorNeedsFlush() { |
| 326 | // No, we use ANSI escape sequences. |
| 327 | return false; |
| 328 | } |
| 329 | |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 330 | const char *Process::OutputColor(char code, bool bold, bool bg) { |
| 331 | return colorcodes[bg?1:0][bold?1:0][code&7]; |
| 332 | } |
| 333 | |
| 334 | const char *Process::OutputBold(bool bg) { |
| 335 | return "\033[1m"; |
| 336 | } |
| 337 | |
Benjamin Kramer | 13d16f3 | 2012-04-16 08:56:50 +0000 | [diff] [blame] | 338 | const char *Process::OutputReverse() { |
| 339 | return "\033[7m"; |
| 340 | } |
| 341 | |
Torok Edwin | 9b5a47f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 342 | const char *Process::ResetColor() { |
| 343 | return "\033[0m"; |
| 344 | } |
NAKAMURA Takumi | 54acb28 | 2012-05-06 08:24:18 +0000 | [diff] [blame] | 345 | |
Todd Fiala | 4ccfe39 | 2014-02-05 05:04:36 +0000 | [diff] [blame^] | 346 | #if !defined(HAVE_DECL_ARC4RANDOM) || !HAVE_DECL_ARC4RANDOM |
NAKAMURA Takumi | 7bec741 | 2012-05-06 08:24:24 +0000 | [diff] [blame] | 347 | static unsigned GetRandomNumberSeed() { |
Daniel Dunbar | 5f1c956 | 2012-05-08 20:38:00 +0000 | [diff] [blame] | 348 | // Attempt to get the initial seed from /dev/urandom, if possible. |
| 349 | if (FILE *RandomSource = ::fopen("/dev/urandom", "r")) { |
| 350 | unsigned seed; |
| 351 | int count = ::fread((void *)&seed, sizeof(seed), 1, RandomSource); |
NAKAMURA Takumi | 7bec741 | 2012-05-06 08:24:24 +0000 | [diff] [blame] | 352 | ::fclose(RandomSource); |
Daniel Dunbar | 5f1c956 | 2012-05-08 20:38:00 +0000 | [diff] [blame] | 353 | |
| 354 | // Return the seed if the read was successful. |
| 355 | if (count == 1) |
| 356 | return seed; |
NAKAMURA Takumi | 7bec741 | 2012-05-06 08:24:24 +0000 | [diff] [blame] | 357 | } |
Daniel Dunbar | 5f1c956 | 2012-05-08 20:38:00 +0000 | [diff] [blame] | 358 | |
| 359 | // Otherwise, swizzle the current time and the process ID to form a reasonable |
| 360 | // seed. |
Chandler Carruth | 5473dfb | 2012-12-31 11:45:20 +0000 | [diff] [blame] | 361 | TimeValue Now = TimeValue::now(); |
Daniel Dunbar | 5f1c956 | 2012-05-08 20:38:00 +0000 | [diff] [blame] | 362 | return hash_combine(Now.seconds(), Now.nanoseconds(), ::getpid()); |
NAKAMURA Takumi | 7bec741 | 2012-05-06 08:24:24 +0000 | [diff] [blame] | 363 | } |
| 364 | #endif |
| 365 | |
NAKAMURA Takumi | 54acb28 | 2012-05-06 08:24:18 +0000 | [diff] [blame] | 366 | unsigned llvm::sys::Process::GetRandomNumber() { |
Todd Fiala | 4ccfe39 | 2014-02-05 05:04:36 +0000 | [diff] [blame^] | 367 | #if defined(HAVE_DECL_ARC4RANDOM) && HAVE_DECL_ARC4RANDOM |
NAKAMURA Takumi | 54acb28 | 2012-05-06 08:24:18 +0000 | [diff] [blame] | 368 | return arc4random(); |
| 369 | #else |
NAKAMURA Takumi | 7bec741 | 2012-05-06 08:24:24 +0000 | [diff] [blame] | 370 | static int x = (::srand(GetRandomNumberSeed()), 0); |
| 371 | (void)x; |
NAKAMURA Takumi | 54acb28 | 2012-05-06 08:24:18 +0000 | [diff] [blame] | 372 | return ::rand(); |
| 373 | #endif |
| 374 | } |