blob: ad67e1b10b48b95241a1bcd42f4118f47995e57a [file] [log] [blame]
Reid Spencer566ac282004-09-11 04:59:30 +00001//===-- Process.cpp - Implement OS Process Concept --------------*- C++ -*-===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
Reid Spencer566ac282004-09-11 04:59:30 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
Reid Spencer566ac282004-09-11 04:59:30 +00008//===----------------------------------------------------------------------===//
9//
Hans Wennborgcfe341f2014-06-20 01:36:00 +000010// This file implements the operating system Process concept.
Reid Spencer566ac282004-09-11 04:59:30 +000011//
12//===----------------------------------------------------------------------===//
13
Ehsan Akhgari33d1ae52014-06-30 19:54:20 +000014#include "llvm/ADT/StringExtras.h"
Reid Spencer97d4a172004-12-27 06:15:29 +000015#include "llvm/Config/config.h"
Chandler Carruth97683aa2012-12-31 11:17:50 +000016#include "llvm/Support/ErrorHandling.h"
Ehsan Akhgari33d1ae52014-06-30 19:54:20 +000017#include "llvm/Support/FileSystem.h"
Chandler Carruthbe810232013-01-02 10:22:59 +000018#include "llvm/Support/Process.h"
Ehsan Akhgari33d1ae52014-06-30 19:54:20 +000019#include "llvm/Support/Program.h"
Reid Spencer566ac282004-09-11 04:59:30 +000020
Chandler Carruth5473dfb2012-12-31 11:45:20 +000021using namespace llvm;
Reid Spencer566ac282004-09-11 04:59:30 +000022using namespace sys;
23
24//===----------------------------------------------------------------------===//
25//=== WARNING: Implementation here must contain only TRULY operating system
Misha Brukman10468d82005-04-21 22:55:34 +000026//=== independent code.
Reid Spencer566ac282004-09-11 04:59:30 +000027//===----------------------------------------------------------------------===//
28
Chandler Carruthef7f9682013-01-04 23:19:55 +000029/// \brief A helper function to compute the elapsed wall-time since the program
30/// started.
31///
32/// Note that this routine actually computes the elapsed wall time since the
33/// first time it was called. However, we arrange to have it called during the
34/// startup of the process to get approximately correct results.
35static TimeValue getElapsedWallTime() {
36 static TimeValue &StartTime = *new TimeValue(TimeValue::now());
37 return TimeValue::now() - StartTime;
38}
39
40/// \brief A special global variable to ensure we call \c getElapsedWallTime
41/// during global initialization of the program.
42///
43/// Note that this variable is never referenced elsewhere. Doing so could
44/// create race conditions during program startup or shutdown.
45static volatile TimeValue DummyTimeValue = getElapsedWallTime();
46
Ehsan Akhgari33d1ae52014-06-30 19:54:20 +000047Optional<std::string> Process::FindInEnvPath(const std::string& EnvName,
48 const std::string& FileName)
49{
50 Optional<std::string> FoundPath;
51 Optional<std::string> OptPath = Process::GetEnv(EnvName);
52 if (!OptPath.hasValue())
53 return FoundPath;
54
55 const char EnvPathSeparatorStr[] = {EnvPathSeparator, '\0'};
56 SmallVector<StringRef, 8> Dirs;
57 SplitString(OptPath.getValue(), Dirs, EnvPathSeparatorStr);
58
59 for (const auto &Dir : Dirs) {
60 if (Dir.empty())
61 continue;
62
63 SmallString<128> FilePath(Dir);
64 path::append(FilePath, FileName);
65 if (fs::exists(Twine(FilePath))) {
66 FoundPath = FilePath.str();
67 break;
68 }
69 }
70
71 return FoundPath;
72}
73
Chandler Carruthef7f9682013-01-04 23:19:55 +000074
Nico Rieck92d649a2013-09-11 00:36:48 +000075#define COLOR(FGBG, CODE, BOLD) "\033[0;" BOLD FGBG CODE "m"
76
77#define ALLCOLORS(FGBG,BOLD) {\
78 COLOR(FGBG, "0", BOLD),\
79 COLOR(FGBG, "1", BOLD),\
80 COLOR(FGBG, "2", BOLD),\
81 COLOR(FGBG, "3", BOLD),\
82 COLOR(FGBG, "4", BOLD),\
83 COLOR(FGBG, "5", BOLD),\
84 COLOR(FGBG, "6", BOLD),\
85 COLOR(FGBG, "7", BOLD)\
86 }
87
88static const char colorcodes[2][2][8][10] = {
89 { ALLCOLORS("3",""), ALLCOLORS("3","1;") },
90 { ALLCOLORS("4",""), ALLCOLORS("4","1;") }
91};
92
Reid Spencer566ac282004-09-11 04:59:30 +000093// Include the platform-specific parts of this class.
Reid Spencer97d4a172004-12-27 06:15:29 +000094#ifdef LLVM_ON_UNIX
Reid Spencerc892a0d2005-01-09 23:29:00 +000095#include "Unix/Process.inc"
Reid Spencer97d4a172004-12-27 06:15:29 +000096#endif
97#ifdef LLVM_ON_WIN32
Michael J. Spencer447762d2010-11-29 18:16:10 +000098#include "Windows/Process.inc"
Reid Spencer97d4a172004-12-27 06:15:29 +000099#endif