1 //===- ToolOutputFile.h - Output files for compiler-like tools -----------===// 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 defines the tool_output_file class. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef LLVM_SUPPORT_TOOL_OUTPUT_FILE_H 15 #define LLVM_SUPPORT_TOOL_OUTPUT_FILE_H 16 17 #include "llvm/Support/raw_ostream.h" 18 19 namespace llvm { 20 21 /// tool_output_file - This class contains a raw_fd_ostream and adds a 22 /// few extra features commonly needed for compiler-like tool output files: 23 /// - The file is automatically deleted if the process is killed. 24 /// - The file is automatically deleted when the tool_output_file 25 /// object is destroyed unless the client calls keep(). 26 class tool_output_file { 27 /// Installer - This class is declared before the raw_fd_ostream so that 28 /// it is constructed before the raw_fd_ostream is constructed and 29 /// destructed after the raw_fd_ostream is destructed. It installs 30 /// cleanups in its constructor and uninstalls them in its destructor. 31 class CleanupInstaller { 32 /// Filename - The name of the file. 33 std::string Filename; 34 public: 35 /// Keep - The flag which indicates whether we should not delete the file. 36 bool Keep; 37 38 explicit CleanupInstaller(const char *filename); 39 ~CleanupInstaller(); 40 } Installer; 41 42 /// OS - The contained stream. This is intentionally declared after 43 /// Installer. 44 raw_fd_ostream OS; 45 46 public: 47 /// tool_output_file - This constructor's arguments are passed to 48 /// to raw_fd_ostream's constructor. 49 tool_output_file(const char *filename, std::string &ErrorInfo, 50 unsigned Flags = 0); 51 52 /// os - Return the contained raw_fd_ostream. 53 raw_fd_ostream &os() { return OS; } 54 55 /// keep - Indicate that the tool's job wrt this output file has been 56 /// successful and the file should not be deleted. 57 void keep() { Installer.Keep = true; } 58 }; 59 60 } // end llvm namespace 61 62 #endif 63