For PR351:
[oota-llvm.git] / include / llvm / Support / FileUtilities.h
1 //===- llvm/Support/FileUtilities.h - File System Utilities -----*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines a family of utility functions which are useful for doing
11 // various things with files.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_SUPPORT_FILEUTILITIES_H
16 #define LLVM_SUPPORT_FILEUTILITIES_H
17
18 #include <string>
19
20 namespace llvm {
21
22 /// DiffFiles - Compare the two files specified, returning true if they are
23 /// different or if there is a file error.  If you specify a string to fill in
24 /// for the error option, it will set the string to an error message if an error
25 /// occurs, allowing the caller to distinguish between a failed diff and a file
26 /// system error.
27 ///
28 bool DiffFiles(const std::string &FileA, const std::string &FileB,
29                std::string *Error = 0);
30
31 /// CopyFile - Copy the specified source file to the specified destination,
32 /// overwriting destination if it exists.  This returns true on failure.
33 ///
34 bool CopyFile(const std::string &Dest, const std::string &Src);
35
36 /// MoveFileOverIfUpdated - If the file specified by New is different than Old,
37 /// or if Old does not exist, move the New file over the Old file.  Otherwise,
38 /// remove the New file.
39 ///
40 void MoveFileOverIfUpdated(const std::string &New, const std::string &Old);
41  
42 /// removeFile - Delete the specified file.
43 ///
44 void removeFile(const std::string &Filename);
45
46 /// getUniqueFilename - Return a filename with the specified prefix.  If the
47 /// file does not exist yet, return it, otherwise add a suffix to make it
48 /// unique.
49 ///
50 std::string getUniqueFilename(const std::string &FilenameBase);
51
52 /// FDHandle - Simple handle class to make sure a file descriptor gets closed
53 /// when the object is destroyed.  This handle acts similarly to an
54 /// std::auto_ptr, in that the copy constructor and assignment operators
55 /// transfer ownership of the handle.  This means that FDHandle's do not have
56 /// value semantics.
57 ///
58 class FDHandle {
59   int FD;
60 public:
61   FDHandle() : FD(-1) {}
62   FDHandle(int fd) : FD(fd) {}
63   FDHandle(FDHandle &RHS) : FD(RHS.FD) {
64     RHS.FD = -1;       // Transfer ownership
65   }
66
67   ~FDHandle() throw();
68
69   /// get - Get the current file descriptor, without releasing ownership of it.
70   int get() const { return FD; }
71   operator int() const { return FD; }
72
73   FDHandle &operator=(int fd) throw();
74
75   FDHandle &operator=(FDHandle &RHS) {
76     int fd = RHS.FD;
77     RHS.FD = -1;       // Transfer ownership
78     return operator=(fd);
79   }
80
81   /// release - Take ownership of the file descriptor away from the FDHandle
82   /// object, so that the file is not closed when the FDHandle is destroyed.
83   int release() {
84     int Ret = FD;
85     FD = -1;
86     return Ret;
87   }
88 };
89
90   /// FileRemover - This class is a simple object meant to be stack allocated.
91   /// If an exception is thrown from a region, the object removes the filename
92   /// specified (if deleteIt is true).
93   ///
94   class FileRemover {
95     std::string Filename;
96     bool DeleteIt;
97   public:
98     FileRemover(const std::string &filename, bool deleteIt = true)
99       : Filename(filename), DeleteIt(deleteIt) {}
100     
101     ~FileRemover() {
102       if (DeleteIt) removeFile(Filename);
103     }
104
105     /// releaseFile - Take ownership of the file away from the FileRemover so it
106     /// will not be removed when the object is destroyed.
107     void releaseFile() { DeleteIt = false; }
108   };
109 } // End llvm namespace
110
111 #endif