blob: b25e66140bfb4359d69943b9c0733ab461e98665 [file] [log] [blame]
Reid Spencerb016a372004-09-15 05:49:50 +00001//===- llvm/System/Linux/Path.cpp - Linux Path Implementation ---*- C++ -*-===//
2//
Reid Spencercbad7012004-09-11 04:59:30 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencerb016a372004-09-15 05:49:50 +00007//
8// Modified by Henrik Bach to comply with at least MinGW.
Reid Spencerd0c9e0e2004-09-18 19:29:16 +00009// Ported to Win32 by Jeff Cohen.
Reid Spencerb016a372004-09-15 05:49:50 +000010//
Reid Spencercbad7012004-09-11 04:59:30 +000011//===----------------------------------------------------------------------===//
12//
13// This file provides the Win32 specific implementation of the Path class.
14//
15//===----------------------------------------------------------------------===//
16
17//===----------------------------------------------------------------------===//
Reid Spencerb016a372004-09-15 05:49:50 +000018//=== WARNING: Implementation here must contain only generic Win32 code that
19//=== is guaranteed to work on *all* Win32 variants.
Reid Spencercbad7012004-09-11 04:59:30 +000020//===----------------------------------------------------------------------===//
21
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000022#include "Win32.h"
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000023#include <malloc.h>
Reid Spencercbad7012004-09-11 04:59:30 +000024
Jeff Cohencb652552004-12-24 02:38:34 +000025// We need to undo a macro defined in Windows.h, otherwise we won't compile:
26#undef CopyFile
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +000027#undef GetCurrentDirectory
Jeff Cohencb652552004-12-24 02:38:34 +000028
Jeff Cohen966fa412005-07-09 18:42:49 +000029// Windows happily accepts either forward or backward slashes, though any path
30// returned by a Win32 API will have backward slashes. As LLVM code basically
31// assumes forward slashes are used, backward slashs are converted where they
32// can be introduced into a path.
33//
34// Another invariant is that a path ends with a slash if and only if the path
35// is a root directory. Any other use of a trailing slash is stripped. Unlike
36// in Unix, Windows has a rather complicated notion of a root path and this
37// invariant helps simply the code.
38
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000039static void FlipBackSlashes(std::string& s) {
40 for (size_t i = 0; i < s.size(); i++)
41 if (s[i] == '\\')
42 s[i] = '/';
43}
44
Reid Spencercbad7012004-09-11 04:59:30 +000045namespace llvm {
Reid Spencerb016a372004-09-15 05:49:50 +000046namespace sys {
Chris Lattnera17fa282008-03-13 05:17:59 +000047const char PathSeparator = ';';
Chris Lattnere1b332a2008-02-27 06:17:10 +000048
Reid Spencerb016a372004-09-15 05:49:50 +000049bool
Reid Spencer07adb282004-11-05 22:15:36 +000050Path::isValid() const {
Reid Spencerb016a372004-09-15 05:49:50 +000051 if (path.empty())
52 return false;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000053
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000054 // If there is a colon, it must be the second character, preceded by a letter
55 // and followed by something.
56 size_t len = path.size();
57 size_t pos = path.rfind(':',len);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000058 size_t rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000059 if (pos != std::string::npos) {
60 if (pos != 1 || !isalpha(path[0]) || len < 3)
61 return false;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000062 rootslash = 2;
63 }
Jeff Cohen85c716f2005-07-08 05:02:13 +000064
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000065 // Look for a UNC path, and if found adjust our notion of the root slash.
66 if (len > 3 && path[0] == '/' && path[1] == '/') {
67 rootslash = path.find('/', 2);
68 if (rootslash == std::string::npos)
69 rootslash = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000070 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +000071
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000072 // Check for illegal characters.
73 if (path.find_first_of("\\<>\"|\001\002\003\004\005\006\007\010\011\012"
74 "\013\014\015\016\017\020\021\022\023\024\025\026"
75 "\027\030\031\032\033\034\035\036\037")
76 != std::string::npos)
77 return false;
Jeff Cohen85c716f2005-07-08 05:02:13 +000078
Jeff Cohen8f0e8f22005-07-08 04:50:08 +000079 // Remove trailing slash, unless it's a root slash.
80 if (len > rootslash+1 && path[len-1] == '/')
81 path.erase(--len);
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000082
Jeff Cohen3bbbcc12005-01-14 04:09:39 +000083 // Check each component for legality.
84 for (pos = 0; pos < len; ++pos) {
85 // A component may not end in a space.
86 if (path[pos] == ' ') {
87 if (path[pos+1] == '/' || path[pos+1] == '\0')
88 return false;
89 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +000090
Jeff Cohen3bbbcc12005-01-14 04:09:39 +000091 // A component may not end in a period.
92 if (path[pos] == '.') {
93 if (path[pos+1] == '/' || path[pos+1] == '\0') {
94 // Unless it is the pseudo-directory "."...
95 if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
96 return true;
97 // or "..".
98 if (pos > 0 && path[pos-1] == '.') {
99 if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
100 return true;
101 }
102 return false;
103 }
104 }
105 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000106
107 return true;
Reid Spencercbad7012004-09-11 04:59:30 +0000108}
109
Reid Spencer69cce812007-03-29 16:43:20 +0000110bool
111Path::isAbsolute() const {
Jeff Cohen84892be2007-03-29 17:27:38 +0000112 switch (path.length()) {
113 case 0:
114 return false;
115 case 1:
116 case 2:
117 return path[0] == '/';
118 default:
119 return path[0] == '/' || (path[1] == ':' && path[2] == '/');
120 }
Reid Spencer69cce812007-03-29 16:43:20 +0000121}
122
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000123static Path *TempDirectory = NULL;
124
Reid Spencerb016a372004-09-15 05:49:50 +0000125Path
Reid Spencercab0e432006-08-22 22:46:39 +0000126Path::GetTemporaryDirectory(std::string* ErrMsg) {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000127 if (TempDirectory)
128 return *TempDirectory;
129
130 char pathname[MAX_PATH];
Reid Spencercab0e432006-08-22 22:46:39 +0000131 if (!GetTempPath(MAX_PATH, pathname)) {
132 if (ErrMsg)
133 *ErrMsg = "Can't determine temporary directory";
134 return Path();
135 }
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000136
Reid Spencerb016a372004-09-15 05:49:50 +0000137 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000138 result.set(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000139
140 // Append a subdirectory passed on our process id so multiple LLVMs don't
141 // step on each other's toes.
Jeff Cohend41b30d2006-11-05 19:31:28 +0000142#ifdef __MINGW32__
143 // Mingw's Win32 header files are broken.
Reid Spencerab4d9b02006-06-08 18:08:43 +0000144 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId()));
Jeff Cohend41b30d2006-11-05 19:31:28 +0000145#else
146 sprintf(pathname, "LLVM_%u", GetCurrentProcessId());
147#endif
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000148 result.appendComponent(pathname);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000149
150 // If there's a directory left over from a previous LLVM execution that
151 // happened to have the same process id, get rid of it.
Reid Spencera229c5c2005-07-08 03:08:58 +0000152 result.eraseFromDisk(true);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000153
154 // And finally (re-)create the empty directory.
Reid Spencera229c5c2005-07-08 03:08:58 +0000155 result.createDirectoryOnDisk(false);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000156 TempDirectory = new Path(result);
157 return *TempDirectory;
Reid Spencerb016a372004-09-15 05:49:50 +0000158}
159
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000160// FIXME: the following set of functions don't map to Windows very well.
Reid Spencerb016a372004-09-15 05:49:50 +0000161Path
162Path::GetRootDirectory() {
163 Path result;
Jeff Cohen966fa412005-07-09 18:42:49 +0000164 result.set("C:/");
Reid Spencerb016a372004-09-15 05:49:50 +0000165 return result;
166}
167
Jeff Cohen85c716f2005-07-08 05:02:13 +0000168void
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000169Path::GetSystemLibraryPaths(std::vector<sys::Path>& Paths) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000170 Paths.push_back(sys::Path("C:/WINDOWS/SYSTEM32"));
171 Paths.push_back(sys::Path("C:/WINDOWS"));
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000172}
173
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000174void
Gabor Greifdb5565a2007-07-06 20:28:40 +0000175Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000176 char * env_var = getenv("LLVM_LIB_SEARCH_PATH");
177 if (env_var != 0) {
178 getPathList(env_var,Paths);
179 }
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000180#ifdef LLVM_LIBDIR
181 {
182 Path tmpPath;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000183 if (tmpPath.set(LLVM_LIBDIR))
Reid Spencerc7f08322005-07-07 18:21:42 +0000184 if (tmpPath.canRead())
Reid Spencer6c4b7bd2004-12-13 03:03:42 +0000185 Paths.push_back(tmpPath);
186 }
187#endif
188 GetSystemLibraryPaths(Paths);
Reid Spencerb016a372004-09-15 05:49:50 +0000189}
190
191Path
192Path::GetLLVMDefaultConfigDir() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000193 // TODO: this isn't going to fly on Windows
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000194 return Path("/etc/llvm");
Reid Spencerb016a372004-09-15 05:49:50 +0000195}
196
197Path
Reid Spencerb016a372004-09-15 05:49:50 +0000198Path::GetUserHomeDirectory() {
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000199 // TODO: Typical Windows setup doesn't define HOME.
Reid Spencerb016a372004-09-15 05:49:50 +0000200 const char* home = getenv("HOME");
201 if (home) {
202 Path result;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000203 if (result.set(home))
Reid Spencerb016a372004-09-15 05:49:50 +0000204 return result;
205 }
206 return GetRootDirectory();
207}
Ted Kremenek79200782007-12-18 22:07:33 +0000208
209Path
210Path::GetCurrentDirectory() {
211 char pathname[MAX_PATH];
Anton Korobeynikov64ddbe42007-12-22 14:26:49 +0000212 ::GetCurrentDirectoryA(MAX_PATH,pathname);
Ted Kremenek79200782007-12-18 22:07:33 +0000213 return Path(pathname);
214}
215
Chris Lattner1a091442008-03-03 02:55:43 +0000216/// GetMainExecutable - Return the path to the main executable, given the
217/// value of argv[0] from program startup.
218Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
219 return Path();
220}
221
Ted Kremenek79200782007-12-18 22:07:33 +0000222
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000223// FIXME: the above set of functions don't map to Windows very well.
224
Jeff Cohen966fa412005-07-09 18:42:49 +0000225
226bool
227Path::isRootDirectory() const {
228 size_t len = path.size();
229 return len > 0 && path[len-1] == '/';
Reid Spencera229c5c2005-07-08 03:08:58 +0000230}
231
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000232std::string
Reid Spencer07adb282004-11-05 22:15:36 +0000233Path::getBasename() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000234 // Find the last slash
235 size_t slash = path.rfind('/');
236 if (slash == std::string::npos)
237 slash = 0;
238 else
239 slash++;
240
Jeff Cohen966fa412005-07-09 18:42:49 +0000241 size_t dot = path.rfind('.');
242 if (dot == std::string::npos || dot < slash)
243 return path.substr(slash);
244 else
245 return path.substr(slash, dot - slash);
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000246}
247
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000248bool
Reid Spencerb016a372004-09-15 05:49:50 +0000249Path::exists() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000250 DWORD attr = GetFileAttributes(path.c_str());
251 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000252}
253
254bool
Ted Kremenekfd527112007-12-18 19:46:22 +0000255Path::isDirectory() const {
256 DWORD attr = GetFileAttributes(path.c_str());
257 return (attr != INVALID_FILE_ATTRIBUTES) &&
258 (attr & FILE_ATTRIBUTE_DIRECTORY);
259}
260
261bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000262Path::canRead() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000263 // FIXME: take security attributes into account.
264 DWORD attr = GetFileAttributes(path.c_str());
265 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000266}
267
268bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000269Path::canWrite() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000270 // FIXME: take security attributes into account.
271 DWORD attr = GetFileAttributes(path.c_str());
272 return (attr != INVALID_FILE_ATTRIBUTES) && !(attr & FILE_ATTRIBUTE_READONLY);
Reid Spencerb016a372004-09-15 05:49:50 +0000273}
274
275bool
Reid Spencerc7f08322005-07-07 18:21:42 +0000276Path::canExecute() const {
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000277 // FIXME: take security attributes into account.
278 DWORD attr = GetFileAttributes(path.c_str());
279 return attr != INVALID_FILE_ATTRIBUTES;
Reid Spencerb016a372004-09-15 05:49:50 +0000280}
281
282std::string
283Path::getLast() const {
284 // Find the last slash
285 size_t pos = path.rfind('/');
286
287 // Handle the corner cases
288 if (pos == std::string::npos)
289 return path;
290
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000291 // If the last character is a slash, we have a root directory
292 if (pos == path.length()-1)
293 return path;
294
Reid Spencerb016a372004-09-15 05:49:50 +0000295 // Return everything after the last slash
296 return path.substr(pos+1);
297}
298
Reid Spencer8475ec02007-03-29 19:05:44 +0000299const FileStatus *
Reid Spencer2ae9d112007-04-07 18:52:17 +0000300PathWithStatus::getFileStatus(bool update, std::string *ErrStr) const {
301 if (!fsIsValid || update) {
Reid Spencer69cce812007-03-29 16:43:20 +0000302 WIN32_FILE_ATTRIBUTE_DATA fi;
Reid Spencer8475ec02007-03-29 19:05:44 +0000303 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
304 MakeErrMsg(ErrStr, "getStatusInfo():" + std::string(path) +
Reid Spencer69cce812007-03-29 16:43:20 +0000305 ": Can't get status: ");
Reid Spencer8475ec02007-03-29 19:05:44 +0000306 return 0;
307 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000308
Reid Spencer2ae9d112007-04-07 18:52:17 +0000309 status.fileSize = fi.nFileSizeHigh;
310 status.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
311 status.fileSize += fi.nFileSizeLow;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000312
Reid Spencer2ae9d112007-04-07 18:52:17 +0000313 status.mode = fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0555 : 0777;
314 status.user = 9999; // Not applicable to Windows, so...
315 status.group = 9999; // Not applicable to Windows, so...
Jeff Cohen626e38e2004-12-14 05:26:43 +0000316
Reid Spencer4031bef2007-03-29 17:00:31 +0000317 // FIXME: this is only unique if the file is accessed by the same file path.
318 // How do we do this for C:\dir\file and ..\dir\file ? Unix has inode
319 // numbers, but the concept doesn't exist in Windows.
Reid Spencer2ae9d112007-04-07 18:52:17 +0000320 status.uniqueID = 0;
Reid Spencer4031bef2007-03-29 17:00:31 +0000321 for (unsigned i = 0; i < path.length(); ++i)
Reid Spencer2ae9d112007-04-07 18:52:17 +0000322 status.uniqueID += path[i];
Reid Spencer4031bef2007-03-29 17:00:31 +0000323
Reid Spencer69cce812007-03-29 16:43:20 +0000324 __int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);
Reid Spencer2ae9d112007-04-07 18:52:17 +0000325 status.modTime.fromWin32Time(ft);
Reid Spencer69cce812007-03-29 16:43:20 +0000326
Reid Spencer2ae9d112007-04-07 18:52:17 +0000327 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
328 fsIsValid = true;
Reid Spencer69cce812007-03-29 16:43:20 +0000329 }
Reid Spencer2ae9d112007-04-07 18:52:17 +0000330 return &status;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000331}
332
Reid Spencera34a1572006-08-22 23:54:35 +0000333bool Path::makeReadableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000334 // All files are readable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000335 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000336}
337
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000338bool Path::makeWriteableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000339 DWORD attr = GetFileAttributes(path.c_str());
340
341 // If it doesn't exist, we're done.
342 if (attr == INVALID_FILE_ATTRIBUTES)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000343 return false;
Jeff Cohen626e38e2004-12-14 05:26:43 +0000344
345 if (attr & FILE_ATTRIBUTE_READONLY) {
Reid Spencera34a1572006-08-22 23:54:35 +0000346 if (!SetFileAttributes(path.c_str(), attr & ~FILE_ATTRIBUTE_READONLY)) {
347 MakeErrMsg(ErrMsg, std::string(path) + ": Can't make file writable: ");
348 return true;
349 }
Jeff Cohen626e38e2004-12-14 05:26:43 +0000350 }
Reid Spencera34a1572006-08-22 23:54:35 +0000351 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000352}
353
Reid Spencera34a1572006-08-22 23:54:35 +0000354bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
Jeff Cohen626e38e2004-12-14 05:26:43 +0000355 // All files are executable on Windows (ignoring security attributes).
Reid Spencera34a1572006-08-22 23:54:35 +0000356 return false;
Reid Spencer77cc91d2004-12-13 19:59:50 +0000357}
358
Reid Spencerb016a372004-09-15 05:49:50 +0000359bool
Reid Spencer142ca8e2006-08-23 06:56:27 +0000360Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000361 WIN32_FILE_ATTRIBUTE_DATA fi;
362 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) {
363 MakeErrMsg(ErrMsg, path + ": can't get status of file");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000364 return true;
Jeff Cohen31102892007-04-07 20:47:27 +0000365 }
366
367 if (!(fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
368 if (ErrMsg)
369 *ErrMsg = path + ": not a directory";
Reid Spencer142ca8e2006-08-23 06:56:27 +0000370 return true;
371 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000372
373 result.clear();
374 WIN32_FIND_DATA fd;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000375 std::string searchpath = path;
376 if (path.size() == 0 || searchpath[path.size()-1] == '/')
Jeff Cohen85c716f2005-07-08 05:02:13 +0000377 searchpath += "*";
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000378 else
379 searchpath += "/*";
Jeff Cohen85c716f2005-07-08 05:02:13 +0000380
Jeff Cohen9437bb62005-01-27 03:49:03 +0000381 HANDLE h = FindFirstFile(searchpath.c_str(), &fd);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000382 if (h == INVALID_HANDLE_VALUE) {
Jeff Cohen9437bb62005-01-27 03:49:03 +0000383 if (GetLastError() == ERROR_FILE_NOT_FOUND)
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000384 return true; // not really an error, now is it?
Reid Spencer142ca8e2006-08-23 06:56:27 +0000385 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
386 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000387 }
388
389 do {
Jeff Cohend40a7de2004-12-31 05:07:26 +0000390 if (fd.cFileName[0] == '.')
391 continue;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000392 Path aPath(path);
393 aPath.appendComponent(&fd.cFileName[0]);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000394 result.insert(aPath);
395 } while (FindNextFile(h, &fd));
396
Jeff Cohen51b8d212004-12-31 19:01:08 +0000397 DWORD err = GetLastError();
398 FindClose(h);
399 if (err != ERROR_NO_MORE_FILES) {
400 SetLastError(err);
Reid Spencer142ca8e2006-08-23 06:56:27 +0000401 MakeErrMsg(ErrMsg, path + ": Can't read directory: ");
402 return true;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000403 }
Reid Spencer142ca8e2006-08-23 06:56:27 +0000404 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000405}
406
407bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000408Path::set(const std::string& a_path) {
Dan Gohman30359592008-01-29 13:02:09 +0000409 if (a_path.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000410 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000411 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000412 path = a_path;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000413 FlipBackSlashes(path);
Reid Spencer07adb282004-11-05 22:15:36 +0000414 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000415 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000416 return false;
417 }
418 return true;
419}
420
421bool
Jeff Cohenedb9d6b2005-07-08 02:48:42 +0000422Path::appendComponent(const std::string& name) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000423 if (name.empty())
Reid Spencerb016a372004-09-15 05:49:50 +0000424 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000425 std::string save(path);
426 if (!path.empty()) {
427 size_t last = path.size() - 1;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000428 if (path[last] != '/')
Reid Spencer1cf2d042005-07-07 23:35:23 +0000429 path += '/';
430 }
431 path += name;
Reid Spencer07adb282004-11-05 22:15:36 +0000432 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000433 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000434 return false;
435 }
436 return true;
437}
438
439bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000440Path::eraseComponent() {
Reid Spencerb016a372004-09-15 05:49:50 +0000441 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000442 if (slashpos == path.size() - 1 || slashpos == std::string::npos)
Reid Spencerb016a372004-09-15 05:49:50 +0000443 return false;
Jeff Cohen966fa412005-07-09 18:42:49 +0000444 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000445 path.erase(slashpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000446 if (!isValid()) {
447 path = save;
448 return false;
449 }
Reid Spencerb016a372004-09-15 05:49:50 +0000450 return true;
451}
452
453bool
Reid Spencer07adb282004-11-05 22:15:36 +0000454Path::appendSuffix(const std::string& suffix) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000455 std::string save(path);
Reid Spencerb016a372004-09-15 05:49:50 +0000456 path.append(".");
457 path.append(suffix);
Reid Spencer07adb282004-11-05 22:15:36 +0000458 if (!isValid()) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000459 path = save;
Reid Spencerb016a372004-09-15 05:49:50 +0000460 return false;
461 }
462 return true;
463}
464
465bool
Reid Spencer1cf2d042005-07-07 23:35:23 +0000466Path::eraseSuffix() {
Reid Spencerb016a372004-09-15 05:49:50 +0000467 size_t dotpos = path.rfind('.',path.size());
468 size_t slashpos = path.rfind('/',path.size());
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000469 if (dotpos != std::string::npos) {
Jeff Cohen966fa412005-07-09 18:42:49 +0000470 if (slashpos == std::string::npos || dotpos > slashpos+1) {
471 std::string save(path);
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000472 path.erase(dotpos, path.size()-dotpos);
Jeff Cohen966fa412005-07-09 18:42:49 +0000473 if (!isValid()) {
474 path = save;
475 return false;
476 }
Jeff Cohen85c716f2005-07-08 05:02:13 +0000477 return true;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000478 }
Reid Spencerb016a372004-09-15 05:49:50 +0000479 }
480 return false;
481}
482
Reid Spencer30300992006-08-24 18:58:37 +0000483inline bool PathMsg(std::string* ErrMsg, const char* pathname, const char*msg) {
484 if (ErrMsg)
485 *ErrMsg = std::string(pathname) + ": " + std::string(msg);
486 return true;
487}
488
Reid Spencerb016a372004-09-15 05:49:50 +0000489bool
Reid Spencer30300992006-08-24 18:58:37 +0000490Path::createDirectoryOnDisk(bool create_parents, std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000491 // Get a writeable copy of the path name
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000492 size_t len = path.length();
493 char *pathname = reinterpret_cast<char *>(_alloca(len+2));
494 path.copy(pathname, len);
495 pathname[len] = 0;
Jeff Cohen85c716f2005-07-08 05:02:13 +0000496
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000497 // Make sure it ends with a slash.
498 if (len == 0 || pathname[len - 1] != '/') {
499 pathname[len] = '/';
500 pathname[++len] = 0;
501 }
Reid Spencerb016a372004-09-15 05:49:50 +0000502
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000503 // Determine starting point for initial / search.
504 char *next = pathname;
505 if (pathname[0] == '/' && pathname[1] == '/') {
506 // Skip host name.
507 next = strchr(pathname+2, '/');
508 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000509 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
510
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000511 // Skip share name.
512 next = strchr(next+1, '/');
513 if (next == NULL)
Reid Spencer30300992006-08-24 18:58:37 +0000514 return PathMsg(ErrMsg, pathname,"badly formed remote directory");
515
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000516 next++;
517 if (*next == 0)
Reid Spencer30300992006-08-24 18:58:37 +0000518 return PathMsg(ErrMsg, pathname, "badly formed remote directory");
519
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000520 } else {
521 if (pathname[1] == ':')
522 next += 2; // skip drive letter
523 if (*next == '/')
524 next++; // skip root directory
525 }
Reid Spencerb016a372004-09-15 05:49:50 +0000526
527 // If we're supposed to create intermediate directories
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000528 if (create_parents) {
Reid Spencerb016a372004-09-15 05:49:50 +0000529 // Loop through the directory components until we're done
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000530 while (*next) {
531 next = strchr(next, '/');
Reid Spencerb016a372004-09-15 05:49:50 +0000532 *next = 0;
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000533 if (!CreateDirectory(pathname, NULL))
Reid Spencer30300992006-08-24 18:58:37 +0000534 return MakeErrMsg(ErrMsg,
535 std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000536 *next++ = '/';
Reid Spencerb016a372004-09-15 05:49:50 +0000537 }
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000538 } else {
539 // Drop trailing slash.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000540 pathname[len-1] = 0;
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000541 if (!CreateDirectory(pathname, NULL)) {
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000542 return MakeErrMsg(ErrMsg, std::string(pathname) + ": Can't create directory: ");
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000543 }
Reid Spencerb016a372004-09-15 05:49:50 +0000544 }
Reid Spencer30300992006-08-24 18:58:37 +0000545 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000546}
547
548bool
Reid Spencer30300992006-08-24 18:58:37 +0000549Path::createFileOnDisk(std::string* ErrMsg) {
Reid Spencerb016a372004-09-15 05:49:50 +0000550 // Create the file
Reid Spencer6a0ec6f2004-09-29 00:01:17 +0000551 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000552 FILE_ATTRIBUTE_NORMAL, NULL);
553 if (h == INVALID_HANDLE_VALUE)
Reid Spencer30300992006-08-24 18:58:37 +0000554 return MakeErrMsg(ErrMsg, path + ": Can't create file: ");
Reid Spencerb016a372004-09-15 05:49:50 +0000555
Reid Spencerd0c9e0e2004-09-18 19:29:16 +0000556 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000557 return false;
Reid Spencerb016a372004-09-15 05:49:50 +0000558}
559
560bool
Chris Lattner0c332312006-07-28 22:29:50 +0000561Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const {
Jeff Cohen31102892007-04-07 20:47:27 +0000562 WIN32_FILE_ATTRIBUTE_DATA fi;
563 if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
564 return true;
Chris Lattnerc7c453a2006-08-01 17:51:09 +0000565
Jeff Cohen31102892007-04-07 20:47:27 +0000566 if (fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
Reid Spencer1cf2d042005-07-07 23:35:23 +0000567 // If it doesn't exist, we're done.
Jeff Cohen85c716f2005-07-08 05:02:13 +0000568 if (!exists())
Chris Lattner0c332312006-07-28 22:29:50 +0000569 return false;
Reid Spencer1cf2d042005-07-07 23:35:23 +0000570
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000571 char *pathname = reinterpret_cast<char *>(_alloca(path.length()+3));
Reid Spencer1cf2d042005-07-07 23:35:23 +0000572 int lastchar = path.length() - 1 ;
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000573 path.copy(pathname, lastchar+1);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000574
575 // Make path end with '/*'.
Jeff Cohen8f0e8f22005-07-08 04:50:08 +0000576 if (pathname[lastchar] != '/')
577 pathname[++lastchar] = '/';
Reid Spencer1cf2d042005-07-07 23:35:23 +0000578 pathname[lastchar+1] = '*';
579 pathname[lastchar+2] = 0;
580
581 if (remove_contents) {
582 WIN32_FIND_DATA fd;
583 HANDLE h = FindFirstFile(pathname, &fd);
584
585 // It's a bad idea to alter the contents of a directory while enumerating
586 // its contents. So build a list of its contents first, then destroy them.
587
588 if (h != INVALID_HANDLE_VALUE) {
589 std::vector<Path> list;
590
591 do {
592 if (strcmp(fd.cFileName, ".") == 0)
593 continue;
594 if (strcmp(fd.cFileName, "..") == 0)
595 continue;
596
Jeff Cohen85c716f2005-07-08 05:02:13 +0000597 Path aPath(path);
598 aPath.appendComponent(&fd.cFileName[0]);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000599 list.push_back(aPath);
600 } while (FindNextFile(h, &fd));
601
602 DWORD err = GetLastError();
603 FindClose(h);
604 if (err != ERROR_NO_MORE_FILES) {
605 SetLastError(err);
Reid Spencer05545752006-08-25 21:37:17 +0000606 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000607 }
608
Jeff Cohen85c716f2005-07-08 05:02:13 +0000609 for (std::vector<Path>::iterator I = list.begin(); I != list.end();
Reid Spencer1cf2d042005-07-07 23:35:23 +0000610 ++I) {
611 Path &aPath = *I;
Reid Spencera229c5c2005-07-08 03:08:58 +0000612 aPath.eraseFromDisk(true);
Reid Spencer1cf2d042005-07-07 23:35:23 +0000613 }
614 } else {
615 if (GetLastError() != ERROR_FILE_NOT_FOUND)
Reid Spencer05545752006-08-25 21:37:17 +0000616 return MakeErrMsg(ErrStr, path + ": Can't read directory: ");
Reid Spencer1cf2d042005-07-07 23:35:23 +0000617 }
618 }
619
620 pathname[lastchar] = 0;
621 if (!RemoveDirectory(pathname))
Reid Spencer05545752006-08-25 21:37:17 +0000622 return MakeErrMsg(ErrStr,
623 std::string(pathname) + ": Can't destroy directory: ");
Chris Lattner0c332312006-07-28 22:29:50 +0000624 return false;
Jeff Cohen31102892007-04-07 20:47:27 +0000625 } else {
626 // Read-only files cannot be deleted on Windows. Must remove the read-only
627 // attribute first.
628 if (fi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
629 if (!SetFileAttributes(path.c_str(),
630 fi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
631 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
632 }
633
634 if (!DeleteFile(path.c_str()))
635 return MakeErrMsg(ErrStr, path + ": Can't destroy file: ");
636 return false;
637 }
Reid Spencerb016a372004-09-15 05:49:50 +0000638}
639
Reid Spencer3b0cc782004-12-14 18:42:13 +0000640bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
Reid Spencer3b0cc782004-12-14 18:42:13 +0000641 assert(len < 1024 && "Request for magic string too long");
642 char* buf = (char*) alloca(1 + len);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000643
644 HANDLE h = CreateFile(path.c_str(),
645 GENERIC_READ,
646 FILE_SHARE_READ,
647 NULL,
648 OPEN_EXISTING,
649 FILE_ATTRIBUTE_NORMAL,
650 NULL);
651 if (h == INVALID_HANDLE_VALUE)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000652 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000653
654 DWORD nRead = 0;
655 BOOL ret = ReadFile(h, buf, len, &nRead, NULL);
656 CloseHandle(h);
657
658 if (!ret || nRead != len)
Reid Spencer3b0cc782004-12-14 18:42:13 +0000659 return false;
Jeff Cohen51b8d212004-12-31 19:01:08 +0000660
Reid Spencer3b0cc782004-12-14 18:42:13 +0000661 buf[len] = '\0';
662 Magic = buf;
663 return true;
664}
665
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000666bool
Reid Spencer5a060772006-08-23 07:30:48 +0000667Path::renamePathOnDisk(const Path& newName, std::string* ErrMsg) {
Jeff Cohene564de22006-05-07 02:51:51 +0000668 if (!MoveFileEx(path.c_str(), newName.c_str(), MOVEFILE_REPLACE_EXISTING))
Reid Spencer5a060772006-08-23 07:30:48 +0000669 return MakeErrMsg(ErrMsg, "Can't move '" + path + "' to '" + newName.path
670 + "': ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000671 return true;
672}
673
674bool
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000675Path::setStatusInfoOnDisk(const FileStatus &si, std::string *ErrMsg) const {
Jeff Cohen966fa412005-07-09 18:42:49 +0000676 // FIXME: should work on directories also.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000677 if (!si.isFile) {
678 return true;
679 }
680
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000681 HANDLE h = CreateFile(path.c_str(),
682 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES,
683 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
Jeff Cohend40a7de2004-12-31 05:07:26 +0000684 NULL,
685 OPEN_EXISTING,
686 FILE_ATTRIBUTE_NORMAL,
687 NULL);
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000688 if (h == INVALID_HANDLE_VALUE)
Chris Lattner1bebfb52006-07-28 22:36:17 +0000689 return true;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000690
691 BY_HANDLE_FILE_INFORMATION bhfi;
692 if (!GetFileInformationByHandle(h, &bhfi)) {
Jeff Cohen51b8d212004-12-31 19:01:08 +0000693 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000694 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000695 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000696 return MakeErrMsg(ErrMsg, path + ": GetFileInformationByHandle: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000697 }
698
699 FILETIME ft;
700 (uint64_t&)ft = si.modTime.toWin32Time();
701 BOOL ret = SetFileTime(h, NULL, &ft, &ft);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000702 DWORD err = GetLastError();
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000703 CloseHandle(h);
Jeff Cohen51b8d212004-12-31 19:01:08 +0000704 if (!ret) {
705 SetLastError(err);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000706 return MakeErrMsg(ErrMsg, path + ": SetFileTime: ");
Jeff Cohen51b8d212004-12-31 19:01:08 +0000707 }
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000708
709 // Best we can do with Unix permission bits is to interpret the owner
710 // writable bit.
711 if (si.mode & 0200) {
712 if (bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
713 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000714 bhfi.dwFileAttributes & ~FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000715 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000716 }
717 } else {
718 if (!(bhfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
719 if (!SetFileAttributes(path.c_str(),
Jeff Cohend40a7de2004-12-31 05:07:26 +0000720 bhfi.dwFileAttributes | FILE_ATTRIBUTE_READONLY))
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000721 return MakeErrMsg(ErrMsg, path + ": SetFileAttributes: ");
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000722 }
723 }
724
Chris Lattner1bebfb52006-07-28 22:36:17 +0000725 return false;
Jeff Cohenebcb9b32004-12-31 04:39:07 +0000726}
727
Reid Spencer30300992006-08-24 18:58:37 +0000728bool
729CopyFile(const sys::Path &Dest, const sys::Path &Src, std::string* ErrMsg) {
Jeff Cohencb652552004-12-24 02:38:34 +0000730 // Can't use CopyFile macro defined in Windows.h because it would mess up the
731 // above line. We use the expansion it would have in a non-UNICODE build.
732 if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))
Reid Spencer30300992006-08-24 18:58:37 +0000733 return MakeErrMsg(ErrMsg, "Can't copy '" + Src.toString() +
Jeff Cohend40a7de2004-12-31 05:07:26 +0000734 "' to '" + Dest.toString() + "': ");
Reid Spencer30300992006-08-24 18:58:37 +0000735 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000736}
737
Reid Spencer30300992006-08-24 18:58:37 +0000738bool
739Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000740 if (reuse_current && !exists())
Reid Spencer30300992006-08-24 18:58:37 +0000741 return false; // File doesn't exist already, just use it!
Reid Spencerc29befb2004-12-15 01:50:13 +0000742
Jeff Cohen9437bb62005-01-27 03:49:03 +0000743 // Reserve space for -XXXXXX at the end.
744 char *FNBuffer = (char*) alloca(path.size()+8);
745 unsigned offset = path.size();
746 path.copy(FNBuffer, offset);
Reid Spencerc29befb2004-12-15 01:50:13 +0000747
Jeff Cohen966fa412005-07-09 18:42:49 +0000748 // Find a numeric suffix that isn't used by an existing file. Assume there
749 // won't be more than 1 million files with the same prefix. Probably a safe
750 // bet.
Jeff Cohen9437bb62005-01-27 03:49:03 +0000751 static unsigned FCounter = 0;
752 do {
753 sprintf(FNBuffer+offset, "-%06u", FCounter);
754 if (++FCounter > 999999)
755 FCounter = 0;
756 path = FNBuffer;
757 } while (exists());
Reid Spencer30300992006-08-24 18:58:37 +0000758 return false;
Reid Spencerc29befb2004-12-15 01:50:13 +0000759}
760
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000761bool
Reid Spencer30300992006-08-24 18:58:37 +0000762Path::createTemporaryFileOnDisk(bool reuse_current, std::string* ErrMsg) {
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000763 // Make this into a unique file name
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000764 makeUnique(reuse_current, ErrMsg);
Jeff Cohen9437bb62005-01-27 03:49:03 +0000765
766 // Now go and create it
767 HANDLE h = CreateFile(path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW,
768 FILE_ATTRIBUTE_NORMAL, NULL);
769 if (h == INVALID_HANDLE_VALUE)
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000770 return MakeErrMsg(ErrMsg, path + ": can't create file");
Jeff Cohen9437bb62005-01-27 03:49:03 +0000771
772 CloseHandle(h);
Reid Spencer30300992006-08-24 18:58:37 +0000773 return false;
Reid Spencer07f9f4e2004-12-15 08:32:45 +0000774}
775
Reid Spencerb016a372004-09-15 05:49:50 +0000776}
Reid Spencercbad7012004-09-11 04:59:30 +0000777}