2009-06-02 17:52:33 +00:00
|
|
|
//===-- Program.cpp - Implement OS Program Concept --------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2014-11-24 09:08:18 +00:00
|
|
|
// This file implements the operating system Program concept.
|
2009-06-02 17:52:33 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "llvm/Support/Program.h"
|
2015-05-27 18:44:32 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include <system_error>
|
2010-05-04 16:11:02 +00:00
|
|
|
using namespace llvm;
|
2009-06-02 17:52:33 +00:00
|
|
|
using namespace sys;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only TRULY operating system
|
|
|
|
//=== independent code.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
static bool Execute(ProcessInfo &PI, StringRef Program, const char **args,
|
|
|
|
const char **env, const StringRef **Redirects,
|
|
|
|
unsigned memoryLimit, std::string *ErrMsg);
|
|
|
|
|
|
|
|
int sys::ExecuteAndWait(StringRef Program, const char **args, const char **envp,
|
|
|
|
const StringRef **redirects, unsigned secondsToWait,
|
|
|
|
unsigned memoryLimit, std::string *ErrMsg,
|
2013-04-08 18:41:23 +00:00
|
|
|
bool *ExecutionFailed) {
|
2013-12-22 00:04:03 +00:00
|
|
|
ProcessInfo PI;
|
|
|
|
if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
|
|
|
|
if (ExecutionFailed)
|
|
|
|
*ExecutionFailed = false;
|
2014-11-24 09:08:18 +00:00
|
|
|
ProcessInfo Result = Wait(
|
|
|
|
PI, secondsToWait, /*WaitUntilTerminates=*/secondsToWait == 0, ErrMsg);
|
2013-12-22 00:04:03 +00:00
|
|
|
return Result.ReturnCode;
|
2013-04-08 18:41:23 +00:00
|
|
|
}
|
2013-12-22 00:04:03 +00:00
|
|
|
|
|
|
|
if (ExecutionFailed)
|
|
|
|
*ExecutionFailed = true;
|
|
|
|
|
2013-04-08 18:41:23 +00:00
|
|
|
return -1;
|
2009-10-14 17:57:32 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
ProcessInfo sys::ExecuteNoWait(StringRef Program, const char **args,
|
|
|
|
const char **envp, const StringRef **redirects,
|
|
|
|
unsigned memoryLimit, std::string *ErrMsg,
|
|
|
|
bool *ExecutionFailed) {
|
|
|
|
ProcessInfo PI;
|
|
|
|
if (ExecutionFailed)
|
|
|
|
*ExecutionFailed = false;
|
|
|
|
if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
|
|
|
|
if (ExecutionFailed)
|
|
|
|
*ExecutionFailed = true;
|
|
|
|
|
|
|
|
return PI;
|
2009-10-14 17:57:32 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:52:33 +00:00
|
|
|
// Include the platform-specific parts of this class.
|
|
|
|
#ifdef LLVM_ON_UNIX
|
|
|
|
#include "Unix/Program.inc"
|
|
|
|
#endif
|
|
|
|
#ifdef LLVM_ON_WIN32
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "Windows/Program.inc"
|
2009-06-02 17:52:33 +00:00
|
|
|
#endif
|