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 /// MakeFileExecutable - This method turns on whatever access attributes are
53 /// needed to make the specified file executable.  It returns true on success.
54 /// In case of failure, the file's access attributes are unspecified.
55 ///
56 bool MakeFileExecutable(const std::string &Filename);
57
58 /// MakeFileReadable - This method turns on whatever access attributes are
59 /// needed to make the specified file readable.  It returns true on success.
60 /// In case of failure, the file's access attributes are unspecified.
61 ///
62 bool MakeFileReadable(const std::string &Filename);
63
64 /// FDHandle - Simple handle class to make sure a file descriptor gets closed
65 /// when the object is destroyed.  This handle acts similarly to an
66 /// std::auto_ptr, in that the copy constructor and assignment operators
67 /// transfer ownership of the handle.  This means that FDHandle's do not have
68 /// value semantics.
69 ///
70 class FDHandle {
71   int FD;
72 public:
73   FDHandle() : FD(-1) {}
74   FDHandle(int fd) : FD(fd) {}
75   FDHandle(FDHandle &RHS) : FD(RHS.FD) {
76     RHS.FD = -1;       // Transfer ownership
77   }
78
79   ~FDHandle() throw();
80
81   /// get - Get the current file descriptor, without releasing ownership of it.
82   int get() const { return FD; }
83   operator int() const { return FD; }
84
85   FDHandle &operator=(int fd) throw();
86
87   FDHandle &operator=(FDHandle &RHS) {
88     int fd = RHS.FD;
89     RHS.FD = -1;       // Transfer ownership
90     return operator=(fd);
91   }
92
93   /// release - Take ownership of the file descriptor away from the FDHandle
94   /// object, so that the file is not closed when the FDHandle is destroyed.
95   int release() {
96     int Ret = FD;
97     FD = -1;
98     return Ret;
99   }
100 };
101
102   /// FileRemover - This class is a simple object meant to be stack allocated.
103   /// If an exception is thrown from a region, the object removes the filename
104   /// specified (if deleteIt is true).
105   ///
106   class FileRemover {
107     std::string Filename;
108     bool DeleteIt;
109   public:
110     FileRemover(const std::string &filename, bool deleteIt = true)
111       : Filename(filename), DeleteIt(deleteIt) {}
112     
113     ~FileRemover() {
114       if (DeleteIt) removeFile(Filename);
115     }
116
117     /// releaseFile - Take ownership of the file away from the FileRemover so it
118     /// will not be removed when the object is destroyed.
119     void releaseFile() { DeleteIt = false; }
120   };
121 } // End llvm namespace
122
123 #endif