blob: 9d5e7fa9100f4503e0a626d43b12fb64204e8dd6 [file] [log] [blame]
Reid Spencer814ba572004-08-25 06:20:07 +00001//===- llvm/System/Unix/Path.cpp - Unix Path Implementation -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Unix specific portion of the Path class.
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15//=== WARNING: Implementation here must contain only generic UNIX code that
Reid Spencer6df221d2004-08-29 05:24:01 +000016//=== is guaranteed to work on *all* UNIX variants.
Reid Spencer814ba572004-08-25 06:20:07 +000017//===----------------------------------------------------------------------===//
18
Misha Brukmanf06cb1d2004-12-20 00:16:38 +000019#include "llvm/Config/alloca.h"
Reid Spencer814ba572004-08-25 06:20:07 +000020#include "Unix.h"
Reid Spencerd103e082004-12-27 06:17:15 +000021#if HAVE_SYS_STAT_H
Reid Spencer814ba572004-08-25 06:20:07 +000022#include <sys/stat.h>
Reid Spencerd103e082004-12-27 06:17:15 +000023#endif
24#if HAVE_FCNTL_H
Reid Spencer814ba572004-08-25 06:20:07 +000025#include <fcntl.h>
Reid Spencerd103e082004-12-27 06:17:15 +000026#endif
27#if HAVE_UTIME_H
Reid Spencerc1d474f2004-11-14 22:08:36 +000028#include <utime.h>
Reid Spencerd103e082004-12-27 06:17:15 +000029#endif
30#if HAVE_TIME_H
Reid Spencer20540312004-12-24 06:29:42 +000031#include <time.h>
Reid Spencerd103e082004-12-27 06:17:15 +000032#endif
33#if HAVE_DIRENT_H
34# include <dirent.h>
35# define NAMLEN(dirent) strlen((dirent)->d_name)
36#else
37# define dirent direct
38# define NAMLEN(dirent) (dirent)->d_namlen
39# if HAVE_SYS_NDIR_H
40# include <sys/ndir.h>
41# endif
42# if HAVE_SYS_DIR_H
43# include <sys/dir.h>
44# endif
45# if HAVE_NDIR_H
46# include <ndir.h>
47# endif
48#endif
49
Reid Spencerd1ef1df2005-06-02 05:38:20 +000050// Put in a hack for Cygwin which falsely reports that the mkdtemp function
51// is available when it is not.
52#ifdef __CYGWIN__
53# undef HAVE_MKDTEMP
54#endif
Reid Spencer814ba572004-08-25 06:20:07 +000055
Reid Spencer6df221d2004-08-29 05:24:01 +000056namespace llvm {
57using namespace sys;
Reid Spencer814ba572004-08-25 06:20:07 +000058
Misha Brukmanf06cb1d2004-12-20 00:16:38 +000059Path::Path(const std::string& unverified_path) : path(unverified_path) {
Reid Spencer6df221d2004-08-29 05:24:01 +000060 if (unverified_path.empty())
61 return;
Reid Spencer0c6a2832004-11-05 22:15:36 +000062 if (this->isValid())
Reid Spencer6df221d2004-08-29 05:24:01 +000063 return;
64 // oops, not valid.
65 path.clear();
66 ThrowErrno(unverified_path + ": path is not valid");
Reid Spencer814ba572004-08-25 06:20:07 +000067}
68
Reid Spencer20540312004-12-24 06:29:42 +000069bool
70Path::isValid() const {
Reid Spencerd28e432c2005-07-08 06:53:26 +000071 // Check some obvious things
Reid Spencer20540312004-12-24 06:29:42 +000072 if (path.empty())
73 return false;
74 else if (path.length() >= MAXPATHLEN)
75 return false;
Reid Spencerd28e432c2005-07-08 06:53:26 +000076
77 // Check that the characters are ascii chars
78 size_t len = path.length();
79 unsigned i = 0;
80 while (i < len && isascii(path[i]))
81 ++i;
82 return i >= len;
Reid Spencer20540312004-12-24 06:29:42 +000083}
84
Reid Spencer6df221d2004-08-29 05:24:01 +000085Path
86Path::GetRootDirectory() {
87 Path result;
Reid Spencerc9c04732005-07-07 23:21:43 +000088 result.set("/");
Reid Spencer6df221d2004-08-29 05:24:01 +000089 return result;
90}
91
Reid Spencer20540312004-12-24 06:29:42 +000092Path
93Path::GetTemporaryDirectory() {
94#if defined(HAVE_MKDTEMP)
95 // The best way is with mkdtemp but that's not available on many systems,
96 // Linux and FreeBSD have it. Others probably won't.
97 char pathname[MAXPATHLEN];
98 strcpy(pathname,"/tmp/llvm_XXXXXX");
99 if (0 == mkdtemp(pathname))
Reid Spencer8424ba32005-04-21 02:50:10 +0000100 ThrowErrno(std::string(pathname) + ": can't create temporary directory");
Reid Spencer20540312004-12-24 06:29:42 +0000101 Path result;
Reid Spencerc9c04732005-07-07 23:21:43 +0000102 result.set(pathname);
Reid Spencer20540312004-12-24 06:29:42 +0000103 assert(result.isValid() && "mkdtemp didn't create a valid pathname!");
104 return result;
105#elif defined(HAVE_MKSTEMP)
106 // If no mkdtemp is available, mkstemp can be used to create a temporary file
107 // which is then removed and created as a directory. We prefer this over
108 // mktemp because of mktemp's inherent security and threading risks. We still
109 // have a slight race condition from the time the temporary file is created to
110 // the time it is re-created as a directoy.
111 char pathname[MAXPATHLEN];
112 strcpy(pathname, "/tmp/llvm_XXXXXX");
113 int fd = 0;
114 if (-1 == (fd = mkstemp(pathname)))
Reid Spencer8424ba32005-04-21 02:50:10 +0000115 ThrowErrno(std::string(pathname) + ": can't create temporary directory");
Reid Spencer20540312004-12-24 06:29:42 +0000116 ::close(fd);
117 ::unlink(pathname); // start race condition, ignore errors
118 if (-1 == ::mkdir(pathname, S_IRWXU)) // end race condition
Reid Spencer8424ba32005-04-21 02:50:10 +0000119 ThrowErrno(std::string(pathname) + ": can't create temporary directory");
Reid Spencer20540312004-12-24 06:29:42 +0000120 Path result;
Reid Spencerc9c04732005-07-07 23:21:43 +0000121 result.set(pathname);
Reid Spencer20540312004-12-24 06:29:42 +0000122 assert(result.isValid() && "mkstemp didn't create a valid pathname!");
123 return result;
124#elif defined(HAVE_MKTEMP)
125 // If a system doesn't have mkdtemp(3) or mkstemp(3) but it does have
126 // mktemp(3) then we'll assume that system (e.g. AIX) has a reasonable
127 // implementation of mktemp(3) and doesn't follow BSD 4.3's lead of replacing
128 // the XXXXXX with the pid of the process and a letter. That leads to only
129 // twenty six temporary files that can be generated.
130 char pathname[MAXPATHLEN];
131 strcpy(pathname, "/tmp/llvm_XXXXXX");
132 char *TmpName = ::mktemp(pathname);
133 if (TmpName == 0)
Reid Spencer8424ba32005-04-21 02:50:10 +0000134 ThrowErrno(std::string(TmpName) + ": can't create unique directory name");
Reid Spencer20540312004-12-24 06:29:42 +0000135 if (-1 == ::mkdir(TmpName, S_IRWXU))
Reid Spencer8424ba32005-04-21 02:50:10 +0000136 ThrowErrno(std::string(TmpName) + ": can't create temporary directory");
Reid Spencer20540312004-12-24 06:29:42 +0000137 Path result;
Reid Spencerc9c04732005-07-07 23:21:43 +0000138 result.set(TmpName);
Reid Spencer20540312004-12-24 06:29:42 +0000139 assert(result.isValid() && "mktemp didn't create a valid pathname!");
140 return result;
141#else
142 // This is the worst case implementation. tempnam(3) leaks memory unless its
143 // on an SVID2 (or later) system. On BSD 4.3 it leaks. tmpnam(3) has thread
144 // issues. The mktemp(3) function doesn't have enough variability in the
145 // temporary name generated. So, we provide our own implementation that
146 // increments an integer from a random number seeded by the current time. This
147 // should be sufficiently unique that we don't have many collisions between
148 // processes. Generally LLVM processes don't run very long and don't use very
149 // many temporary files so this shouldn't be a big issue for LLVM.
150 static time_t num = ::time(0);
151 char pathname[MAXPATHLEN];
152 do {
153 num++;
154 sprintf(pathname, "/tmp/llvm_%010u", unsigned(num));
155 } while ( 0 == access(pathname, F_OK ) );
156 if (-1 == ::mkdir(pathname, S_IRWXU))
Reid Spencer8424ba32005-04-21 02:50:10 +0000157 ThrowErrno(std::string(pathname) + ": can't create temporary directory");
Reid Spencer20540312004-12-24 06:29:42 +0000158 Path result;
Reid Spencerc9c04732005-07-07 23:21:43 +0000159 result.set(pathname);
Reid Spencer20540312004-12-24 06:29:42 +0000160 assert(result.isValid() && "mkstemp didn't create a valid pathname!");
161 return result;
162#endif
163}
164
Reid Spencer9b155dc2004-12-13 03:00:51 +0000165static void getPathList(const char*path, std::vector<sys::Path>& Paths) {
166 const char* at = path;
167 const char* delim = strchr(at, ':');
168 Path tmpPath;
169 while( delim != 0 ) {
170 std::string tmp(at, size_t(delim-at));
Reid Spencerc9c04732005-07-07 23:21:43 +0000171 if (tmpPath.set(tmp))
Reid Spencer5b891e92005-07-07 18:21:42 +0000172 if (tmpPath.canRead())
Reid Spencer9b155dc2004-12-13 03:00:51 +0000173 Paths.push_back(tmpPath);
174 at = delim + 1;
175 delim = strchr(at, ':');
Reid Spencerdf05ec72004-09-14 00:16:39 +0000176 }
Reid Spencer9b155dc2004-12-13 03:00:51 +0000177 if (*at != 0)
Reid Spencerc9c04732005-07-07 23:21:43 +0000178 if (tmpPath.set(std::string(at)))
Reid Spencer5b891e92005-07-07 18:21:42 +0000179 if (tmpPath.canRead())
Reid Spencer9b155dc2004-12-13 03:00:51 +0000180 Paths.push_back(tmpPath);
181
Reid Spencerdf05ec72004-09-14 00:16:39 +0000182}
Misha Brukmanf06cb1d2004-12-20 00:16:38 +0000183
Reid Spencer9b155dc2004-12-13 03:00:51 +0000184void
185Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
186#ifdef LTDL_SHLIBPATH_VAR
187 char* env_var = getenv(LTDL_SHLIBPATH_VAR);
188 if (env_var != 0) {
189 getPathList(env_var,Paths);
Reid Spencerdf05ec72004-09-14 00:16:39 +0000190 }
Reid Spencer9b155dc2004-12-13 03:00:51 +0000191#endif
192 // FIXME: Should this look at LD_LIBRARY_PATH too?
193 Paths.push_back(sys::Path("/usr/local/lib/"));
194 Paths.push_back(sys::Path("/usr/X11R6/lib/"));
195 Paths.push_back(sys::Path("/usr/lib/"));
196 Paths.push_back(sys::Path("/lib/"));
Reid Spencerdf05ec72004-09-14 00:16:39 +0000197}
198
Reid Spencer9b155dc2004-12-13 03:00:51 +0000199void
200Path::GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths) {
201 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
202 if (env_var != 0) {
203 getPathList(env_var,Paths);
204 }
Reid Spencer9b155dc2004-12-13 03:00:51 +0000205#ifdef LLVM_LIBDIR
206 {
207 Path tmpPath;
Reid Spencerc9c04732005-07-07 23:21:43 +0000208 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencer5b891e92005-07-07 18:21:42 +0000209 if (tmpPath.canRead())
Reid Spencer9b155dc2004-12-13 03:00:51 +0000210 Paths.push_back(tmpPath);
211 }
212#endif
213 GetSystemLibraryPaths(Paths);
Reid Spencer6df221d2004-08-29 05:24:01 +0000214}
215
216Path
217Path::GetLLVMDefaultConfigDir() {
218 return Path("/etc/llvm/");
219}
220
Reid Spencer6df221d2004-08-29 05:24:01 +0000221Path
222Path::GetUserHomeDirectory() {
223 const char* home = getenv("HOME");
224 if (home) {
225 Path result;
Reid Spencerc9c04732005-07-07 23:21:43 +0000226 if (result.set(home))
Reid Spencer6df221d2004-08-29 05:24:01 +0000227 return result;
228 }
229 return GetRootDirectory();
230}
231
232bool
Reid Spencer0c6a2832004-11-05 22:15:36 +0000233Path::isFile() const {
Reid Spencer2d85f562005-07-08 17:46:10 +0000234 if (!exists())
235 return false;
Reid Spencerc9c04732005-07-07 23:21:43 +0000236 struct stat buf;
237 if (0 != stat(path.c_str(), &buf)) {
238 ThrowErrno(path + ": can't determine type of path object: ");
239 }
240 return S_ISREG(buf.st_mode);
Reid Spencerae9bbda2004-09-11 04:55:08 +0000241}
242
243bool
Reid Spencer0c6a2832004-11-05 22:15:36 +0000244Path::isDirectory() const {
Reid Spencer2d85f562005-07-08 17:46:10 +0000245 if (!exists())
246 return false;
Reid Spencerc9c04732005-07-07 23:21:43 +0000247 struct stat buf;
248 if (0 != stat(path.c_str(), &buf)) {
249 ThrowErrno(path + ": can't determine type of path object: ");
250 }
251 return S_ISDIR(buf.st_mode);
Reid Spencerae9bbda2004-09-11 04:55:08 +0000252}
253
Reid Spenceraf48d862005-07-08 03:08:58 +0000254bool
255Path::isHidden() const {
Reid Spencer2d85f562005-07-08 17:46:10 +0000256 if (!exists())
257 return false;
Reid Spenceraf48d862005-07-08 03:08:58 +0000258 size_t slash = path.rfind('/');
259 return (slash != std::string::npos &&
260 slash < path.length()-1 &&
261 path[slash+1] == '.') ||
262 (!path.empty() && slash == std::string::npos && path[0] == '.');
263}
264
Reid Spencerae9bbda2004-09-11 04:55:08 +0000265std::string
Reid Spencer0c6a2832004-11-05 22:15:36 +0000266Path::getBasename() const {
Reid Spencerae9bbda2004-09-11 04:55:08 +0000267 // Find the last slash
268 size_t slash = path.rfind('/');
269 if (slash == std::string::npos)
270 slash = 0;
271 else
272 slash++;
273
Jeff Cohen5b106d02005-07-09 18:42:02 +0000274 size_t dot = path.rfind('.');
275 if (dot == std::string::npos || dot < slash)
276 return path.substr(slash);
277 else
278 return path.substr(slash, dot - slash);
Reid Spencerae9bbda2004-09-11 04:55:08 +0000279}
280
Reid Spencer0c6a2832004-11-05 22:15:36 +0000281bool Path::hasMagicNumber(const std::string &Magic) const {
Reid Spencer2d85f562005-07-08 17:46:10 +0000282 if (!isFile())
283 return false;
Reid Spencerae9bbda2004-09-11 04:55:08 +0000284 size_t len = Magic.size();
Reid Spencer1b13a7c2004-11-16 17:14:08 +0000285 assert(len < 1024 && "Request for magic string too long");
286 char* buf = (char*) alloca(1 + len);
287 int fd = ::open(path.c_str(),O_RDONLY);
288 if (fd < 0)
289 return false;
Reid Spencer9b155dc2004-12-13 03:00:51 +0000290 size_t read_len = ::read(fd, buf, len);
Reid Spencer1b13a7c2004-11-16 17:14:08 +0000291 close(fd);
Reid Spencer9b155dc2004-12-13 03:00:51 +0000292 if (len != read_len)
293 return false;
Reid Spencerae9bbda2004-09-11 04:55:08 +0000294 buf[len] = '\0';
295 return Magic == buf;
296}
297
Reid Spencerc1d474f2004-11-14 22:08:36 +0000298bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
299 if (!isFile())
300 return false;
Reid Spencer1b13a7c2004-11-16 17:14:08 +0000301 assert(len < 1024 && "Request for magic string too long");
302 char* buf = (char*) alloca(1 + len);
303 int fd = ::open(path.c_str(),O_RDONLY);
304 if (fd < 0)
305 return false;
Reid Spencerf4731852004-12-02 09:09:48 +0000306 ssize_t bytes_read = ::read(fd, buf, len);
307 ::close(fd);
308 if (ssize_t(len) != bytes_read) {
309 Magic.clear();
Reid Spencer1b13a7c2004-11-16 17:14:08 +0000310 return false;
Reid Spencerf4731852004-12-02 09:09:48 +0000311 }
312 Magic.assign(buf,len);
Reid Spencerc1d474f2004-11-14 22:08:36 +0000313 return true;
314}
315
Reid Spencerae9bbda2004-09-11 04:55:08 +0000316bool
Reid Spencer0c6a2832004-11-05 22:15:36 +0000317Path::isBytecodeFile() const {
Reid Spencer2d85f562005-07-08 17:46:10 +0000318 if (!isFile())
319 return false;
Reid Spencerfb1f7352004-11-09 20:26:31 +0000320 char buffer[ 4];
321 buffer[0] = 0;
Reid Spencer5ccfd5a2004-12-11 00:14:15 +0000322 int fd = ::open(path.c_str(),O_RDONLY);
323 if (fd < 0)
324 return false;
325 ssize_t bytes_read = ::read(fd, buffer, 4);
326 ::close(fd);
327 if (4 != bytes_read)
328 return false;
Reid Spencerc1d474f2004-11-14 22:08:36 +0000329
330 return (buffer[0] == 'l' && buffer[1] == 'l' && buffer[2] == 'v' &&
331 (buffer[3] == 'c' || buffer[3] == 'm'));
Reid Spencerae9bbda2004-09-11 04:55:08 +0000332}
333
334bool
Reid Spencer6df221d2004-08-29 05:24:01 +0000335Path::exists() const {
336 return 0 == access(path.c_str(), F_OK );
337}
338
339bool
Reid Spencer5b891e92005-07-07 18:21:42 +0000340Path::canRead() const {
Reid Spencer6df221d2004-08-29 05:24:01 +0000341 return 0 == access(path.c_str(), F_OK | R_OK );
342}
343
344bool
Reid Spencer5b891e92005-07-07 18:21:42 +0000345Path::canWrite() const {
Reid Spencer6df221d2004-08-29 05:24:01 +0000346 return 0 == access(path.c_str(), F_OK | W_OK );
347}
348
349bool
Reid Spencer5b891e92005-07-07 18:21:42 +0000350Path::canExecute() const {
Reid Spencer2d85f562005-07-08 17:46:10 +0000351 if (0 != access(path.c_str(), R_OK | X_OK ))
352 return false;
Misha Brukmana9a8c1b2005-04-20 15:33:22 +0000353 struct stat st;
354 int r = stat(path.c_str(), &st);
355 if (r != 0 || !S_ISREG(st.st_mode))
356 return false;
Reid Spencer2d85f562005-07-08 17:46:10 +0000357 return true;
Reid Spencer6df221d2004-08-29 05:24:01 +0000358}
359
360std::string
361Path::getLast() const {
362 // Find the last slash
363 size_t pos = path.rfind('/');
364
365 // Handle the corner cases
366 if (pos == std::string::npos)
367 return path;
368
369 // If the last character is a slash
370 if (pos == path.length()-1) {
371 // Find the second to last slash
372 size_t pos2 = path.rfind('/', pos-1);
373 if (pos2 == std::string::npos)
374 return path.substr(0,pos);
375 else
376 return path.substr(pos2+1,pos-pos2-1);
377 }
378 // Return everything after the last slash
379 return path.substr(pos+1);
380}
381
Reid Spencer91f505e2004-11-16 06:15:19 +0000382void
383Path::getStatusInfo(StatusInfo& info) const {
Reid Spencerfb1f7352004-11-09 20:26:31 +0000384 struct stat buf;
385 if (0 != stat(path.c_str(), &buf)) {
Reid Spencer8424ba32005-04-21 02:50:10 +0000386 ThrowErrno(path + ": can't determine type of path object: ");
Reid Spencerfb1f7352004-11-09 20:26:31 +0000387 }
388 info.fileSize = buf.st_size;
Reid Spencerc1d474f2004-11-14 22:08:36 +0000389 info.modTime.fromEpochTime(buf.st_mtime);
Reid Spencerfb1f7352004-11-09 20:26:31 +0000390 info.mode = buf.st_mode;
391 info.user = buf.st_uid;
392 info.group = buf.st_gid;
Reid Spencerc1d474f2004-11-14 22:08:36 +0000393 info.isDir = S_ISDIR(buf.st_mode);
Reid Spencerc1d474f2004-11-14 22:08:36 +0000394}
395
Reid Spencer94bf2262004-12-13 19:59:50 +0000396static bool AddPermissionBits(const std::string& Filename, int bits) {
397 // Get the umask value from the operating system. We want to use it
398 // when changing the file's permissions. Since calling umask() sets
399 // the umask and returns its old value, we must call it a second
400 // time to reset it to the user's preference.
401 int mask = umask(0777); // The arg. to umask is arbitrary.
402 umask(mask); // Restore the umask.
403
404 // Get the file's current mode.
405 struct stat st;
406 if ((stat(Filename.c_str(), &st)) == -1)
407 return false;
408
409 // Change the file to have whichever permissions bits from 'bits'
410 // that the umask would not disable.
411 if ((chmod(Filename.c_str(), (st.st_mode | (bits & ~mask)))) == -1)
412 return false;
413
414 return true;
415}
416
Reid Spenceraf48d862005-07-08 03:08:58 +0000417void Path::makeReadableOnDisk() {
Reid Spencer94bf2262004-12-13 19:59:50 +0000418 if (!AddPermissionBits(path,0444))
419 ThrowErrno(path + ": can't make file readable");
420}
421
Reid Spenceraf48d862005-07-08 03:08:58 +0000422void Path::makeWriteableOnDisk() {
Reid Spencer94bf2262004-12-13 19:59:50 +0000423 if (!AddPermissionBits(path,0222))
424 ThrowErrno(path + ": can't make file writable");
425}
426
Reid Spenceraf48d862005-07-08 03:08:58 +0000427void Path::makeExecutableOnDisk() {
Reid Spencer94bf2262004-12-13 19:59:50 +0000428 if (!AddPermissionBits(path,0111))
429 ThrowErrno(path + ": can't make file executable");
430}
431
Reid Spencerc1d474f2004-11-14 22:08:36 +0000432bool
Reid Spencer91f505e2004-11-16 06:15:19 +0000433Path::getDirectoryContents(std::set<Path>& result) const {
Reid Spencerc1d474f2004-11-14 22:08:36 +0000434 if (!isDirectory())
435 return false;
436 DIR* direntries = ::opendir(path.c_str());
437 if (direntries == 0)
438 ThrowErrno(path + ": can't open directory");
439
440 result.clear();
441 struct dirent* de = ::readdir(direntries);
Misha Brukman1001aea2005-04-20 04:04:07 +0000442 for ( ; de != 0; de = ::readdir(direntries)) {
Reid Spencerc1d474f2004-11-14 22:08:36 +0000443 if (de->d_name[0] != '.') {
444 Path aPath(path + (const char*)de->d_name);
445 struct stat buf;
Misha Brukman1001aea2005-04-20 04:04:07 +0000446 if (0 != stat(aPath.path.c_str(), &buf)) {
Reid Spencer8424ba32005-04-21 02:50:10 +0000447 int stat_errno = errno;
Misha Brukman1001aea2005-04-20 04:04:07 +0000448 struct stat st;
449 if (0 == lstat(aPath.path.c_str(), &st) && S_ISLNK(st.st_mode))
450 continue; // dangling symlink -- ignore
Reid Spencer8424ba32005-04-21 02:50:10 +0000451 ThrowErrno(aPath.path +
452 ": can't determine file object type", stat_errno);
Misha Brukman1001aea2005-04-20 04:04:07 +0000453 }
Reid Spencer91f505e2004-11-16 06:15:19 +0000454 result.insert(aPath);
Reid Spencerc1d474f2004-11-14 22:08:36 +0000455 }
Reid Spencerc1d474f2004-11-14 22:08:36 +0000456 }
457
458 closedir(direntries);
459 return true;
Reid Spencerfb1f7352004-11-09 20:26:31 +0000460}
461
Reid Spencer6df221d2004-08-29 05:24:01 +0000462bool
Reid Spencerc9c04732005-07-07 23:21:43 +0000463Path::set(const std::string& a_path) {
464 if (a_path.empty())
Reid Spencer6df221d2004-08-29 05:24:01 +0000465 return false;
Reid Spencerc9c04732005-07-07 23:21:43 +0000466 std::string save(path);
Reid Spencer6df221d2004-08-29 05:24:01 +0000467 path = a_path;
Reid Spencer0c6a2832004-11-05 22:15:36 +0000468 if (!isValid()) {
Reid Spencerc9c04732005-07-07 23:21:43 +0000469 path = save;
Reid Spencer6df221d2004-08-29 05:24:01 +0000470 return false;
471 }
472 return true;
473}
474
475bool
Reid Spencerc9c04732005-07-07 23:21:43 +0000476Path::appendComponent(const std::string& name) {
477 if (name.empty())
Reid Spencer6df221d2004-08-29 05:24:01 +0000478 return false;
Reid Spencerc9c04732005-07-07 23:21:43 +0000479 std::string save(path);
480 if (!path.empty()) {
481 size_t last = path.size() - 1;
482 if (path[last] != '/')
483 path += '/';
484 }
485 path += name;
Reid Spencer0c6a2832004-11-05 22:15:36 +0000486 if (!isValid()) {
Reid Spencerc9c04732005-07-07 23:21:43 +0000487 path = save;
Reid Spencer6df221d2004-08-29 05:24:01 +0000488 return false;
489 }
490 return true;
491}
492
493bool
Reid Spencerc9c04732005-07-07 23:21:43 +0000494Path::eraseComponent() {
Reid Spencer6df221d2004-08-29 05:24:01 +0000495 size_t slashpos = path.rfind('/',path.size());
Reid Spencerc9c04732005-07-07 23:21:43 +0000496 if (slashpos == 0 || slashpos == std::string::npos) {
497 path.erase();
498 return true;
499 }
Reid Spencer6df221d2004-08-29 05:24:01 +0000500 if (slashpos == path.size() - 1)
501 slashpos = path.rfind('/',slashpos-1);
Reid Spencerc9c04732005-07-07 23:21:43 +0000502 if (slashpos == std::string::npos) {
503 path.erase();
504 return true;
505 }
Reid Spencer6df221d2004-08-29 05:24:01 +0000506 path.erase(slashpos);
507 return true;
508}
509
510bool
Reid Spencer0c6a2832004-11-05 22:15:36 +0000511Path::appendSuffix(const std::string& suffix) {
Reid Spencerc9c04732005-07-07 23:21:43 +0000512 std::string save(path);
Reid Spencer6df221d2004-08-29 05:24:01 +0000513 path.append(".");
514 path.append(suffix);
Reid Spencer0c6a2832004-11-05 22:15:36 +0000515 if (!isValid()) {
Reid Spencerc9c04732005-07-07 23:21:43 +0000516 path = save;
Reid Spencer6df221d2004-08-29 05:24:01 +0000517 return false;
518 }
519 return true;
520}
521
Reid Spencerc9c04732005-07-07 23:21:43 +0000522bool
523Path::eraseSuffix() {
Reid Spencerd28e432c2005-07-08 06:53:26 +0000524 std::string save = path;
Reid Spencer6df221d2004-08-29 05:24:01 +0000525 size_t dotpos = path.rfind('.',path.size());
526 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen4c241442005-07-08 04:49:16 +0000527 if (dotpos != std::string::npos) {
Jeff Cohen5b106d02005-07-09 18:42:02 +0000528 if (slashpos == std::string::npos || dotpos > slashpos+1) {
Jeff Cohen4c241442005-07-08 04:49:16 +0000529 path.erase(dotpos, path.size()-dotpos);
Jeff Cohenf5067762005-07-08 05:02:13 +0000530 return true;
Jeff Cohen4c241442005-07-08 04:49:16 +0000531 }
Reid Spencer6df221d2004-08-29 05:24:01 +0000532 }
Reid Spencerd28e432c2005-07-08 06:53:26 +0000533 if (!isValid())
534 path = save;
Jeff Cohen4c241442005-07-08 04:49:16 +0000535 return false;
Reid Spencer6df221d2004-08-29 05:24:01 +0000536}
537
Reid Spencer6df221d2004-08-29 05:24:01 +0000538bool
Reid Spenceraf48d862005-07-08 03:08:58 +0000539Path::createDirectoryOnDisk( bool create_parents) {
Reid Spencer6df221d2004-08-29 05:24:01 +0000540 // Get a writeable copy of the path name
541 char pathname[MAXPATHLEN];
542 path.copy(pathname,MAXPATHLEN);
543
544 // Null-terminate the last component
545 int lastchar = path.length() - 1 ;
546 if (pathname[lastchar] == '/')
547 pathname[lastchar] = 0;
Reid Spencerc1d474f2004-11-14 22:08:36 +0000548 else
549 pathname[lastchar+1] = 0;
Reid Spencer6df221d2004-08-29 05:24:01 +0000550
551 // If we're supposed to create intermediate directories
552 if ( create_parents ) {
553 // Find the end of the initial name component
554 char * next = strchr(pathname,'/');
555 if ( pathname[0] == '/')
556 next = strchr(&pathname[1],'/');
557
558 // Loop through the directory components until we're done
559 while ( next != 0 ) {
560 *next = 0;
561 if (0 != access(pathname, F_OK | R_OK | W_OK))
562 if (0 != mkdir(pathname, S_IRWXU | S_IRWXG))
Reid Spencer8424ba32005-04-21 02:50:10 +0000563 ThrowErrno(std::string(pathname) + ": can't create directory");
Reid Spencer6df221d2004-08-29 05:24:01 +0000564 char* save = next;
Reid Spencerc1d474f2004-11-14 22:08:36 +0000565 next = strchr(next+1,'/');
Reid Spencer6df221d2004-08-29 05:24:01 +0000566 *save = '/';
567 }
Reid Spencer6df221d2004-08-29 05:24:01 +0000568 }
Reid Spencerc1d474f2004-11-14 22:08:36 +0000569
570 if (0 != access(pathname, F_OK | R_OK))
571 if (0 != mkdir(pathname, S_IRWXU | S_IRWXG))
Reid Spencer8424ba32005-04-21 02:50:10 +0000572 ThrowErrno(std::string(pathname) + ": can't create directory");
Reid Spencer6df221d2004-08-29 05:24:01 +0000573 return true;
574}
575
576bool
Reid Spenceraf48d862005-07-08 03:08:58 +0000577Path::createFileOnDisk() {
Reid Spencer6df221d2004-08-29 05:24:01 +0000578 // Create the file
Reid Spencer36e3cbf2004-09-18 19:25:11 +0000579 int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR);
580 if (fd < 0)
Reid Spencer8424ba32005-04-21 02:50:10 +0000581 ThrowErrno(path + ": can't create file");
Reid Spencer36e3cbf2004-09-18 19:25:11 +0000582 ::close(fd);
Reid Spencer6df221d2004-08-29 05:24:01 +0000583
584 return true;
Reid Spencer814ba572004-08-25 06:20:07 +0000585}
586
Reid Spencer6df221d2004-08-29 05:24:01 +0000587bool
Reid Spenceraf48d862005-07-08 03:08:58 +0000588Path::createTemporaryFileOnDisk(bool reuse_current) {
Reid Spencerf66d9322004-12-15 01:50:13 +0000589 // Make this into a unique file name
Reid Spencer98ce23f2004-12-15 08:32:45 +0000590 makeUnique( reuse_current );
Reid Spencerf66d9322004-12-15 01:50:13 +0000591
592 // create the file
593 int outFile = ::open(path.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0666);
594 if (outFile != -1) {
595 ::close(outFile);
596 return true;
Reid Spencerfb1f7352004-11-09 20:26:31 +0000597 }
Reid Spencerf66d9322004-12-15 01:50:13 +0000598 return false;
Reid Spencerfb1f7352004-11-09 20:26:31 +0000599}
600
601bool
Reid Spenceraf48d862005-07-08 03:08:58 +0000602Path::eraseFromDisk(bool remove_contents) const {
Reid Spencer6df221d2004-08-29 05:24:01 +0000603 // Make sure we're dealing with a directory
Reid Spencerc9c04732005-07-07 23:21:43 +0000604 if (isFile()) {
605 if (0 != unlink(path.c_str()))
606 ThrowErrno(path + ": can't destroy file");
607 } else if (isDirectory()) {
608 if (remove_contents) {
609 // Recursively descend the directory to remove its content
610 std::string cmd("/bin/rm -rf ");
611 cmd += path;
612 system(cmd.c_str());
613 } else {
614 // Otherwise, try to just remove the one directory
615 char pathname[MAXPATHLEN];
616 path.copy(pathname,MAXPATHLEN);
617 int lastchar = path.length() - 1 ;
618 if (pathname[lastchar] == '/')
619 pathname[lastchar] = 0;
620 else
621 pathname[lastchar+1] = 0;
622 if ( 0 != rmdir(pathname))
623 ThrowErrno(std::string(pathname) + ": can't destroy directory");
624 }
Reid Spencer6df221d2004-08-29 05:24:01 +0000625 }
Reid Spencerc9c04732005-07-07 23:21:43 +0000626 else
627 return false;
Reid Spencer6df221d2004-08-29 05:24:01 +0000628 return true;
629}
630
631bool
Reid Spenceraf48d862005-07-08 03:08:58 +0000632Path::renamePathOnDisk(const Path& newName) {
Reid Spencerc9c04732005-07-07 23:21:43 +0000633 if (0 != ::rename(path.c_str(), newName.c_str()))
Reid Spencer8424ba32005-04-21 02:50:10 +0000634 ThrowErrno(std::string("can't rename '") + path + "' as '" +
635 newName.toString() + "' ");
Reid Spencerc1d474f2004-11-14 22:08:36 +0000636 return true;
637}
638
639bool
Reid Spenceraf48d862005-07-08 03:08:58 +0000640Path::setStatusInfoOnDisk(const StatusInfo& si) const {
Reid Spencerc1d474f2004-11-14 22:08:36 +0000641 struct utimbuf utb;
642 utb.actime = si.modTime.toPosixTime();
643 utb.modtime = utb.actime;
644 if (0 != ::utime(path.c_str(),&utb))
645 ThrowErrno(path + ": can't set file modification time");
646 if (0 != ::chmod(path.c_str(),si.mode))
647 ThrowErrno(path + ": can't set mode");
Reid Spencer6df221d2004-08-29 05:24:01 +0000648 return true;
649}
650
Reid Spencerf66d9322004-12-15 01:50:13 +0000651void
Reid Spencer10741062004-12-21 03:27:08 +0000652sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) {
Reid Spencerf66d9322004-12-15 01:50:13 +0000653 int inFile = -1;
654 int outFile = -1;
655 try {
656 inFile = ::open(Src.c_str(), O_RDONLY);
657 if (inFile == -1)
Reid Spencer8424ba32005-04-21 02:50:10 +0000658 ThrowErrno(Src.toString() + ": can't open source file to copy: ");
Reid Spencerf66d9322004-12-15 01:50:13 +0000659
660 outFile = ::open(Dest.c_str(), O_WRONLY|O_CREAT, 0666);
661 if (outFile == -1)
Reid Spencer8424ba32005-04-21 02:50:10 +0000662 ThrowErrno(Dest.toString() +": can't create destination file for copy: ");
Reid Spencerf66d9322004-12-15 01:50:13 +0000663
664 char Buffer[16*1024];
665 while (ssize_t Amt = ::read(inFile, Buffer, 16*1024)) {
666 if (Amt == -1) {
667 if (errno != EINTR && errno != EAGAIN)
Reid Spencer8424ba32005-04-21 02:50:10 +0000668 ThrowErrno(Src.toString()+": can't read source file: ");
Reid Spencerf66d9322004-12-15 01:50:13 +0000669 } else {
670 char *BufPtr = Buffer;
671 while (Amt) {
672 ssize_t AmtWritten = ::write(outFile, BufPtr, Amt);
673 if (AmtWritten == -1) {
674 if (errno != EINTR && errno != EAGAIN)
Reid Spencer8424ba32005-04-21 02:50:10 +0000675 ThrowErrno(Dest.toString() + ": can't write destination file: ");
Reid Spencerf66d9322004-12-15 01:50:13 +0000676 } else {
677 Amt -= AmtWritten;
678 BufPtr += AmtWritten;
679 }
680 }
681 }
682 }
683 ::close(inFile);
684 ::close(outFile);
685 } catch (...) {
686 if (inFile != -1)
687 ::close(inFile);
688 if (outFile != -1)
689 ::close(outFile);
690 throw;
691 }
692}
693
694void
Reid Spencer98ce23f2004-12-15 08:32:45 +0000695Path::makeUnique(bool reuse_current) {
696 if (reuse_current && !exists())
Reid Spencerf66d9322004-12-15 01:50:13 +0000697 return; // File doesn't exist already, just use it!
698
699 // Append an XXXXXX pattern to the end of the file for use with mkstemp,
700 // mktemp or our own implementation.
701 char *FNBuffer = (char*) alloca(path.size()+8);
702 path.copy(FNBuffer,path.size());
703 strcpy(FNBuffer+path.size(), "-XXXXXX");
704
705#if defined(HAVE_MKSTEMP)
706 int TempFD;
707 if ((TempFD = mkstemp(FNBuffer)) == -1) {
Reid Spencer8424ba32005-04-21 02:50:10 +0000708 ThrowErrno(path + ": can't make unique filename");
Reid Spencerf66d9322004-12-15 01:50:13 +0000709 }
710
711 // We don't need to hold the temp file descriptor... we will trust that no one
712 // will overwrite/delete the file before we can open it again.
713 close(TempFD);
714
715 // Save the name
716 path = FNBuffer;
717#elif defined(HAVE_MKTEMP)
718 // If we don't have mkstemp, use the old and obsolete mktemp function.
719 if (mktemp(FNBuffer) == 0) {
Reid Spencer8424ba32005-04-21 02:50:10 +0000720 ThrowErrno(path + ": can't make unique filename");
Reid Spencerf66d9322004-12-15 01:50:13 +0000721 }
722
723 // Save the name
724 path = FNBuffer;
725#else
726 // Okay, looks like we have to do it all by our lonesome.
727 static unsigned FCounter = 0;
728 unsigned offset = path.size() + 1;
729 while ( FCounter < 999999 && exists()) {
730 sprintf(FNBuffer+offset,"%06u",++FCounter);
731 path = FNBuffer;
732 }
733 if (FCounter > 999999)
Reid Spencer8424ba32005-04-21 02:50:10 +0000734 throw std::string(path + ": can't make unique filename: too many files");
Reid Spencerf66d9322004-12-15 01:50:13 +0000735#endif
736
737}
Reid Spencer814ba572004-08-25 06:20:07 +0000738}
739