Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 1 | //===- 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 Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 16 | //=== is guaranteed to work on *all* UNIX variants. |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 17 | //===----------------------------------------------------------------------===// |
| 18 | |
Misha Brukman | 210b32b | 2004-12-20 00:16:38 +0000 | [diff] [blame] | 19 | #include "llvm/Config/alloca.h" |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 20 | #include "Unix.h" |
Reid Spencer | af2f208 | 2004-12-27 06:17:15 +0000 | [diff] [blame] | 21 | #if HAVE_SYS_STAT_H |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 22 | #include <sys/stat.h> |
Reid Spencer | af2f208 | 2004-12-27 06:17:15 +0000 | [diff] [blame] | 23 | #endif |
| 24 | #if HAVE_FCNTL_H |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 25 | #include <fcntl.h> |
Reid Spencer | af2f208 | 2004-12-27 06:17:15 +0000 | [diff] [blame] | 26 | #endif |
| 27 | #if HAVE_UTIME_H |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 28 | #include <utime.h> |
Reid Spencer | af2f208 | 2004-12-27 06:17:15 +0000 | [diff] [blame] | 29 | #endif |
| 30 | #if HAVE_TIME_H |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 31 | #include <time.h> |
Reid Spencer | af2f208 | 2004-12-27 06:17:15 +0000 | [diff] [blame] | 32 | #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 Spencer | 932e2e3 | 2005-06-02 05:38:20 +0000 | [diff] [blame] | 50 | // 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 Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 55 | |
Reid Spencer | 3be872e | 2005-07-28 16:25:57 +0000 | [diff] [blame] | 56 | namespace { |
| 57 | inline bool lastIsSlash(const std::string& path) { |
| 58 | return !path.empty() && path[path.length() - 1] == '/'; |
| 59 | } |
| 60 | |
| 61 | } |
| 62 | |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 63 | namespace llvm { |
| 64 | using namespace sys; |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 65 | |
Misha Brukman | 210b32b | 2004-12-20 00:16:38 +0000 | [diff] [blame] | 66 | Path::Path(const std::string& unverified_path) : path(unverified_path) { |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 67 | if (unverified_path.empty()) |
| 68 | return; |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 69 | if (this->isValid()) |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 70 | return; |
| 71 | // oops, not valid. |
| 72 | path.clear(); |
| 73 | ThrowErrno(unverified_path + ": path is not valid"); |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 76 | bool |
| 77 | Path::isValid() const { |
Reid Spencer | 6371ccb | 2005-07-08 06:53:26 +0000 | [diff] [blame] | 78 | // Check some obvious things |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 79 | if (path.empty()) |
| 80 | return false; |
| 81 | else if (path.length() >= MAXPATHLEN) |
| 82 | return false; |
Reid Spencer | 6371ccb | 2005-07-08 06:53:26 +0000 | [diff] [blame] | 83 | |
| 84 | // Check that the characters are ascii chars |
| 85 | size_t len = path.length(); |
| 86 | unsigned i = 0; |
| 87 | while (i < len && isascii(path[i])) |
| 88 | ++i; |
| 89 | return i >= len; |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 92 | Path |
| 93 | Path::GetRootDirectory() { |
| 94 | Path result; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 95 | result.set("/"); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 96 | return result; |
| 97 | } |
| 98 | |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 99 | Path |
| 100 | Path::GetTemporaryDirectory() { |
| 101 | #if defined(HAVE_MKDTEMP) |
| 102 | // The best way is with mkdtemp but that's not available on many systems, |
| 103 | // Linux and FreeBSD have it. Others probably won't. |
| 104 | char pathname[MAXPATHLEN]; |
| 105 | strcpy(pathname,"/tmp/llvm_XXXXXX"); |
| 106 | if (0 == mkdtemp(pathname)) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 107 | ThrowErrno(std::string(pathname) + ": can't create temporary directory"); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 108 | Path result; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 109 | result.set(pathname); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 110 | assert(result.isValid() && "mkdtemp didn't create a valid pathname!"); |
| 111 | return result; |
| 112 | #elif defined(HAVE_MKSTEMP) |
| 113 | // If no mkdtemp is available, mkstemp can be used to create a temporary file |
| 114 | // which is then removed and created as a directory. We prefer this over |
| 115 | // mktemp because of mktemp's inherent security and threading risks. We still |
| 116 | // have a slight race condition from the time the temporary file is created to |
| 117 | // the time it is re-created as a directoy. |
| 118 | char pathname[MAXPATHLEN]; |
| 119 | strcpy(pathname, "/tmp/llvm_XXXXXX"); |
| 120 | int fd = 0; |
| 121 | if (-1 == (fd = mkstemp(pathname))) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 122 | ThrowErrno(std::string(pathname) + ": can't create temporary directory"); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 123 | ::close(fd); |
| 124 | ::unlink(pathname); // start race condition, ignore errors |
| 125 | if (-1 == ::mkdir(pathname, S_IRWXU)) // end race condition |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 126 | ThrowErrno(std::string(pathname) + ": can't create temporary directory"); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 127 | Path result; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 128 | result.set(pathname); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 129 | assert(result.isValid() && "mkstemp didn't create a valid pathname!"); |
| 130 | return result; |
| 131 | #elif defined(HAVE_MKTEMP) |
| 132 | // If a system doesn't have mkdtemp(3) or mkstemp(3) but it does have |
| 133 | // mktemp(3) then we'll assume that system (e.g. AIX) has a reasonable |
| 134 | // implementation of mktemp(3) and doesn't follow BSD 4.3's lead of replacing |
| 135 | // the XXXXXX with the pid of the process and a letter. That leads to only |
| 136 | // twenty six temporary files that can be generated. |
| 137 | char pathname[MAXPATHLEN]; |
| 138 | strcpy(pathname, "/tmp/llvm_XXXXXX"); |
| 139 | char *TmpName = ::mktemp(pathname); |
| 140 | if (TmpName == 0) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 141 | ThrowErrno(std::string(TmpName) + ": can't create unique directory name"); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 142 | if (-1 == ::mkdir(TmpName, S_IRWXU)) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 143 | ThrowErrno(std::string(TmpName) + ": can't create temporary directory"); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 144 | Path result; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 145 | result.set(TmpName); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 146 | assert(result.isValid() && "mktemp didn't create a valid pathname!"); |
| 147 | return result; |
| 148 | #else |
| 149 | // This is the worst case implementation. tempnam(3) leaks memory unless its |
| 150 | // on an SVID2 (or later) system. On BSD 4.3 it leaks. tmpnam(3) has thread |
| 151 | // issues. The mktemp(3) function doesn't have enough variability in the |
| 152 | // temporary name generated. So, we provide our own implementation that |
| 153 | // increments an integer from a random number seeded by the current time. This |
| 154 | // should be sufficiently unique that we don't have many collisions between |
| 155 | // processes. Generally LLVM processes don't run very long and don't use very |
| 156 | // many temporary files so this shouldn't be a big issue for LLVM. |
| 157 | static time_t num = ::time(0); |
| 158 | char pathname[MAXPATHLEN]; |
| 159 | do { |
| 160 | num++; |
| 161 | sprintf(pathname, "/tmp/llvm_%010u", unsigned(num)); |
| 162 | } while ( 0 == access(pathname, F_OK ) ); |
| 163 | if (-1 == ::mkdir(pathname, S_IRWXU)) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 164 | ThrowErrno(std::string(pathname) + ": can't create temporary directory"); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 165 | Path result; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 166 | result.set(pathname); |
Reid Spencer | 69a1616 | 2004-12-24 06:29:42 +0000 | [diff] [blame] | 167 | assert(result.isValid() && "mkstemp didn't create a valid pathname!"); |
| 168 | return result; |
| 169 | #endif |
| 170 | } |
| 171 | |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 172 | static void getPathList(const char*path, std::vector<sys::Path>& Paths) { |
| 173 | const char* at = path; |
| 174 | const char* delim = strchr(at, ':'); |
| 175 | Path tmpPath; |
| 176 | while( delim != 0 ) { |
| 177 | std::string tmp(at, size_t(delim-at)); |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 178 | if (tmpPath.set(tmp)) |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 179 | if (tmpPath.canRead()) |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 180 | Paths.push_back(tmpPath); |
| 181 | at = delim + 1; |
| 182 | delim = strchr(at, ':'); |
Reid Spencer | 74e7261 | 2004-09-14 00:16:39 +0000 | [diff] [blame] | 183 | } |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 184 | if (*at != 0) |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 185 | if (tmpPath.set(std::string(at))) |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 186 | if (tmpPath.canRead()) |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 187 | Paths.push_back(tmpPath); |
| 188 | |
Reid Spencer | 74e7261 | 2004-09-14 00:16:39 +0000 | [diff] [blame] | 189 | } |
Misha Brukman | 210b32b | 2004-12-20 00:16:38 +0000 | [diff] [blame] | 190 | |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 191 | void |
| 192 | Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) { |
| 193 | #ifdef LTDL_SHLIBPATH_VAR |
| 194 | char* env_var = getenv(LTDL_SHLIBPATH_VAR); |
| 195 | if (env_var != 0) { |
| 196 | getPathList(env_var,Paths); |
Reid Spencer | 74e7261 | 2004-09-14 00:16:39 +0000 | [diff] [blame] | 197 | } |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 198 | #endif |
| 199 | // FIXME: Should this look at LD_LIBRARY_PATH too? |
| 200 | Paths.push_back(sys::Path("/usr/local/lib/")); |
| 201 | Paths.push_back(sys::Path("/usr/X11R6/lib/")); |
| 202 | Paths.push_back(sys::Path("/usr/lib/")); |
| 203 | Paths.push_back(sys::Path("/lib/")); |
Reid Spencer | 74e7261 | 2004-09-14 00:16:39 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 206 | void |
| 207 | Path::GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths) { |
| 208 | char * env_var = getenv("LLVM_LIB_SEARCH_PATH"); |
| 209 | if (env_var != 0) { |
| 210 | getPathList(env_var,Paths); |
| 211 | } |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 212 | #ifdef LLVM_LIBDIR |
| 213 | { |
| 214 | Path tmpPath; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 215 | if (tmpPath.set(LLVM_LIBDIR)) |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 216 | if (tmpPath.canRead()) |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 217 | Paths.push_back(tmpPath); |
| 218 | } |
| 219 | #endif |
| 220 | GetSystemLibraryPaths(Paths); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | Path |
| 224 | Path::GetLLVMDefaultConfigDir() { |
| 225 | return Path("/etc/llvm/"); |
| 226 | } |
| 227 | |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 228 | Path |
| 229 | Path::GetUserHomeDirectory() { |
| 230 | const char* home = getenv("HOME"); |
| 231 | if (home) { |
| 232 | Path result; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 233 | if (result.set(home)) |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 234 | return result; |
| 235 | } |
| 236 | return GetRootDirectory(); |
| 237 | } |
| 238 | |
| 239 | bool |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 240 | Path::isFile() const { |
Reid Spencer | 8b2d1aa | 2005-07-08 17:46:10 +0000 | [diff] [blame] | 241 | if (!exists()) |
| 242 | return false; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 243 | struct stat buf; |
| 244 | if (0 != stat(path.c_str(), &buf)) { |
| 245 | ThrowErrno(path + ": can't determine type of path object: "); |
| 246 | } |
| 247 | return S_ISREG(buf.st_mode); |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | bool |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 251 | Path::isDirectory() const { |
Reid Spencer | 8b2d1aa | 2005-07-08 17:46:10 +0000 | [diff] [blame] | 252 | if (!exists()) |
| 253 | return false; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 254 | struct stat buf; |
| 255 | if (0 != stat(path.c_str(), &buf)) { |
| 256 | ThrowErrno(path + ": can't determine type of path object: "); |
| 257 | } |
| 258 | return S_ISDIR(buf.st_mode); |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 261 | bool |
| 262 | Path::isHidden() const { |
Reid Spencer | 8b2d1aa | 2005-07-08 17:46:10 +0000 | [diff] [blame] | 263 | if (!exists()) |
| 264 | return false; |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 265 | size_t slash = path.rfind('/'); |
| 266 | return (slash != std::string::npos && |
| 267 | slash < path.length()-1 && |
| 268 | path[slash+1] == '.') || |
| 269 | (!path.empty() && slash == std::string::npos && path[0] == '.'); |
| 270 | } |
| 271 | |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 272 | std::string |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 273 | Path::getBasename() const { |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 274 | // Find the last slash |
| 275 | size_t slash = path.rfind('/'); |
| 276 | if (slash == std::string::npos) |
| 277 | slash = 0; |
| 278 | else |
| 279 | slash++; |
| 280 | |
Jeff Cohen | 73f3667 | 2005-07-09 18:42:02 +0000 | [diff] [blame] | 281 | size_t dot = path.rfind('.'); |
| 282 | if (dot == std::string::npos || dot < slash) |
| 283 | return path.substr(slash); |
| 284 | else |
| 285 | return path.substr(slash, dot - slash); |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 288 | bool Path::hasMagicNumber(const std::string &Magic) const { |
Reid Spencer | 8b2d1aa | 2005-07-08 17:46:10 +0000 | [diff] [blame] | 289 | if (!isFile()) |
| 290 | return false; |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 291 | size_t len = Magic.size(); |
Reid Spencer | be31d2a | 2004-11-16 17:14:08 +0000 | [diff] [blame] | 292 | assert(len < 1024 && "Request for magic string too long"); |
| 293 | char* buf = (char*) alloca(1 + len); |
| 294 | int fd = ::open(path.c_str(),O_RDONLY); |
| 295 | if (fd < 0) |
| 296 | return false; |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 297 | size_t read_len = ::read(fd, buf, len); |
Reid Spencer | be31d2a | 2004-11-16 17:14:08 +0000 | [diff] [blame] | 298 | close(fd); |
Reid Spencer | 1b6b99b | 2004-12-13 03:00:51 +0000 | [diff] [blame] | 299 | if (len != read_len) |
| 300 | return false; |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 301 | buf[len] = '\0'; |
| 302 | return Magic == buf; |
| 303 | } |
| 304 | |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 305 | bool Path::getMagicNumber(std::string& Magic, unsigned len) const { |
| 306 | if (!isFile()) |
| 307 | return false; |
Reid Spencer | be31d2a | 2004-11-16 17:14:08 +0000 | [diff] [blame] | 308 | assert(len < 1024 && "Request for magic string too long"); |
| 309 | char* buf = (char*) alloca(1 + len); |
| 310 | int fd = ::open(path.c_str(),O_RDONLY); |
| 311 | if (fd < 0) |
| 312 | return false; |
Reid Spencer | 86ac2dc | 2004-12-02 09:09:48 +0000 | [diff] [blame] | 313 | ssize_t bytes_read = ::read(fd, buf, len); |
| 314 | ::close(fd); |
| 315 | if (ssize_t(len) != bytes_read) { |
| 316 | Magic.clear(); |
Reid Spencer | be31d2a | 2004-11-16 17:14:08 +0000 | [diff] [blame] | 317 | return false; |
Reid Spencer | 86ac2dc | 2004-12-02 09:09:48 +0000 | [diff] [blame] | 318 | } |
| 319 | Magic.assign(buf,len); |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 320 | return true; |
| 321 | } |
| 322 | |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 323 | bool |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 324 | Path::isBytecodeFile() const { |
Reid Spencer | 8b2d1aa | 2005-07-08 17:46:10 +0000 | [diff] [blame] | 325 | if (!isFile()) |
| 326 | return false; |
Reid Spencer | 9195f37 | 2004-11-09 20:26:31 +0000 | [diff] [blame] | 327 | char buffer[ 4]; |
| 328 | buffer[0] = 0; |
Reid Spencer | 1fce091 | 2004-12-11 00:14:15 +0000 | [diff] [blame] | 329 | int fd = ::open(path.c_str(),O_RDONLY); |
| 330 | if (fd < 0) |
| 331 | return false; |
| 332 | ssize_t bytes_read = ::read(fd, buffer, 4); |
| 333 | ::close(fd); |
| 334 | if (4 != bytes_read) |
| 335 | return false; |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 336 | |
| 337 | return (buffer[0] == 'l' && buffer[1] == 'l' && buffer[2] == 'v' && |
| 338 | (buffer[3] == 'c' || buffer[3] == 'm')); |
Reid Spencer | 1b554b4 | 2004-09-11 04:55:08 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | bool |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 342 | Path::exists() const { |
| 343 | return 0 == access(path.c_str(), F_OK ); |
| 344 | } |
| 345 | |
| 346 | bool |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 347 | Path::canRead() const { |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 348 | return 0 == access(path.c_str(), F_OK | R_OK ); |
| 349 | } |
| 350 | |
| 351 | bool |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 352 | Path::canWrite() const { |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 353 | return 0 == access(path.c_str(), F_OK | W_OK ); |
| 354 | } |
| 355 | |
| 356 | bool |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 357 | Path::canExecute() const { |
Reid Spencer | 8b2d1aa | 2005-07-08 17:46:10 +0000 | [diff] [blame] | 358 | if (0 != access(path.c_str(), R_OK | X_OK )) |
| 359 | return false; |
Misha Brukman | 8177bf8 | 2005-04-20 15:33:22 +0000 | [diff] [blame] | 360 | struct stat st; |
| 361 | int r = stat(path.c_str(), &st); |
| 362 | if (r != 0 || !S_ISREG(st.st_mode)) |
| 363 | return false; |
Reid Spencer | 8b2d1aa | 2005-07-08 17:46:10 +0000 | [diff] [blame] | 364 | return true; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | std::string |
| 368 | Path::getLast() const { |
| 369 | // Find the last slash |
| 370 | size_t pos = path.rfind('/'); |
| 371 | |
| 372 | // Handle the corner cases |
| 373 | if (pos == std::string::npos) |
| 374 | return path; |
| 375 | |
| 376 | // If the last character is a slash |
| 377 | if (pos == path.length()-1) { |
| 378 | // Find the second to last slash |
| 379 | size_t pos2 = path.rfind('/', pos-1); |
| 380 | if (pos2 == std::string::npos) |
| 381 | return path.substr(0,pos); |
| 382 | else |
| 383 | return path.substr(pos2+1,pos-pos2-1); |
| 384 | } |
| 385 | // Return everything after the last slash |
| 386 | return path.substr(pos+1); |
| 387 | } |
| 388 | |
Reid Spencer | b608a81 | 2004-11-16 06:15:19 +0000 | [diff] [blame] | 389 | void |
| 390 | Path::getStatusInfo(StatusInfo& info) const { |
Reid Spencer | 9195f37 | 2004-11-09 20:26:31 +0000 | [diff] [blame] | 391 | struct stat buf; |
| 392 | if (0 != stat(path.c_str(), &buf)) { |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 393 | ThrowErrno(path + ": can't determine type of path object: "); |
Reid Spencer | 9195f37 | 2004-11-09 20:26:31 +0000 | [diff] [blame] | 394 | } |
| 395 | info.fileSize = buf.st_size; |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 396 | info.modTime.fromEpochTime(buf.st_mtime); |
Reid Spencer | 9195f37 | 2004-11-09 20:26:31 +0000 | [diff] [blame] | 397 | info.mode = buf.st_mode; |
| 398 | info.user = buf.st_uid; |
| 399 | info.group = buf.st_gid; |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 400 | info.isDir = S_ISDIR(buf.st_mode); |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Reid Spencer | 77cc91d | 2004-12-13 19:59:50 +0000 | [diff] [blame] | 403 | static bool AddPermissionBits(const std::string& Filename, int bits) { |
| 404 | // Get the umask value from the operating system. We want to use it |
| 405 | // when changing the file's permissions. Since calling umask() sets |
| 406 | // the umask and returns its old value, we must call it a second |
| 407 | // time to reset it to the user's preference. |
| 408 | int mask = umask(0777); // The arg. to umask is arbitrary. |
| 409 | umask(mask); // Restore the umask. |
| 410 | |
| 411 | // Get the file's current mode. |
| 412 | struct stat st; |
| 413 | if ((stat(Filename.c_str(), &st)) == -1) |
| 414 | return false; |
| 415 | |
| 416 | // Change the file to have whichever permissions bits from 'bits' |
| 417 | // that the umask would not disable. |
| 418 | if ((chmod(Filename.c_str(), (st.st_mode | (bits & ~mask)))) == -1) |
| 419 | return false; |
| 420 | |
| 421 | return true; |
| 422 | } |
| 423 | |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 424 | void Path::makeReadableOnDisk() { |
Reid Spencer | 77cc91d | 2004-12-13 19:59:50 +0000 | [diff] [blame] | 425 | if (!AddPermissionBits(path,0444)) |
| 426 | ThrowErrno(path + ": can't make file readable"); |
| 427 | } |
| 428 | |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 429 | void Path::makeWriteableOnDisk() { |
Reid Spencer | 77cc91d | 2004-12-13 19:59:50 +0000 | [diff] [blame] | 430 | if (!AddPermissionBits(path,0222)) |
| 431 | ThrowErrno(path + ": can't make file writable"); |
| 432 | } |
| 433 | |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 434 | void Path::makeExecutableOnDisk() { |
Reid Spencer | 77cc91d | 2004-12-13 19:59:50 +0000 | [diff] [blame] | 435 | if (!AddPermissionBits(path,0111)) |
| 436 | ThrowErrno(path + ": can't make file executable"); |
| 437 | } |
| 438 | |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 439 | bool |
Reid Spencer | b608a81 | 2004-11-16 06:15:19 +0000 | [diff] [blame] | 440 | Path::getDirectoryContents(std::set<Path>& result) const { |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 441 | if (!isDirectory()) |
| 442 | return false; |
| 443 | DIR* direntries = ::opendir(path.c_str()); |
| 444 | if (direntries == 0) |
| 445 | ThrowErrno(path + ": can't open directory"); |
| 446 | |
Reid Spencer | 3be872e | 2005-07-28 16:25:57 +0000 | [diff] [blame] | 447 | std::string dirPath = path; |
| 448 | if (!lastIsSlash(dirPath)) |
| 449 | dirPath += '/'; |
| 450 | |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 451 | result.clear(); |
| 452 | struct dirent* de = ::readdir(direntries); |
Misha Brukman | 4619c75 | 2005-04-20 04:04:07 +0000 | [diff] [blame] | 453 | for ( ; de != 0; de = ::readdir(direntries)) { |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 454 | if (de->d_name[0] != '.') { |
Reid Spencer | 3be872e | 2005-07-28 16:25:57 +0000 | [diff] [blame] | 455 | Path aPath(dirPath + (const char*)de->d_name); |
Chris Lattner | b14c342 | 2006-07-07 21:21:06 +0000 | [diff] [blame] | 456 | struct stat st; |
| 457 | if (0 != lstat(aPath.path.c_str(), &st)) { |
| 458 | if (S_ISLNK(st.st_mode)) |
Misha Brukman | 4619c75 | 2005-04-20 04:04:07 +0000 | [diff] [blame] | 459 | continue; // dangling symlink -- ignore |
Chris Lattner | b14c342 | 2006-07-07 21:21:06 +0000 | [diff] [blame] | 460 | ThrowErrno(aPath.path + ": can't determine file object type"); |
Misha Brukman | 4619c75 | 2005-04-20 04:04:07 +0000 | [diff] [blame] | 461 | } |
Reid Spencer | b608a81 | 2004-11-16 06:15:19 +0000 | [diff] [blame] | 462 | result.insert(aPath); |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 463 | } |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | closedir(direntries); |
| 467 | return true; |
Reid Spencer | 9195f37 | 2004-11-09 20:26:31 +0000 | [diff] [blame] | 468 | } |
| 469 | |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 470 | bool |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 471 | Path::set(const std::string& a_path) { |
| 472 | if (a_path.empty()) |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 473 | return false; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 474 | std::string save(path); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 475 | path = a_path; |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 476 | if (!isValid()) { |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 477 | path = save; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 478 | return false; |
| 479 | } |
| 480 | return true; |
| 481 | } |
| 482 | |
| 483 | bool |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 484 | Path::appendComponent(const std::string& name) { |
| 485 | if (name.empty()) |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 486 | return false; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 487 | std::string save(path); |
Reid Spencer | 3be872e | 2005-07-28 16:25:57 +0000 | [diff] [blame] | 488 | if (!lastIsSlash(path)) |
| 489 | path += '/'; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 490 | path += name; |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 491 | if (!isValid()) { |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 492 | path = save; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 493 | return false; |
| 494 | } |
| 495 | return true; |
| 496 | } |
| 497 | |
| 498 | bool |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 499 | Path::eraseComponent() { |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 500 | size_t slashpos = path.rfind('/',path.size()); |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 501 | if (slashpos == 0 || slashpos == std::string::npos) { |
| 502 | path.erase(); |
| 503 | return true; |
| 504 | } |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 505 | if (slashpos == path.size() - 1) |
| 506 | slashpos = path.rfind('/',slashpos-1); |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 507 | if (slashpos == std::string::npos) { |
| 508 | path.erase(); |
| 509 | return true; |
| 510 | } |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 511 | path.erase(slashpos); |
| 512 | return true; |
| 513 | } |
| 514 | |
| 515 | bool |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 516 | Path::appendSuffix(const std::string& suffix) { |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 517 | std::string save(path); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 518 | path.append("."); |
| 519 | path.append(suffix); |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 520 | if (!isValid()) { |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 521 | path = save; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 522 | return false; |
| 523 | } |
| 524 | return true; |
| 525 | } |
| 526 | |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 527 | bool |
| 528 | Path::eraseSuffix() { |
Reid Spencer | 6371ccb | 2005-07-08 06:53:26 +0000 | [diff] [blame] | 529 | std::string save = path; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 530 | size_t dotpos = path.rfind('.',path.size()); |
| 531 | size_t slashpos = path.rfind('/',path.size()); |
Jeff Cohen | 563a17f | 2005-07-08 04:49:16 +0000 | [diff] [blame] | 532 | if (dotpos != std::string::npos) { |
Jeff Cohen | 73f3667 | 2005-07-09 18:42:02 +0000 | [diff] [blame] | 533 | if (slashpos == std::string::npos || dotpos > slashpos+1) { |
Jeff Cohen | 563a17f | 2005-07-08 04:49:16 +0000 | [diff] [blame] | 534 | path.erase(dotpos, path.size()-dotpos); |
Jeff Cohen | 85c716f | 2005-07-08 05:02:13 +0000 | [diff] [blame] | 535 | return true; |
Jeff Cohen | 563a17f | 2005-07-08 04:49:16 +0000 | [diff] [blame] | 536 | } |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 537 | } |
Reid Spencer | 6371ccb | 2005-07-08 06:53:26 +0000 | [diff] [blame] | 538 | if (!isValid()) |
| 539 | path = save; |
Jeff Cohen | 563a17f | 2005-07-08 04:49:16 +0000 | [diff] [blame] | 540 | return false; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 543 | bool |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 544 | Path::createDirectoryOnDisk( bool create_parents) { |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 545 | // Get a writeable copy of the path name |
| 546 | char pathname[MAXPATHLEN]; |
| 547 | path.copy(pathname,MAXPATHLEN); |
| 548 | |
| 549 | // Null-terminate the last component |
| 550 | int lastchar = path.length() - 1 ; |
| 551 | if (pathname[lastchar] == '/') |
| 552 | pathname[lastchar] = 0; |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 553 | else |
| 554 | pathname[lastchar+1] = 0; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 555 | |
| 556 | // If we're supposed to create intermediate directories |
| 557 | if ( create_parents ) { |
| 558 | // Find the end of the initial name component |
| 559 | char * next = strchr(pathname,'/'); |
| 560 | if ( pathname[0] == '/') |
| 561 | next = strchr(&pathname[1],'/'); |
| 562 | |
| 563 | // Loop through the directory components until we're done |
| 564 | while ( next != 0 ) { |
| 565 | *next = 0; |
| 566 | if (0 != access(pathname, F_OK | R_OK | W_OK)) |
| 567 | if (0 != mkdir(pathname, S_IRWXU | S_IRWXG)) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 568 | ThrowErrno(std::string(pathname) + ": can't create directory"); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 569 | char* save = next; |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 570 | next = strchr(next+1,'/'); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 571 | *save = '/'; |
| 572 | } |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 573 | } |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 574 | |
| 575 | if (0 != access(pathname, F_OK | R_OK)) |
| 576 | if (0 != mkdir(pathname, S_IRWXU | S_IRWXG)) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 577 | ThrowErrno(std::string(pathname) + ": can't create directory"); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 578 | return true; |
| 579 | } |
| 580 | |
| 581 | bool |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 582 | Path::createFileOnDisk() { |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 583 | // Create the file |
Reid Spencer | 622e220 | 2004-09-18 19:25:11 +0000 | [diff] [blame] | 584 | int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR); |
| 585 | if (fd < 0) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 586 | ThrowErrno(path + ": can't create file"); |
Reid Spencer | 622e220 | 2004-09-18 19:25:11 +0000 | [diff] [blame] | 587 | ::close(fd); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 588 | |
| 589 | return true; |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 590 | } |
| 591 | |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 592 | bool |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 593 | Path::createTemporaryFileOnDisk(bool reuse_current) { |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 594 | // Make this into a unique file name |
Reid Spencer | 07f9f4e | 2004-12-15 08:32:45 +0000 | [diff] [blame] | 595 | makeUnique( reuse_current ); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 596 | |
| 597 | // create the file |
| 598 | int outFile = ::open(path.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0666); |
| 599 | if (outFile != -1) { |
| 600 | ::close(outFile); |
| 601 | return true; |
Reid Spencer | 9195f37 | 2004-11-09 20:26:31 +0000 | [diff] [blame] | 602 | } |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 603 | return false; |
Reid Spencer | 9195f37 | 2004-11-09 20:26:31 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | bool |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 607 | Path::eraseFromDisk(bool remove_contents) const { |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 608 | // Make sure we're dealing with a directory |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 609 | if (isFile()) { |
| 610 | if (0 != unlink(path.c_str())) |
| 611 | ThrowErrno(path + ": can't destroy file"); |
| 612 | } else if (isDirectory()) { |
| 613 | if (remove_contents) { |
| 614 | // Recursively descend the directory to remove its content |
| 615 | std::string cmd("/bin/rm -rf "); |
| 616 | cmd += path; |
| 617 | system(cmd.c_str()); |
| 618 | } else { |
| 619 | // Otherwise, try to just remove the one directory |
| 620 | char pathname[MAXPATHLEN]; |
| 621 | path.copy(pathname,MAXPATHLEN); |
| 622 | int lastchar = path.length() - 1 ; |
| 623 | if (pathname[lastchar] == '/') |
| 624 | pathname[lastchar] = 0; |
| 625 | else |
| 626 | pathname[lastchar+1] = 0; |
| 627 | if ( 0 != rmdir(pathname)) |
| 628 | ThrowErrno(std::string(pathname) + ": can't destroy directory"); |
| 629 | } |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 630 | } |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 631 | else |
| 632 | return false; |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 633 | return true; |
| 634 | } |
| 635 | |
| 636 | bool |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 637 | Path::renamePathOnDisk(const Path& newName) { |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 638 | if (0 != ::rename(path.c_str(), newName.c_str())) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 639 | ThrowErrno(std::string("can't rename '") + path + "' as '" + |
| 640 | newName.toString() + "' "); |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 641 | return true; |
| 642 | } |
| 643 | |
| 644 | bool |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 645 | Path::setStatusInfoOnDisk(const StatusInfo& si) const { |
Reid Spencer | eaf1815 | 2004-11-14 22:08:36 +0000 | [diff] [blame] | 646 | struct utimbuf utb; |
| 647 | utb.actime = si.modTime.toPosixTime(); |
| 648 | utb.modtime = utb.actime; |
| 649 | if (0 != ::utime(path.c_str(),&utb)) |
| 650 | ThrowErrno(path + ": can't set file modification time"); |
| 651 | if (0 != ::chmod(path.c_str(),si.mode)) |
| 652 | ThrowErrno(path + ": can't set mode"); |
Reid Spencer | 8e66595 | 2004-08-29 05:24:01 +0000 | [diff] [blame] | 653 | return true; |
| 654 | } |
| 655 | |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 656 | void |
Reid Spencer | 78076f6 | 2004-12-21 03:27:08 +0000 | [diff] [blame] | 657 | sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) { |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 658 | int inFile = -1; |
| 659 | int outFile = -1; |
| 660 | try { |
| 661 | inFile = ::open(Src.c_str(), O_RDONLY); |
| 662 | if (inFile == -1) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 663 | ThrowErrno(Src.toString() + ": can't open source file to copy: "); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 664 | |
| 665 | outFile = ::open(Dest.c_str(), O_WRONLY|O_CREAT, 0666); |
| 666 | if (outFile == -1) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 667 | ThrowErrno(Dest.toString() +": can't create destination file for copy: "); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 668 | |
| 669 | char Buffer[16*1024]; |
| 670 | while (ssize_t Amt = ::read(inFile, Buffer, 16*1024)) { |
| 671 | if (Amt == -1) { |
| 672 | if (errno != EINTR && errno != EAGAIN) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 673 | ThrowErrno(Src.toString()+": can't read source file: "); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 674 | } else { |
| 675 | char *BufPtr = Buffer; |
| 676 | while (Amt) { |
| 677 | ssize_t AmtWritten = ::write(outFile, BufPtr, Amt); |
| 678 | if (AmtWritten == -1) { |
| 679 | if (errno != EINTR && errno != EAGAIN) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 680 | ThrowErrno(Dest.toString() + ": can't write destination file: "); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 681 | } else { |
| 682 | Amt -= AmtWritten; |
| 683 | BufPtr += AmtWritten; |
| 684 | } |
| 685 | } |
| 686 | } |
| 687 | } |
| 688 | ::close(inFile); |
| 689 | ::close(outFile); |
| 690 | } catch (...) { |
| 691 | if (inFile != -1) |
| 692 | ::close(inFile); |
| 693 | if (outFile != -1) |
| 694 | ::close(outFile); |
| 695 | throw; |
| 696 | } |
| 697 | } |
| 698 | |
| 699 | void |
Reid Spencer | 07f9f4e | 2004-12-15 08:32:45 +0000 | [diff] [blame] | 700 | Path::makeUnique(bool reuse_current) { |
| 701 | if (reuse_current && !exists()) |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 702 | return; // File doesn't exist already, just use it! |
| 703 | |
| 704 | // Append an XXXXXX pattern to the end of the file for use with mkstemp, |
| 705 | // mktemp or our own implementation. |
| 706 | char *FNBuffer = (char*) alloca(path.size()+8); |
| 707 | path.copy(FNBuffer,path.size()); |
| 708 | strcpy(FNBuffer+path.size(), "-XXXXXX"); |
| 709 | |
| 710 | #if defined(HAVE_MKSTEMP) |
| 711 | int TempFD; |
| 712 | if ((TempFD = mkstemp(FNBuffer)) == -1) { |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 713 | ThrowErrno(path + ": can't make unique filename"); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | // We don't need to hold the temp file descriptor... we will trust that no one |
| 717 | // will overwrite/delete the file before we can open it again. |
| 718 | close(TempFD); |
| 719 | |
| 720 | // Save the name |
| 721 | path = FNBuffer; |
| 722 | #elif defined(HAVE_MKTEMP) |
| 723 | // If we don't have mkstemp, use the old and obsolete mktemp function. |
| 724 | if (mktemp(FNBuffer) == 0) { |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 725 | ThrowErrno(path + ": can't make unique filename"); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | // Save the name |
| 729 | path = FNBuffer; |
| 730 | #else |
| 731 | // Okay, looks like we have to do it all by our lonesome. |
| 732 | static unsigned FCounter = 0; |
| 733 | unsigned offset = path.size() + 1; |
| 734 | while ( FCounter < 999999 && exists()) { |
| 735 | sprintf(FNBuffer+offset,"%06u",++FCounter); |
| 736 | path = FNBuffer; |
| 737 | } |
| 738 | if (FCounter > 999999) |
Reid Spencer | 2aafadc | 2005-04-21 02:50:10 +0000 | [diff] [blame] | 739 | throw std::string(path + ": can't make unique filename: too many files"); |
Reid Spencer | c29befb | 2004-12-15 01:50:13 +0000 | [diff] [blame] | 740 | #endif |
| 741 | |
| 742 | } |
Reid Spencer | b89a223 | 2004-08-25 06:20:07 +0000 | [diff] [blame] | 743 | } |
| 744 | |