Begin sketching out the process interface.
[oota-llvm.git] / include / llvm / Support / Process.h
1 //===- llvm/Support/Process.h -----------------------------------*- 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 /// \file
10 ///
11 /// Provides a library for accessing information about this process and other
12 /// processes on the operating system. Also provides means of spawning
13 /// subprocess for commands. The design of this library is modeled after the
14 /// proposed design of the Boost.Process library, and is design specifically to
15 /// follow the style of standard libraries and potentially become a proposal
16 /// for a standard library.
17 ///
18 /// This file declares the llvm::sys::Process class which contains a collection
19 /// of legacy static interfaces for extracting various information about the
20 /// current process. The goal is to migrate users of this API over to the new
21 /// interfaces.
22 ///
23 //===----------------------------------------------------------------------===//
24
25 #ifndef LLVM_SYSTEM_PROCESS_H
26 #define LLVM_SYSTEM_PROCESS_H
27
28 #include "llvm/Config/llvm-config.h"
29 #include "llvm/Support/DataTypes.h"
30 #include "llvm/Support/TimeValue.h"
31
32 namespace llvm {
33 namespace sys {
34
35 class self_process;
36
37 /// \brief Generic base class which exposes information about an operating
38 /// system process.
39 ///
40 /// This base class is the core interface behind any OS process. It exposes
41 /// methods to query for generic information about a particular process.
42 ///
43 /// Subclasses implement this interface based on the mechanisms available, and
44 /// can optionally expose more interfaces unique to certain process kinds.
45 class process {
46 protected:
47   /// \brief Only specific subclasses of process objects can be destroyed.
48   virtual ~process();
49
50 public:
51   /// \brief Operating system specific type to identify a process.
52   ///
53   /// Note that the windows one is defined to 'void *' as this is the
54   /// documented type for HANDLE on windows, and we don't want to pull in the
55   /// Windows headers here.
56 #if defined(LLVM_ON_UNIX)
57   typedef pid_t id_type;
58 #elif defined(LLVM_ON_WIN32)
59   typedef void *id_type; // Must match the type of HANDLE.
60 #else
61 #error Unsupported operating system.
62 #endif
63
64   /// \brief Get the operating system specific identifier for this process.
65   virtual id_type get_id() = 0;
66
67
68   /// \name Static factory routines for processes.
69   /// @{
70
71   /// \brief Get the process object for the current process.
72   static self_process *get_self();
73
74   /// @}
75
76 };
77
78 /// \brief The specific class representing the current process.
79 ///
80 /// The current process can both specialize the implementation of the routines
81 /// and can expose certain information not available for other OS processes.
82 class self_process : public process {
83   friend class process;
84
85   /// \brief Private destructor, as users shouldn't create objects of this
86   /// type.
87   virtual ~self_process();
88
89 public:
90   virtual id_type get_id();
91
92 private:
93 };
94
95
96 /// \brief A collection of legacy interfaces for querying information about the
97 /// current executing process.
98 class Process {
99 public:
100   /// \brief Get the virtual memory page size
101   /// This static function will return the operating system's virtual memory
102   /// page size.
103   /// \returns The number of bytes in a virtual memory page.
104   static unsigned GetPageSize();
105
106   /// \brief Return process memory usage.
107   /// This static function will return the total amount of memory allocated
108   /// by the process. This only counts the memory allocated via the malloc,
109   /// calloc and realloc functions and includes any "free" holes in the
110   /// allocated space.
111   static size_t GetMallocUsage();
112
113   /// This static function will return the total memory usage of the
114   /// process. This includes code, data, stack and mapped pages usage. Notei
115   /// that the value returned here is not necessarily the Running Set Size,
116   /// it is the total virtual memory usage, regardless of mapped state of
117   /// that memory.
118   static size_t GetTotalMemoryUsage();
119
120   /// This static function will set \p user_time to the amount of CPU time
121   /// spent in user (non-kernel) mode and \p sys_time to the amount of CPU
122   /// time spent in system (kernel) mode.  If the operating system does not
123   /// support collection of these metrics, a zero TimeValue will be for both
124   /// values.
125   /// \param elapsed Returns the TimeValue::now() giving current time
126   /// \param user_time Returns the current amount of user time for the process
127   /// \param sys_time Returns the current amount of system time for the process
128   static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
129                            TimeValue &sys_time);
130
131   /// This static function will return the process' current user id number.
132   /// Not all operating systems support this feature. Where it is not
133   /// supported, the function should return 65536 as the value.
134   static int GetCurrentUserId();
135
136   /// This static function will return the process' current group id number.
137   /// Not all operating systems support this feature. Where it is not
138   /// supported, the function should return 65536 as the value.
139   static int GetCurrentGroupId();
140
141   /// This function makes the necessary calls to the operating system to
142   /// prevent core files or any other kind of large memory dumps that can
143   /// occur when a program fails.
144   /// @brief Prevent core file generation.
145   static void PreventCoreFiles();
146
147   /// This function determines if the standard input is connected directly
148   /// to a user's input (keyboard probably), rather than coming from a file
149   /// or pipe.
150   static bool StandardInIsUserInput();
151
152   /// This function determines if the standard output is connected to a
153   /// "tty" or "console" window. That is, the output would be displayed to
154   /// the user rather than being put on a pipe or stored in a file.
155   static bool StandardOutIsDisplayed();
156
157   /// This function determines if the standard error is connected to a
158   /// "tty" or "console" window. That is, the output would be displayed to
159   /// the user rather than being put on a pipe or stored in a file.
160   static bool StandardErrIsDisplayed();
161
162   /// This function determines if the given file descriptor is connected to
163   /// a "tty" or "console" window. That is, the output would be displayed to
164   /// the user rather than being put on a pipe or stored in a file.
165   static bool FileDescriptorIsDisplayed(int fd);
166
167   /// This function determines if the given file descriptor is displayd and
168   /// supports colors.
169   static bool FileDescriptorHasColors(int fd);
170
171   /// This function determines the number of columns in the window
172   /// if standard output is connected to a "tty" or "console"
173   /// window. If standard output is not connected to a tty or
174   /// console, or if the number of columns cannot be determined,
175   /// this routine returns zero.
176   static unsigned StandardOutColumns();
177
178   /// This function determines the number of columns in the window
179   /// if standard error is connected to a "tty" or "console"
180   /// window. If standard error is not connected to a tty or
181   /// console, or if the number of columns cannot be determined,
182   /// this routine returns zero.
183   static unsigned StandardErrColumns();
184
185   /// This function determines whether the terminal connected to standard
186   /// output supports colors. If standard output is not connected to a
187   /// terminal, this function returns false.
188   static bool StandardOutHasColors();
189
190   /// This function determines whether the terminal connected to standard
191   /// error supports colors. If standard error is not connected to a
192   /// terminal, this function returns false.
193   static bool StandardErrHasColors();
194
195   /// Whether changing colors requires the output to be flushed.
196   /// This is needed on systems that don't support escape sequences for
197   /// changing colors.
198   static bool ColorNeedsFlush();
199
200   /// This function returns the colorcode escape sequences.
201   /// If ColorNeedsFlush() is true then this function will change the colors
202   /// and return an empty escape sequence. In that case it is the
203   /// responsibility of the client to flush the output stream prior to
204   /// calling this function.
205   static const char *OutputColor(char c, bool bold, bool bg);
206
207   /// Same as OutputColor, but only enables the bold attribute.
208   static const char *OutputBold(bool bg);
209
210   /// This function returns the escape sequence to reverse forground and
211   /// background colors.
212   static const char *OutputReverse();
213
214   /// Resets the terminals colors, or returns an escape sequence to do so.
215   static const char *ResetColor();
216
217   /// Get the result of a process wide random number generator. The
218   /// generator will be automatically seeded in non-deterministic fashion.
219   static unsigned GetRandomNumber();
220 };
221
222 }
223 }
224
225 #endif