2010-10-07 20:32:40 +00:00
|
|
|
//===--- ToolOutputFile.cpp - Implement the tool_output_file class --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This implements the tool_output_file class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2013-06-17 20:37:56 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2010-10-07 20:32:40 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
tool_output_file::CleanupInstaller::CleanupInstaller(const char *filename)
|
|
|
|
: Filename(filename), Keep(false) {
|
|
|
|
// Arrange for the file to be deleted if the process is killed.
|
|
|
|
if (Filename != "-")
|
2013-06-13 21:16:58 +00:00
|
|
|
sys::RemoveFileOnSignal(Filename);
|
2010-10-07 20:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tool_output_file::CleanupInstaller::~CleanupInstaller() {
|
|
|
|
// Delete the file if the client hasn't told us not to.
|
2014-01-10 21:40:29 +00:00
|
|
|
if (!Keep && Filename != "-")
|
|
|
|
sys::fs::remove(Filename);
|
2010-10-07 20:32:40 +00:00
|
|
|
|
|
|
|
// Ok, the file is successfully written and closed, or deleted. There's no
|
|
|
|
// further need to clean it up on signals.
|
|
|
|
if (Filename != "-")
|
2013-06-13 21:16:58 +00:00
|
|
|
sys::DontRemoveFileOnSignal(Filename);
|
2010-10-07 20:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tool_output_file::tool_output_file(const char *filename, std::string &ErrorInfo,
|
2013-07-16 19:44:17 +00:00
|
|
|
sys::fs::OpenFlags Flags)
|
|
|
|
: Installer(filename), OS(filename, ErrorInfo, Flags) {
|
2010-10-07 20:32:40 +00:00
|
|
|
// If open fails, no cleanup is needed.
|
|
|
|
if (!ErrorInfo.empty())
|
|
|
|
Installer.Keep = true;
|
|
|
|
}
|
2013-06-17 18:05:35 +00:00
|
|
|
|
|
|
|
tool_output_file::tool_output_file(const char *Filename, int FD)
|
|
|
|
: Installer(Filename), OS(FD, true) {
|
|
|
|
}
|