blob: ed594db96eaea9c0e00399d686f034f9e82da373 [file] [log] [blame]
Chris Lattner7a6ff2b2003-08-01 21:16:14 +00001//===- Support/FileUtilities.cpp - File System Utilities ------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner7a6ff2b2003-08-01 21:16:14 +00009//
10// This file implements a family of utility functions which are useful for doing
11// various things with files.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Support/FileUtilities.h"
Misha Brukmanda81eca2003-08-07 21:35:41 +000016#include "Config/unistd.h"
Chris Lattnereb082992004-05-28 00:23:48 +000017#include "Config/fcntl.h"
John Criswell6991a032003-09-02 20:14:57 +000018#include "Config/sys/stat.h"
19#include "Config/sys/types.h"
Chris Lattnereb082992004-05-28 00:23:48 +000020#include "Config/sys/mman.h"
Chris Lattner7a6ff2b2003-08-01 21:16:14 +000021#include <fstream>
22#include <iostream>
23#include <cstdio>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000024using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000025
Brian Gaekea2302ff2003-11-11 21:53:50 +000026/// CheckMagic - Returns true IFF the file named FN begins with Magic. FN must
27/// name a readable file.
28///
Chris Lattner2cdd21c2003-12-14 21:35:53 +000029bool llvm::CheckMagic(const std::string &FN, const std::string &Magic) {
Brian Gaekea2302ff2003-11-11 21:53:50 +000030 char buf[1 + Magic.size ()];
31 std::ifstream f (FN.c_str ());
32 f.read (buf, Magic.size ());
33 buf[Magic.size ()] = '\0';
34 return Magic == buf;
35}
36
37/// IsArchive - Returns true IFF the file named FN appears to be a "ar" library
38/// archive. The file named FN must exist.
39///
Chris Lattner2cdd21c2003-12-14 21:35:53 +000040bool llvm::IsArchive(const std::string &FN) {
Brian Gaekea2302ff2003-11-11 21:53:50 +000041 // Inspect the beginning of the file to see if it contains the "ar"
42 // library archive format magic string.
43 return CheckMagic (FN, "!<arch>\012");
44}
45
46/// IsBytecode - Returns true IFF the file named FN appears to be an LLVM
47/// bytecode file. The file named FN must exist.
48///
Chris Lattner2cdd21c2003-12-14 21:35:53 +000049bool llvm::IsBytecode(const std::string &FN) {
Brian Gaekea2302ff2003-11-11 21:53:50 +000050 // Inspect the beginning of the file to see if it contains the LLVM
51 // bytecode format magic string.
52 return CheckMagic (FN, "llvm");
53}
54
Misha Brukman17cca962003-11-24 05:28:12 +000055/// IsSharedObject - Returns trus IFF the file named FN appears to be a shared
56/// object with an ELF header. The file named FN must exist.
57///
Chris Lattner2cdd21c2003-12-14 21:35:53 +000058bool llvm::IsSharedObject(const std::string &FN) {
Misha Brukman971a7b82003-11-24 05:36:38 +000059 // Inspect the beginning of the file to see if it contains the ELF shared
60 // object magic string.
Misha Brukman17cca962003-11-24 05:28:12 +000061 static const char elfMagic[] = { 0x7f, 'E', 'L', 'F', '\0' };
62 return CheckMagic(FN, elfMagic);
63}
64
Brian Gaeke56be7ff2003-11-11 18:27:21 +000065/// FileOpenable - Returns true IFF Filename names an existing regular
66/// file which we can successfully open.
67///
Chris Lattner2cdd21c2003-12-14 21:35:53 +000068bool llvm::FileOpenable(const std::string &Filename) {
Brian Gaeke56be7ff2003-11-11 18:27:21 +000069 struct stat s;
70 if (stat (Filename.c_str (), &s) == -1)
71 return false; // Cannot stat file
72 if (!S_ISREG (s.st_mode))
73 return false; // File is not a regular file
74 std::ifstream FileStream (Filename.c_str ());
75 if (!FileStream)
76 return false; // File is not openable
77 return true;
78}
79
Chris Lattner7a6ff2b2003-08-01 21:16:14 +000080/// DiffFiles - Compare the two files specified, returning true if they are
81/// different or if there is a file error. If you specify a string to fill in
82/// for the error option, it will set the string to an error message if an error
83/// occurs, allowing the caller to distinguish between a failed diff and a file
84/// system error.
85///
Chris Lattner2cdd21c2003-12-14 21:35:53 +000086bool llvm::DiffFiles(const std::string &FileA, const std::string &FileB,
87 std::string *Error) {
Chris Lattner7a6ff2b2003-08-01 21:16:14 +000088 std::ifstream FileAStream(FileA.c_str());
89 if (!FileAStream) {
90 if (Error) *Error = "Couldn't open file '" + FileA + "'";
91 return true;
92 }
93
94 std::ifstream FileBStream(FileB.c_str());
95 if (!FileBStream) {
96 if (Error) *Error = "Couldn't open file '" + FileB + "'";
97 return true;
98 }
99
100 // Compare the two files...
101 int C1, C2;
102 do {
103 C1 = FileAStream.get();
104 C2 = FileBStream.get();
105 if (C1 != C2) return true;
106 } while (C1 != EOF);
107
108 return false;
109}
110
111
112/// MoveFileOverIfUpdated - If the file specified by New is different than Old,
113/// or if Old does not exist, move the New file over the Old file. Otherwise,
114/// remove the New file.
115///
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000116void llvm::MoveFileOverIfUpdated(const std::string &New,
117 const std::string &Old) {
Chris Lattner7a6ff2b2003-08-01 21:16:14 +0000118 if (DiffFiles(New, Old)) {
119 if (std::rename(New.c_str(), Old.c_str()))
120 std::cerr << "Error renaming '" << New << "' to '" << Old << "'!\n";
121 } else {
122 std::remove(New.c_str());
123 }
124}
Misha Brukman3d1b0c72003-08-07 21:28:50 +0000125
126/// removeFile - Delete the specified file
127///
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000128void llvm::removeFile(const std::string &Filename) {
Misha Brukman3d1b0c72003-08-07 21:28:50 +0000129 std::remove(Filename.c_str());
130}
131
132/// getUniqueFilename - Return a filename with the specified prefix. If the
133/// file does not exist yet, return it, otherwise add a suffix to make it
134/// unique.
135///
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000136std::string llvm::getUniqueFilename(const std::string &FilenameBase) {
Misha Brukman3d1b0c72003-08-07 21:28:50 +0000137 if (!std::ifstream(FilenameBase.c_str()))
138 return FilenameBase; // Couldn't open the file? Use it!
139
140 // Create a pattern for mkstemp...
141 char *FNBuffer = new char[FilenameBase.size()+8];
142 strcpy(FNBuffer, FilenameBase.c_str());
143 strcpy(FNBuffer+FilenameBase.size(), "-XXXXXX");
144
145 // Agree on a temporary file name to use....
146 int TempFD;
147 if ((TempFD = mkstemp(FNBuffer)) == -1) {
148 std::cerr << "bugpoint: ERROR: Cannot create temporary file in the current "
149 << " directory!\n";
150 exit(1);
151 }
152
Misha Brukman950971d2003-09-16 15:31:46 +0000153 // We don't need to hold the temp file descriptor... we will trust that no one
Misha Brukman3d1b0c72003-08-07 21:28:50 +0000154 // will overwrite/delete the file while we are working on it...
155 close(TempFD);
156 std::string Result(FNBuffer);
157 delete[] FNBuffer;
158 return Result;
159}
John Criswell6991a032003-09-02 20:14:57 +0000160
Brian Gaeke56be7ff2003-11-11 18:27:21 +0000161static bool AddPermissionsBits (const std::string &Filename, mode_t bits) {
162 // Get the umask value from the operating system. We want to use it
163 // when changing the file's permissions. Since calling umask() sets
164 // the umask and returns its old value, we must call it a second
165 // time to reset it to the user's preference.
166 mode_t mask = umask (0777); // The arg. to umask is arbitrary...
John Criswell6991a032003-09-02 20:14:57 +0000167 umask (mask);
168
Brian Gaeke56be7ff2003-11-11 18:27:21 +0000169 // Get the file's current mode.
170 struct stat st;
171 if ((stat (Filename.c_str(), &st)) == -1)
John Criswell6991a032003-09-02 20:14:57 +0000172 return false;
John Criswell6991a032003-09-02 20:14:57 +0000173
Brian Gaeke56be7ff2003-11-11 18:27:21 +0000174 // Change the file to have whichever permissions bits from 'bits'
175 // that the umask would not disable.
176 if ((chmod(Filename.c_str(), (st.st_mode | (bits & ~mask)))) == -1)
John Criswell9adeccc2003-09-02 20:30:16 +0000177 return false;
John Criswell6991a032003-09-02 20:14:57 +0000178
179 return true;
180}
181
Brian Gaeke56be7ff2003-11-11 18:27:21 +0000182/// MakeFileExecutable - Make the file named Filename executable by
183/// setting whichever execute permissions bits the process's current
184/// umask would allow. Filename must name an existing file or
185/// directory. Returns true on success, false on error.
John Criswell66622be2003-09-02 21:09:30 +0000186///
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000187bool llvm::MakeFileExecutable(const std::string &Filename) {
188 return AddPermissionsBits(Filename, 0111);
John Criswell66622be2003-09-02 21:09:30 +0000189}
190
Brian Gaeke56be7ff2003-11-11 18:27:21 +0000191/// MakeFileReadable - Make the file named Filename readable by
192/// setting whichever read permissions bits the process's current
193/// umask would allow. Filename must name an existing file or
194/// directory. Returns true on success, false on error.
195///
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000196bool llvm::MakeFileReadable(const std::string &Filename) {
197 return AddPermissionsBits(Filename, 0444);
Brian Gaeke56be7ff2003-11-11 18:27:21 +0000198}
Chris Lattner2d6481c2003-12-29 21:35:05 +0000199
Chris Lattner316cb082003-12-30 07:36:14 +0000200/// getFileSize - Return the size of the specified file in bytes, or -1 if the
201/// file cannot be read or does not exist.
202long long llvm::getFileSize(const std::string &Filename) {
203 struct stat StatBuf;
204 if (stat(Filename.c_str(), &StatBuf) == -1)
205 return -1;
206 return StatBuf.st_size;
207}
208
Chris Lattner81a085a2003-12-31 06:15:37 +0000209/// getFileTimestamp - Get the last modified time for the specified file in an
210/// unspecified format. This is useful to allow checking to see if a file was
211/// updated since that last time the timestampt was aquired. If the file does
212/// not exist or there is an error getting the time-stamp, zero is returned.
213unsigned long long llvm::getFileTimestamp(const std::string &Filename) {
214 struct stat StatBuf;
215 if (stat(Filename.c_str(), &StatBuf) == -1)
216 return 0;
217 return StatBuf.st_mtime;
218}
219
Chris Lattnereb082992004-05-28 00:23:48 +0000220/// ReadFileIntoAddressSpace - Attempt to map the specific file into the
221/// address space of the current process for reading. If this succeeds,
222/// return the address of the buffer and the length of the file mapped. On
223/// failure, return null.
224void *llvm::ReadFileIntoAddressSpace(const std::string &Filename,
225 unsigned &Length) {
226#ifdef HAVE_MMAP_FILE
227 Length = getFileSize(Filename);
228 if ((int)Length == -1) return 0;
Chris Lattner81a085a2003-12-31 06:15:37 +0000229
Chris Lattnereb082992004-05-28 00:23:48 +0000230 FDHandle FD(open(Filename.c_str(), O_RDONLY));
231 if (FD == -1) return 0;
Chris Lattner81a085a2003-12-31 06:15:37 +0000232
Chris Lattnere53477e2004-05-28 00:34:42 +0000233 // If the file has a length of zero, mmap might return a null pointer. In
234 // this case, allocate a single byte of memory and return it instead.
235 if (Length == 0)
236 return malloc(1);
237
Chris Lattnereb082992004-05-28 00:23:48 +0000238 // mmap in the file all at once...
239 void *Buffer = (void*)mmap(0, Length, PROT_READ, MAP_PRIVATE, FD, 0);
240
241 if (Buffer == (void*)MAP_FAILED)
242 return 0;
Chris Lattnere53477e2004-05-28 00:34:42 +0000243
Chris Lattnereb082992004-05-28 00:23:48 +0000244 return Buffer;
245#else
246 // FIXME: implement with read/write
247 return 0;
248#endif
249}
250
251/// UnmapFileFromAddressSpace - Remove the specified file from the current
252/// address space.
253void llvm::UnmapFileFromAddressSpace(void *Buffer, unsigned Length) {
254#ifdef HAVE_MMAP_FILE
Chris Lattnere53477e2004-05-28 00:34:42 +0000255 if (Length)
256 munmap((char*)Buffer, Length);
257 else
258 free(Buffer); // Zero byte files are malloc(1)'s.
Chris Lattnereb082992004-05-28 00:23:48 +0000259#else
260 free(Buffer);
261#endif
262}
Chris Lattner316cb082003-12-30 07:36:14 +0000263
Chris Lattner2d6481c2003-12-29 21:35:05 +0000264//===----------------------------------------------------------------------===//
265// FDHandle class implementation
266//
267
Chris Lattner9b448b72003-12-29 21:43:58 +0000268FDHandle::~FDHandle() throw() {
Chris Lattner2d6481c2003-12-29 21:35:05 +0000269 if (FD != -1) close(FD);
270}
271
Chris Lattner9b448b72003-12-29 21:43:58 +0000272FDHandle &FDHandle::operator=(int fd) throw() {
Chris Lattner2d6481c2003-12-29 21:35:05 +0000273 if (FD != -1) close(FD);
274 FD = fd;
275 return *this;
276}
277