Fix comments.
[oota-llvm.git] / lib / System / Win32 / Process.inc
1 //===- Win32/Process.cpp - Win32 Process Implementation ------- -*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides the Win32 specific implementation of the Process class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "Win32.h"
15 #include <psapi.h>
16 #include <malloc.h>
17 #include <io.h>
18
19 #ifdef __MINGW32__
20  #if (HAVE_LIBPSAPI != 1)
21   #error "libpsapi.a should be present"
22  #endif
23 #else
24  #pragma comment(lib, "psapi.lib")
25 #endif
26
27 //===----------------------------------------------------------------------===//
28 //=== WARNING: Implementation here must contain only Win32 specific code 
29 //===          and must not be UNIX code
30 //===----------------------------------------------------------------------===//
31
32 #ifdef __MINGW32__
33 // This ban should be lifted when MinGW 1.0+ has defined this value.
34 #  define _HEAPOK (-2)
35 #endif
36
37 namespace llvm {
38 using namespace sys;
39
40 // This function retrieves the page size using GetSystemInfo and is present
41 // solely so it can be called once in Process::GetPageSize to initialize the
42 // static variable PageSize.
43 inline unsigned GetPageSizeOnce() {
44   // NOTE: A 32-bit application running under WOW64 is supposed to use
45   // GetNativeSystemInfo.  However, this interface is not present prior
46   // to Windows XP so to use it requires dynamic linking.  It is not clear
47   // how this affects the reported page size, if at all.  One could argue
48   // that LLVM ought to run as 64-bits on a 64-bit system, anyway.
49   SYSTEM_INFO info;
50   GetSystemInfo(&info);
51   return static_cast<unsigned>(info.dwPageSize);
52 }
53
54 unsigned 
55 Process::GetPageSize() {
56   static const unsigned PageSize = GetPageSizeOnce();
57   return PageSize;
58 }
59
60 size_t 
61 Process::GetMallocUsage()
62 {
63   _HEAPINFO hinfo;
64   hinfo._pentry = NULL;
65
66   size_t size = 0;
67
68   while (_heapwalk(&hinfo) == _HEAPOK)
69     size += hinfo._size;
70
71   return size;
72 }
73
74 size_t
75 Process::GetTotalMemoryUsage()
76 {
77   PROCESS_MEMORY_COUNTERS pmc;
78   GetProcessMemoryInfo(GetCurrentProcess(), &pmc, sizeof(pmc));
79   return pmc.PagefileUsage;
80 }
81
82 void
83 Process::GetTimeUsage(
84   TimeValue& elapsed, TimeValue& user_time, TimeValue& sys_time)
85 {
86   elapsed = TimeValue::now();
87
88   uint64_t ProcCreate, ProcExit, KernelTime, UserTime;
89   GetProcessTimes(GetCurrentProcess(), (FILETIME*)&ProcCreate, 
90                   (FILETIME*)&ProcExit, (FILETIME*)&KernelTime,
91                   (FILETIME*)&UserTime);
92
93   // FILETIME's are # of 100 nanosecond ticks (1/10th of a microsecond)
94   user_time.seconds( UserTime / 10000000 );
95   user_time.nanoseconds( unsigned(UserTime % 10000000) * 100 );
96   sys_time.seconds( KernelTime / 10000000 );
97   sys_time.nanoseconds( unsigned(KernelTime % 10000000) * 100 );
98 }
99
100 int Process::GetCurrentUserId()
101 {
102   return 65536;
103 }
104
105 int Process::GetCurrentGroupId()
106 {
107   return 65536;
108 }
109
110 // Some LLVM programs such as bugpoint produce core files as a normal part of
111 // their operation. To prevent the disk from filling up, this configuration item
112 // does what's necessary to prevent their generation.
113 void Process::PreventCoreFiles() {
114   // Windows doesn't do core files, but it does do modal pop-up message
115   // boxes.  As this method is used by bugpoint, preventing these pop-ups
116   // is the moral equivalent of suppressing core files.
117   SetErrorMode(SEM_FAILCRITICALERRORS |
118                SEM_NOGPFAULTERRORBOX |
119                SEM_NOOPENFILEERRORBOX);
120 }
121
122 bool Process::StandardInIsUserInput() {
123   return GetFileType((HANDLE)_get_osfhandle(0)) == FILE_TYPE_CHAR;
124 }
125
126 bool Process::StandardOutIsDisplayed() {
127   return GetFileType((HANDLE)_get_osfhandle(1)) == FILE_TYPE_CHAR;
128 }
129
130 bool Process::StandardErrIsDisplayed() {
131   return GetFileType((HANDLE)_get_osfhandle(2)) == FILE_TYPE_CHAR;
132 }
133
134 unsigned Process::StandardOutColumns() {
135   unsigned Columns = 0;
136   CONSOLE_SCREEN_BUFFER_INFO csbi;
137   if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
138     Columns = csbi.dwSize.X;
139   return Columns;
140 }
141
142 unsigned Process::StandardErrColumns() {
143   unsigned Columns = 0;
144   CONSOLE_SCREEN_BUFFER_INFO csbi;
145   if (GetConsoleScreenBufferInfo(GetStdHandle(STD_ERROR_HANDLE), &csbi))
146     Columns = csbi.dwSize.X;
147   return Columns;
148 }
149
150 // It always has colors.
151 bool Process::StandardErrHasColors() {
152   return StandardErrIsDisplayed();
153 }
154
155 bool Process::StandardOutHasColors() {
156   return StandardOutIsDisplayed();
157 }
158
159 namespace {
160 class DefaultColors
161 {
162   private:
163     WORD defaultColor;
164   public:
165     DefaultColors()
166      :defaultColor(GetCurrentColor()) {}
167     static unsigned GetCurrentColor() {
168       CONSOLE_SCREEN_BUFFER_INFO csbi;
169       if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
170         return csbi.wAttributes;
171       return 0;
172     }
173     WORD operator()() const { return defaultColor; }
174 };
175
176 DefaultColors defaultColors;
177 }
178
179 bool Process::ColorNeedsFlush() {
180   return true;
181 }
182
183 const char *Process::OutputBold(bool bg) {
184   WORD colors = DefaultColors::GetCurrentColor();
185   if (bg)
186     colors |= BACKGROUND_INTENSITY;
187   else
188     colors |= FOREGROUND_INTENSITY;
189   SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colors);
190   return 0;
191 }
192
193 const char *Process::OutputColor(char code, bool bold, bool bg) {
194   WORD colors;
195   if (bg) {
196     colors = ((code&1) ? BACKGROUND_RED : 0) |
197       ((code&2) ? BACKGROUND_GREEN : 0 ) |
198       ((code&4) ? BACKGROUND_BLUE : 0);
199     if (bold)
200       colors |= BACKGROUND_INTENSITY;
201   } else {
202     colors = ((code&1) ? FOREGROUND_RED : 0) |
203       ((code&2) ? FOREGROUND_GREEN : 0 ) |
204       ((code&4) ? FOREGROUND_BLUE : 0);
205     if (bold)
206       colors |= FOREGROUND_INTENSITY;
207   }
208   SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colors);
209   return 0;
210 }
211
212 const char *Process::ResetColor() {
213   SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), defaultColors());
214   return 0;
215 }
216
217 }