add new function
[oota-llvm.git] / include / llvm / Support / FileUtilities.h
1 //===- 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 SUPPORT_FILEUTILITIES_H
16 #define SUPPORT_FILEUTILITIES_H
17
18 #include <string>
19
20 namespace llvm {
21
22 /// CheckMagic - Returns true IFF the file named FN begins with Magic. FN must
23 /// name a readable file.
24 ///
25 bool CheckMagic (const std::string &FN, const std::string &Magic);
26
27 /// IsArchive - Returns true IFF the file named FN appears to be a "ar" library
28 /// archive. The file named FN must exist.
29 ///
30 bool IsArchive (const std::string &FN);
31
32 /// IsBytecode - Returns true IFF the file named FN appears to be an LLVM
33 /// bytecode file. The file named FN must exist.
34 ///
35 bool IsBytecode (const std::string &FN);
36
37 /// IsSharedObject - Returns trus IFF the file named FN appears to be a shared
38 /// object with an ELF header. The file named FN must exist.
39 ///
40 bool IsSharedObject(const std::string &FN);
41
42 /// FileOpenable - Returns true IFF Filename names an existing regular file
43 /// which we can successfully open.
44 ///
45 bool FileOpenable (const std::string &Filename);
46
47 /// DiffFiles - Compare the two files specified, returning true if they are
48 /// different or if there is a file error.  If you specify a string to fill in
49 /// for the error option, it will set the string to an error message if an error
50 /// occurs, allowing the caller to distinguish between a failed diff and a file
51 /// system error.
52 ///
53 bool DiffFiles(const std::string &FileA, const std::string &FileB,
54                std::string *Error = 0);
55
56
57 /// MoveFileOverIfUpdated - If the file specified by New is different than Old,
58 /// or if Old does not exist, move the New file over the Old file.  Otherwise,
59 /// remove the New file.
60 ///
61 void MoveFileOverIfUpdated(const std::string &New, const std::string &Old);
62  
63 /// removeFile - Delete the specified file
64 ///
65 void removeFile(const std::string &Filename);
66
67 /// getUniqueFilename - Return a filename with the specified prefix.  If the
68 /// file does not exist yet, return it, otherwise add a suffix to make it
69 /// unique.
70 ///
71 std::string getUniqueFilename(const std::string &FilenameBase);
72
73 /// MakeFileExecutable - This method turns on whatever access attributes are
74 /// needed to make the specified file executable.  It returns true on success.
75 /// In case of failure, the file's access attributes are unspecified.
76 ///
77 bool MakeFileExecutable(const std::string &Filename);
78
79 /// MakeFileReadable - This method turns on whatever access attributes are
80 /// needed to make the specified file readable.  It returns true on success.
81 /// In case of failure, the file's access attributes are unspecified.
82 ///
83 bool MakeFileReadable(const std::string &Filename);
84
85 /// getFileSize - Return the size of the specified file in bytes, or -1 if the
86 /// file cannot be read or does not exist.
87 long long getFileSize(const std::string &Filename);
88
89
90 /// getFileTimestamp - Get the last modified time for the specified file in an
91 /// unspecified format.  This is useful to allow checking to see if a file was
92 /// updated since that last time the timestampt was aquired.  If the file does
93 /// not exist or there is an error getting the time-stamp, zero is returned.
94 unsigned long long getFileTimestamp(const std::string &Filename);
95
96
97 /// FDHandle - Simple handle class to make sure a file descriptor gets closed
98 /// when the object is destroyed.  This handle acts similarly to an
99 /// std::auto_ptr, in that the copy constructor and assignment operators
100 /// transfer ownership of the handle.  This means that FDHandle's do not have
101 /// value semantics.
102 ///
103 class FDHandle {
104   int FD;
105 public:
106   FDHandle() : FD(-1) {}
107   FDHandle(int fd) : FD(fd) {}
108   FDHandle(FDHandle &RHS) : FD(RHS.FD) {
109     RHS.FD = -1;       // Transfer ownership
110   }
111
112   ~FDHandle() throw();
113
114   /// get - Get the current file descriptor, without releasing ownership of it.
115   int get() const { return FD; }
116   operator int() const { return FD; }
117
118   FDHandle &operator=(int fd) throw();
119
120   FDHandle &operator=(FDHandle &RHS) {
121     int fd = RHS.FD;
122     RHS.FD = -1;       // Transfer ownership
123     return operator=(fd);
124   }
125
126   /// release - Take ownership of the file descriptor away from the FDHandle
127   /// object, so that the file is not closed when the FDHandle is destroyed.
128   int release() {
129     int Ret = FD;
130     FD = -1;
131     return Ret;
132   }
133 };
134 } // End llvm namespace
135
136 #endif