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