blob: 01c8189723bf13054fece9e5a2f80506726029dc [file] [log] [blame]
Chris Lattner555eaf52003-09-30 18:37:50 +00001//===- SystemUtils.h - Utilities to do low-level system stuff ---*- C++ -*-===//
Chris Lattnerde4aa4c2002-12-23 23:50:16 +00002//
3// This file contains functions used to do a variety of low-level, often
4// system-specific, tasks.
5//
6//===----------------------------------------------------------------------===//
7
8#ifndef SYSTEMUTILS_H
9#define SYSTEMUTILS_H
10
11#include <string>
12
13/// isExecutableFile - This function returns true if the filename specified
14/// exists and is executable.
15///
16bool isExecutableFile(const std::string &ExeFileName);
17
Misha Brukmanb02e4132003-08-07 21:33:33 +000018/// FindExecutable - Find a named executable, giving the argv[0] of program
19/// being executed. This allows us to find another LLVM tool if it is built into
20/// the same directory, but that directory is neither the current directory, nor
21/// in the PATH. If the executable cannot be found, return an empty string.
22///
Chris Lattnerde4aa4c2002-12-23 23:50:16 +000023std::string FindExecutable(const std::string &ExeName,
Misha Brukman3c1d88a2003-09-29 22:37:57 +000024 const std::string &ProgramPath);
Chris Lattnerde4aa4c2002-12-23 23:50:16 +000025
Chris Lattnerde4aa4c2002-12-23 23:50:16 +000026/// RunProgramWithTimeout - This function executes the specified program, with
27/// the specified null-terminated argument array, with the stdin/out/err fd's
28/// redirected, with a timeout specified on the commandline. This terminates
29/// the calling program if there is an error executing the specified program.
30/// It returns the return value of the program, or -1 if a timeout is detected.
31///
32int RunProgramWithTimeout(const std::string &ProgramPath, const char **Args,
Misha Brukman3c1d88a2003-09-29 22:37:57 +000033 const std::string &StdInFile = "",
34 const std::string &StdOutFile = "",
35 const std::string &StdErrFile = "");
Chris Lattnerde4aa4c2002-12-23 23:50:16 +000036
Misha Brukman3c1d88a2003-09-29 22:37:57 +000037/// ExecWait - Execute a program with the given arguments and environment and
38/// wait for it to terminate.
John Criswellf13ec352003-09-17 15:14:25 +000039///
John Criswell74c89472003-09-17 19:02:49 +000040int ExecWait (const char * const argv[], const char * const envp[]);
Chris Lattnerde4aa4c2002-12-23 23:50:16 +000041#endif