For PR495:

Get rid of the difference between file paths and directory paths. The Path
class now simply stores a path that can refer to either a file or a
directory. This required various changes in the implementation and interface
of the class with the corresponding impact to its users. Doxygen comments were
also updated to reflect these changes. Interface changes are:

appendDirectory -> appendComponent
appendFile -> appendComponent
elideDirectory -> eraseComponent
elideFile -> eraseComponent
elideSuffix -> eraseSuffix
renameFile -> rename
setDirectory -> set
setFile -> set

Changes pass Dejagnu and llvm-test/SingleSource tests.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22349 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2005-07-07 23:21:43 +00:00
parent b3d59701c8
commit dd04df0ec3
29 changed files with 249 additions and 331 deletions

View File

@ -45,7 +45,7 @@ namespace llvm {
~FileRemover() { ~FileRemover() {
if (DeleteIt) if (DeleteIt)
try { try {
Filename.destroyFile(); Filename.destroy();
} catch (...) {} // Ignore problems deleting the file. } catch (...) {} // Ignore problems deleting the file.
} }

View File

@ -219,24 +219,22 @@ namespace sys {
bool isValid() const; bool isValid() const;
/// This function determines if the contents of the path name are /// This function determines if the contents of the path name are
/// empty. That is, the path has a zero length. /// empty. That is, the path has a zero length. This does NOT determine if
/// if the file is empty. Use the getSize method for that.
/// @returns true iff the path is empty. /// @returns true iff the path is empty.
/// @brief Determines if the path name is empty (invalid). /// @brief Determines if the path name is empty (invalid).
bool isEmpty() const { return path.empty(); } bool isEmpty() const { return path.empty(); }
/// This function determines if the path name in this object is intended /// This function determines if the object referenced by this path is
/// to reference a legal file name (as opposed to a directory name). This /// a file or not. This function accesses the under lying file system to
/// function does not verify anything with the file system, it merely /// determine the type of entity referenced by the path.
/// determines if the syntax of the path represents a file name or not.
/// @returns true if this path name references a file. /// @returns true if this path name references a file.
/// @brief Determines if the path name references a file. /// @brief Determines if the path name references a file.
bool isFile() const; bool isFile() const;
/// This function determines if the path name in this object is intended /// This function determines if the object referenced by this path is a
/// to reference a legal directory name (as opposed to a file name). This /// directory or not. This function accesses the underlying file system to
/// function does not verify anything with the file system, it merely /// determine the type of entity referenced by the path.
/// determines if the syntax of the path represents a directory name or
/// not.
/// @returns true if the path name references a directory /// @returns true if the path name references a directory
/// @brief Determines if the path name references a directory. /// @brief Determines if the path name references a directory.
bool isDirectory() const; bool isDirectory() const;
@ -297,35 +295,34 @@ namespace sys {
bool isDynamicLibrary() const; bool isDynamicLibrary() const;
/// This function determines if the path name references an existing file /// This function determines if the path name references an existing file
/// or directory in the file system. Unlike isFile and isDirectory, this /// or directory in the file system.
/// function actually checks for the existence of the file or directory. /// @returns true if the pathname references an existing file or
/// @returns true if the pathname references an existing file. /// directory.
/// @brief Determines if the path is a file or directory in /// @brief Determines if the path is a file or directory in
/// the file system. /// the file system.
bool exists() const; bool exists() const;
/// This function determines if the path name references a readable file /// This function determines if the path name references a readable file
/// or directory in the file system. Unlike isFile and isDirectory, this /// or directory in the file system. This function checks for
/// function actually checks for the existence and readability (by the /// the existence and readability (by the current program) of the file
/// current program) of the file or directory. /// or directory.
/// @returns true if the pathname references a readable file. /// @returns true if the pathname references a readable file.
/// @brief Determines if the path is a readable file or directory /// @brief Determines if the path is a readable file or directory
/// in the file system. /// in the file system.
bool canRead() const; bool canRead() const;
/// This function determines if the path name references a writable file /// This function determines if the path name references a writable file
/// or directory in the file system. Unlike isFile and isDirectory, this /// or directory in the file system. This function checks for the
/// function actually checks for the existence and writability (by the /// existence and writability (by the current program) of the file or
/// current program) of the file or directory. /// directory.
/// @returns true if the pathname references a writable file. /// @returns true if the pathname references a writable file.
/// @brief Determines if the path is a writable file or directory /// @brief Determines if the path is a writable file or directory
/// in the file system. /// in the file system.
bool canWrite() const; bool canWrite() const;
/// This function determines if the path name references an executable /// This function determines if the path name references an executable
/// file in the file system. Unlike isFile and isDirectory, this /// file in the file system. This function checks for the existence and
/// function actually checks for the existence and executability (by /// executability (by the current program) of the file.
/// the current program) of the file.
/// @returns true if the pathname references an executable file. /// @returns true if the pathname references an executable file.
/// @brief Determines if the path is an executable file in the file /// @brief Determines if the path is an executable file in the file
/// system. /// system.
@ -338,17 +335,16 @@ namespace sys {
/// @brief Returns the path as a std::string. /// @brief Returns the path as a std::string.
const std::string& toString() const { return path; } const std::string& toString() const { return path; }
/// This function returns the last component of the path name. If the /// This function returns the last component of the path name. The last
/// isDirectory() function would return true then this returns the name /// component is the file or directory name occuring after the last
/// of the last directory in the path. If the isFile() function would /// directory separator.
/// return true then this function returns the name of the file without
/// any of the preceding directories.
/// @returns std::string containing the last component of the path name. /// @returns std::string containing the last component of the path name.
/// @brief Returns the last component of the path name. /// @brief Returns the last component of the path name.
std::string getLast() const; std::string getLast() const;
/// This function strips off the path and suffix of the file name and /// This function strips off the path and suffix of the file or directory
/// returns just the basename. /// name and returns just the basename. For example /a/foo.bar would cause
/// this function to return "foo".
/// @returns std::string containing the basename of the path /// @returns std::string containing the basename of the path
/// @throws nothing /// @throws nothing
/// @brief Get the base name of the path /// @brief Get the base name of the path
@ -361,26 +357,20 @@ namespace sys {
/// @brief Build a list of directory's contents. /// @brief Build a list of directory's contents.
bool getDirectoryContents(std::set<Path>& paths) const; bool getDirectoryContents(std::set<Path>& paths) const;
/// This method attempts to destroy the directory named by the last in /// This method attempts to destroy the file or directory named by the
/// the Path name. If \p remove_contents is false, an attempt will be /// last component of the Path. If the Path refers to a directory and the
/// made to remove just the directory that this Path object refers to /// \p destroy_contents is false, an attempt will be made to remove just
/// (the final Path component). If \p remove_contents is true, an attempt /// the directory (the final Path component). If \p destroy_contents is
/// will be made to remove the entire contents of the directory, /// true, an attempt will be made to remove the entire contents of the
/// recursively. /// directory, recursively. If the Path refers to a file, the
/// \p destroy_contents parameter is ignored.
/// @param destroy_contents Indicates whether the contents of a destroyed /// @param destroy_contents Indicates whether the contents of a destroyed
/// directory should also be destroyed (recursively). /// directory should also be destroyed (recursively).
/// @returns false if the Path does not refer to a directory, true /// @returns true if the file/directory was destroyed, false if the path
/// otherwise. /// refers to something that is neither a file nor a directory.
/// @throws std::string if there is an error. /// @throws std::string if there is an error.
/// @brief Removes the file or directory from the filesystem. /// @brief Removes the file or directory from the filesystem.
bool destroyDirectory( bool destroy_contents = false ) const; bool destroy( bool destroy_contents = false ) const;
/// This method attempts to destroy the file named by the last item in the
/// Path name.
/// @returns false if the Path does not refer to a file, true otherwise.
/// @throws std::string if there is an error.
/// @brief Destroy the file this Path refers to.
bool destroyFile() const;
/// Obtain a 'C' string for the path name. /// Obtain a 'C' string for the path name.
/// @returns a 'C' string containing the path name. /// @returns a 'C' string containing the path name.
@ -437,64 +427,32 @@ namespace sys {
/// @brief Make the file readable; /// @brief Make the file readable;
void makeExecutable(); void makeExecutable();
/// This method attempts to set the Path object to \p unverified_path /// This method sets the Path object to \p unverified_path. This can fail
/// and interpret the name as a directory name. The \p unverified_path /// if the \p unverified_path does not pass the syntactic checks of the
/// is verified. If verification succeeds then \p unverified_path /// isValid method. If verification fails, the Path object remains
/// is accepted as a directory and true is returned. Otherwise, /// unchanged and false is returned. Otherwise true is returned and the
/// the Path object remains unchanged and false is returned. /// Path object takes on the path value of \p unverified_path
/// @returns true if the path was set, false otherwise. /// @returns true if the path was set, false otherwise.
/// @param unverified_path The path to be set in Path object. /// @param unverified_path The path to be set in Path object.
/// @throws nothing /// @throws nothing
/// @brief Set a full path from a std::string /// @brief Set a full path from a std::string
bool setDirectory(const std::string& unverified_path); bool set(const std::string& unverified_path);
/// This method attempts to set the Path object to \p unverified_path /// One path component is removed from the Path. If only one component is
/// and interpret the name as a file name. The \p unverified_path /// present in the path, the Path object becomes empty. If the Path object
/// is verified. If verification succeeds then \p unverified_path /// is empty, no change is made.
/// is accepted as a file name and true is returned. Otherwise,
/// the Path object remains unchanged and false is returned.
/// @returns true if the path was set, false otherwise.
/// @param unverified_path The path to be set in Path object.
/// @throws nothing /// @throws nothing
/// @brief Set a full path from a std::string /// @returns false if the path component could not be removed.
bool setFile(const std::string& unverified_path);
/// The \p dirname is added to the end of the Path if it is a legal
/// directory name for the operating system. The precondition for this
/// function is that the Path must reference a directory name (i.e.
/// isDirectory() returns true).
/// @param dirname A string providing the directory name to
/// be added to the end of the path.
/// @returns false if the directory name could not be added
/// @throws nothing
/// @brief Adds the name of a directory to a Path.
bool appendDirectory( const std::string& dirname );
/// One directory component is removed from the Path name. The Path must
/// refer to a non-root directory name (i.e. isDirectory() returns true
/// but isRootDirectory() returns false). Upon exit, the Path will
/// refer to the directory above it.
/// @throws nothing
/// @returns false if the directory name could not be removed.
/// @brief Removes the last directory component of the Path. /// @brief Removes the last directory component of the Path.
bool elideDirectory(); bool eraseComponent();
/// The \p filename is added to the end of the Path if it is a legal /// The \p component is added to the end of the Path if it is a legal
/// directory name for the operating system. The precondition for this /// name for the operating system. A directory separator will be added if
/// function is that the Path reference a directory name (i.e. /// needed.
/// isDirectory() returns true).
/// @throws nothing /// @throws nothing
/// @returns false if the file name could not be added. /// @returns false if the path component could not be added.
/// @brief Appends the name of a file. /// @brief Appends one path component to the Path.
bool appendFile( const std::string& filename ); bool appendComponent( const std::string& component );
/// One file component is removed from the Path name. The Path must
/// refer to a file (i.e. isFile() returns true). Upon exit,
/// the Path will refer to the directory above it.
/// @throws nothing
/// @returns false if the file name could not be removed
/// @brief Removes the last file component of the path.
bool elideFile();
/// A period and the \p suffix are appended to the end of the pathname. /// A period and the \p suffix are appended to the end of the pathname.
/// The precondition for this function is that the Path reference a file /// The precondition for this function is that the Path reference a file
@ -506,7 +464,7 @@ namespace sys {
/// @brief Adds a period and the \p suffix to the end of the pathname. /// @brief Adds a period and the \p suffix to the end of the pathname.
bool appendSuffix(const std::string& suffix); bool appendSuffix(const std::string& suffix);
/// The suffix of the filename is removed. The suffix begins with and /// The suffix of the filename is erased. The suffix begins with and
/// includes the last . character in the filename after the last directory /// includes the last . character in the filename after the last directory
/// separator and extends until the end of the name. If no . character is /// separator and extends until the end of the name. If no . character is
/// after the last directory separator, then the file name is left /// after the last directory separator, then the file name is left
@ -515,7 +473,7 @@ namespace sys {
/// @returns false if there was no suffix to remove, true otherwise. /// @returns false if there was no suffix to remove, true otherwise.
/// @throws nothing /// @throws nothing
/// @brief Remove the suffix from a path name. /// @brief Remove the suffix from a path name.
bool elideSuffix(); bool eraseSuffix();
/// The current Path name is made unique in the file system. Upon return, /// The current Path name is made unique in the file system. Upon return,
/// the Path will have been changed to make a unique file in the file /// the Path will have been changed to make a unique file in the file
@ -566,7 +524,7 @@ namespace sys {
/// @returns false if the Path does not refer to a file, true otherwise. /// @returns false if the Path does not refer to a file, true otherwise.
/// @throws std::string if there is an file system error. /// @throws std::string if there is an file system error.
/// @brief Rename one file as another. /// @brief Rename one file as another.
bool renameFile(const Path& newName); bool rename(const Path& newName);
/// This method sets the access time, modification time, and permission /// This method sets the access time, modification time, and permission
/// mode of the file associated with \p this as given by \p si. /// mode of the file associated with \p this as given by \p si.

View File

@ -187,7 +187,7 @@ Archive::parseMemberHeader(const char*& At, const char* End) {
member->next = 0; member->next = 0;
member->prev = 0; member->prev = 0;
member->parent = this; member->parent = this;
member->path.setFile(pathname); member->path.set(pathname);
member->info.fileSize = MemberSize; member->info.fileSize = MemberSize;
member->info.modTime.fromEpochTime(atoi(Hdr->date)); member->info.modTime.fromEpochTime(atoi(Hdr->date));
unsigned int mode; unsigned int mode;

View File

@ -450,17 +450,17 @@ Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress){
// Close up shop // Close up shop
FinalFile.close(); FinalFile.close();
arch.close(); arch.close();
TmpArchive.destroyFile(); TmpArchive.destroy();
} else { } else {
// We don't have to insert the symbol table, so just renaming the temp // We don't have to insert the symbol table, so just renaming the temp
// file to the correct name will suffice. // file to the correct name will suffice.
TmpArchive.renameFile(archPath); TmpArchive.rename(archPath);
} }
} catch (...) { } catch (...) {
// Make sure we clean up. // Make sure we clean up.
if (TmpArchive.exists()) if (TmpArchive.exists())
TmpArchive.destroyFile(); TmpArchive.destroy();
throw; throw;
} }
} }

View File

@ -187,7 +187,7 @@ Archive::parseMemberHeader(const char*& At, const char* End) {
member->next = 0; member->next = 0;
member->prev = 0; member->prev = 0;
member->parent = this; member->parent = this;
member->path.setFile(pathname); member->path.set(pathname);
member->info.fileSize = MemberSize; member->info.fileSize = MemberSize;
member->info.modTime.fromEpochTime(atoi(Hdr->date)); member->info.modTime.fromEpochTime(atoi(Hdr->date));
unsigned int mode; unsigned int mode;

View File

@ -450,17 +450,17 @@ Archive::writeToDisk(bool CreateSymbolTable, bool TruncateNames, bool Compress){
// Close up shop // Close up shop
FinalFile.close(); FinalFile.close();
arch.close(); arch.close();
TmpArchive.destroyFile(); TmpArchive.destroy();
} else { } else {
// We don't have to insert the symbol table, so just renaming the temp // We don't have to insert the symbol table, so just renaming the temp
// file to the correct name will suffice. // file to the correct name will suffice.
TmpArchive.renameFile(archPath); TmpArchive.rename(archPath);
} }
} catch (...) { } catch (...) {
// Make sure we clean up. // Make sure we clean up.
if (TmpArchive.exists()) if (TmpArchive.exists())
TmpArchive.destroyFile(); TmpArchive.destroy();
throw; throw;
} }
} }

View File

@ -172,8 +172,8 @@ SourceFile &SourceFileInfo::getSourceText() const {
if (SourceText == 0) { // Read the file in if we haven't already. if (SourceText == 0) { // Read the file in if we haven't already.
sys::Path tmpPath; sys::Path tmpPath;
if (!Directory.empty()) if (!Directory.empty())
tmpPath.setDirectory(Directory); tmpPath.set(Directory);
tmpPath.appendFile(BaseName); tmpPath.appendComponent(BaseName);
if (tmpPath.canRead()) if (tmpPath.canRead())
SourceText = new SourceFile(tmpPath.toString(), Descriptor); SourceText = new SourceFile(tmpPath.toString(), Descriptor);
else else

View File

@ -899,7 +899,7 @@ Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
// If the source library's module id is in the dependent library list of the // If the source library's module id is in the dependent library list of the
// destination library, remove it since that module is now linked in. // destination library, remove it since that module is now linked in.
sys::Path modId; sys::Path modId;
modId.setFile(Src->getModuleIdentifier()); modId.set(Src->getModuleIdentifier());
if (!modId.isEmpty()) if (!modId.isEmpty())
Dest->removeLibrary(modId.getBasename()); Dest->removeLibrary(modId.getBasename());

View File

@ -69,7 +69,6 @@ Linker::verbose(const std::string& message) {
void void
Linker::addPath(const sys::Path& path) { Linker::addPath(const sys::Path& path) {
assert(path.isDirectory() && "Can only insert directories into the path");
LibPaths.push_back(path); LibPaths.push_back(path);
} }
@ -77,7 +76,7 @@ void
Linker::addPaths(const std::vector<std::string>& paths) { Linker::addPaths(const std::vector<std::string>& paths) {
for (unsigned i = 0; i != paths.size(); ++i) { for (unsigned i = 0; i != paths.size(); ++i) {
sys::Path aPath; sys::Path aPath;
aPath.setDirectory(paths[i]); aPath.set(paths[i]);
LibPaths.push_back(aPath); LibPaths.push_back(aPath);
} }
} }
@ -118,26 +117,35 @@ Linker::LoadObject(const sys::Path &FN) {
static inline sys::Path IsLibrary(const std::string& Name, static inline sys::Path IsLibrary(const std::string& Name,
const sys::Path& Directory) { const sys::Path& Directory) {
assert(Directory.isDirectory() && "Need to specify a directory");
sys::Path FullPath(Directory); sys::Path FullPath(Directory);
FullPath.appendFile("lib" + Name);
FullPath.appendSuffix("a"); // Make sure the directory actually is a directory in the file system.
if (FullPath.isArchive()) if (FullPath.isDirectory())
return FullPath; {
// Try the libX.a form
FullPath.appendComponent("lib" + Name);
FullPath.appendSuffix("a");
if (FullPath.isArchive())
return FullPath;
FullPath.elideSuffix(); // Try the libX.bca form
FullPath.appendSuffix("bca"); FullPath.eraseSuffix();
if (FullPath.isArchive()) FullPath.appendSuffix("bca");
return FullPath; if (FullPath.isArchive())
return FullPath;
FullPath.elideSuffix(); // Try the libX.so form
FullPath.appendSuffix(&(LTDL_SHLIB_EXT[1])); FullPath.eraseSuffix();
if (FullPath.isDynamicLibrary()) // Native shared library? FullPath.appendSuffix(&(LTDL_SHLIB_EXT[1]));
return FullPath; if (FullPath.isDynamicLibrary()) // Native shared library?
if (FullPath.isBytecodeFile()) // .so file containing bytecode? return FullPath;
return FullPath; if (FullPath.isBytecodeFile()) // .so file containing bytecode?
return FullPath;
// Not found .. fall through
}
// Indicate that the library was not found in the directory.
FullPath.clear(); FullPath.clear();
return FullPath; return FullPath;
} }

View File

@ -45,9 +45,9 @@ sys::Path llvm::FindExecutable(const std::string &ExeName,
// if ProgramPath contains at least one / character, indicating that it is a // if ProgramPath contains at least one / character, indicating that it is a
// relative path to bugpoint itself. // relative path to bugpoint itself.
sys::Path Result ( ProgramPath ); sys::Path Result ( ProgramPath );
Result.elideFile(); Result.eraseComponent();
if (!Result.isEmpty()) { if (!Result.isEmpty()) {
Result.appendFile(ExeName); Result.appendComponent(ExeName);
if (Result.canExecute()) if (Result.canExecute())
return Result; return Result;
} }

View File

@ -65,7 +65,7 @@ static void ProcessFailure(sys::Path ProgPath, const char** Args) {
ErrorFile.close(); ErrorFile.close();
} }
ErrorFilename.destroyFile(); ErrorFilename.destroy();
throw ToolExecutionError(OS.str()); throw ToolExecutionError(OS.str());
} }
@ -176,7 +176,7 @@ void LLC::OutputAsm(const std::string &Bytecode, sys::Path &OutputAsmFile) {
void LLC::compileProgram(const std::string &Bytecode) { void LLC::compileProgram(const std::string &Bytecode) {
sys::Path OutputAsmFile; sys::Path OutputAsmFile;
OutputAsm(Bytecode, OutputAsmFile); OutputAsm(Bytecode, OutputAsmFile);
OutputAsmFile.destroyFile(); OutputAsmFile.destroy();
} }
int LLC::ExecuteProgram(const std::string &Bytecode, int LLC::ExecuteProgram(const std::string &Bytecode,
@ -321,7 +321,7 @@ void CBE::OutputC(const std::string &Bytecode, sys::Path& OutputCFile) {
void CBE::compileProgram(const std::string &Bytecode) { void CBE::compileProgram(const std::string &Bytecode) {
sys::Path OutputCFile; sys::Path OutputCFile;
OutputC(Bytecode, OutputCFile); OutputC(Bytecode, OutputCFile);
OutputCFile.destroyFile(); OutputCFile.destroy();
} }
int CBE::ExecuteProgram(const std::string &Bytecode, int CBE::ExecuteProgram(const std::string &Bytecode,

View File

@ -27,7 +27,7 @@ Path
Path::GetLLVMConfigDir() { Path::GetLLVMConfigDir() {
Path result; Path result;
#ifdef LLVM_ETCDIR #ifdef LLVM_ETCDIR
if (result.setDirectory(LLVM_ETCDIR)) if (result.set(LLVM_ETCDIR))
return result; return result;
#endif #endif
return GetLLVMDefaultConfigDir(); return GetLLVMDefaultConfigDir();
@ -80,10 +80,10 @@ Path::FindLibrary(std::string& name) {
GetSystemLibraryPaths(LibPaths); GetSystemLibraryPaths(LibPaths);
for (unsigned i = 0; i < LibPaths.size(); ++i) { for (unsigned i = 0; i < LibPaths.size(); ++i) {
sys::Path FullPath(LibPaths[i]); sys::Path FullPath(LibPaths[i]);
FullPath.appendFile("lib" + name + LTDL_SHLIB_EXT); FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
if (FullPath.isDynamicLibrary()) if (FullPath.isDynamicLibrary())
return FullPath; return FullPath;
FullPath.elideSuffix(); FullPath.eraseSuffix();
FullPath.appendSuffix("a"); FullPath.appendSuffix("a");
if (FullPath.isArchive()) if (FullPath.isArchive())
return FullPath; return FullPath;

View File

@ -84,7 +84,7 @@ Path::isValid() const {
Path Path
Path::GetRootDirectory() { Path::GetRootDirectory() {
Path result; Path result;
result.setDirectory("/"); result.set("/");
return result; return result;
} }
@ -98,7 +98,7 @@ Path::GetTemporaryDirectory() {
if (0 == mkdtemp(pathname)) if (0 == mkdtemp(pathname))
ThrowErrno(std::string(pathname) + ": can't create temporary directory"); ThrowErrno(std::string(pathname) + ": can't create temporary directory");
Path result; Path result;
result.setDirectory(pathname); result.set(pathname);
assert(result.isValid() && "mkdtemp didn't create a valid pathname!"); assert(result.isValid() && "mkdtemp didn't create a valid pathname!");
return result; return result;
#elif defined(HAVE_MKSTEMP) #elif defined(HAVE_MKSTEMP)
@ -117,7 +117,7 @@ Path::GetTemporaryDirectory() {
if (-1 == ::mkdir(pathname, S_IRWXU)) // end race condition if (-1 == ::mkdir(pathname, S_IRWXU)) // end race condition
ThrowErrno(std::string(pathname) + ": can't create temporary directory"); ThrowErrno(std::string(pathname) + ": can't create temporary directory");
Path result; Path result;
result.setDirectory(pathname); result.set(pathname);
assert(result.isValid() && "mkstemp didn't create a valid pathname!"); assert(result.isValid() && "mkstemp didn't create a valid pathname!");
return result; return result;
#elif defined(HAVE_MKTEMP) #elif defined(HAVE_MKTEMP)
@ -134,7 +134,7 @@ Path::GetTemporaryDirectory() {
if (-1 == ::mkdir(TmpName, S_IRWXU)) if (-1 == ::mkdir(TmpName, S_IRWXU))
ThrowErrno(std::string(TmpName) + ": can't create temporary directory"); ThrowErrno(std::string(TmpName) + ": can't create temporary directory");
Path result; Path result;
result.setDirectory(TmpName); result.set(TmpName);
assert(result.isValid() && "mktemp didn't create a valid pathname!"); assert(result.isValid() && "mktemp didn't create a valid pathname!");
return result; return result;
#else #else
@ -155,7 +155,7 @@ Path::GetTemporaryDirectory() {
if (-1 == ::mkdir(pathname, S_IRWXU)) if (-1 == ::mkdir(pathname, S_IRWXU))
ThrowErrno(std::string(pathname) + ": can't create temporary directory"); ThrowErrno(std::string(pathname) + ": can't create temporary directory");
Path result; Path result;
result.setDirectory(pathname); result.set(pathname);
assert(result.isValid() && "mkstemp didn't create a valid pathname!"); assert(result.isValid() && "mkstemp didn't create a valid pathname!");
return result; return result;
#endif #endif
@ -167,14 +167,14 @@ static void getPathList(const char*path, std::vector<sys::Path>& Paths) {
Path tmpPath; Path tmpPath;
while( delim != 0 ) { while( delim != 0 ) {
std::string tmp(at, size_t(delim-at)); std::string tmp(at, size_t(delim-at));
if (tmpPath.setDirectory(tmp)) if (tmpPath.set(tmp))
if (tmpPath.canRead()) if (tmpPath.canRead())
Paths.push_back(tmpPath); Paths.push_back(tmpPath);
at = delim + 1; at = delim + 1;
delim = strchr(at, ':'); delim = strchr(at, ':');
} }
if (*at != 0) if (*at != 0)
if (tmpPath.setDirectory(std::string(at))) if (tmpPath.set(std::string(at)))
if (tmpPath.canRead()) if (tmpPath.canRead())
Paths.push_back(tmpPath); Paths.push_back(tmpPath);
@ -204,7 +204,7 @@ Path::GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths) {
#ifdef LLVM_LIBDIR #ifdef LLVM_LIBDIR
{ {
Path tmpPath; Path tmpPath;
if (tmpPath.setDirectory(LLVM_LIBDIR)) if (tmpPath.set(LLVM_LIBDIR))
if (tmpPath.canRead()) if (tmpPath.canRead())
Paths.push_back(tmpPath); Paths.push_back(tmpPath);
} }
@ -222,7 +222,7 @@ Path::GetUserHomeDirectory() {
const char* home = getenv("HOME"); const char* home = getenv("HOME");
if (home) { if (home) {
Path result; Path result;
if (result.setDirectory(home)) if (result.set(home))
return result; return result;
} }
return GetRootDirectory(); return GetRootDirectory();
@ -230,12 +230,20 @@ Path::GetUserHomeDirectory() {
bool bool
Path::isFile() const { Path::isFile() const {
return (isValid() && path[path.length()-1] != '/'); struct stat buf;
if (0 != stat(path.c_str(), &buf)) {
ThrowErrno(path + ": can't determine type of path object: ");
}
return S_ISREG(buf.st_mode);
} }
bool bool
Path::isDirectory() const { Path::isDirectory() const {
return (isValid() && path[path.length()-1] == '/'); struct stat buf;
if (0 != stat(path.c_str(), &buf)) {
ThrowErrno(path + ": can't determine type of path object: ");
}
return S_ISDIR(buf.st_mode);
} }
std::string std::string
@ -357,8 +365,6 @@ Path::getStatusInfo(StatusInfo& info) const {
info.user = buf.st_uid; info.user = buf.st_uid;
info.group = buf.st_gid; info.group = buf.st_gid;
info.isDir = S_ISDIR(buf.st_mode); info.isDir = S_ISDIR(buf.st_mode);
if (info.isDir && path[path.length()-1] != '/')
path += '/';
} }
static bool AddPermissionBits(const std::string& Filename, int bits) { static bool AddPermissionBits(const std::string& Filename, int bits) {
@ -419,8 +425,6 @@ Path::getDirectoryContents(std::set<Path>& result) const {
ThrowErrno(aPath.path + ThrowErrno(aPath.path +
": can't determine file object type", stat_errno); ": can't determine file object type", stat_errno);
} }
if (S_ISDIR(buf.st_mode))
aPath.path += "/";
result.insert(aPath); result.insert(aPath);
} }
} }
@ -430,124 +434,84 @@ Path::getDirectoryContents(std::set<Path>& result) const {
} }
bool bool
Path::setDirectory(const std::string& a_path) { Path::set(const std::string& a_path) {
if (a_path.size() == 0) if (a_path.empty())
return false; return false;
Path save(*this); std::string save(path);
path = a_path; path = a_path;
size_t last = a_path.size() -1;
if (a_path[last] != '/')
path += '/';
if (!isValid()) { if (!isValid()) {
path = save.path; path = save;
return false; return false;
} }
return true; return true;
} }
bool bool
Path::setFile(const std::string& a_path) { Path::appendComponent(const std::string& name) {
if (a_path.size() == 0) if (name.empty())
return false; return false;
Path save(*this); std::string save(path);
path = a_path; if (!path.empty()) {
size_t last = a_path.size() - 1; size_t last = path.size() - 1;
while (last > 0 && a_path[last] == '/') if (path[last] != '/')
last--; path += '/';
path.erase(last+1); }
path += name;
if (!isValid()) { if (!isValid()) {
path = save.path; path = save;
return false; return false;
} }
return true; return true;
} }
bool bool
Path::appendDirectory(const std::string& dir) { Path::eraseComponent() {
if (isFile())
return false;
Path save(*this);
path += dir;
path += "/";
if (!isValid()) {
path = save.path;
return false;
}
return true;
}
bool
Path::elideDirectory() {
if (isFile())
return false;
size_t slashpos = path.rfind('/',path.size()); size_t slashpos = path.rfind('/',path.size());
if (slashpos == 0 || slashpos == std::string::npos) if (slashpos == 0 || slashpos == std::string::npos) {
return false; path.erase();
return true;
}
if (slashpos == path.size() - 1) if (slashpos == path.size() - 1)
slashpos = path.rfind('/',slashpos-1); slashpos = path.rfind('/',slashpos-1);
if (slashpos == std::string::npos) if (slashpos == std::string::npos) {
return false; path.erase();
return true;
}
path.erase(slashpos); path.erase(slashpos);
return true; return true;
} }
bool
Path::appendFile(const std::string& file) {
if (!isDirectory())
return false;
Path save(*this);
path += file;
if (!isValid()) {
path = save.path;
return false;
}
return true;
}
bool
Path::elideFile() {
if (isDirectory())
return false;
size_t slashpos = path.rfind('/',path.size());
if (slashpos == std::string::npos)
return false;
path.erase(slashpos+1);
return true;
}
bool bool
Path::appendSuffix(const std::string& suffix) { Path::appendSuffix(const std::string& suffix) {
if (isDirectory()) std::string save(path);
return false;
Path save(*this);
path.append("."); path.append(".");
path.append(suffix); path.append(suffix);
if (!isValid()) { if (!isValid()) {
path = save.path; path = save;
return false; return false;
} }
return true; return true;
} }
bool bool
Path::elideSuffix() { Path::eraseSuffix() {
if (isDirectory()) return false; std::string save(path);
size_t dotpos = path.rfind('.',path.size()); size_t dotpos = path.rfind('.',path.size());
size_t slashpos = path.rfind('/',path.size()); size_t slashpos = path.rfind('/',path.size());
if (slashpos != std::string::npos && dotpos != std::string::npos && if (slashpos != std::string::npos &&
dotpos != std::string::npos &&
dotpos > slashpos) { dotpos > slashpos) {
path.erase(dotpos, path.size()-dotpos); path.erase(dotpos, path.size()-dotpos);
return true;
} }
return false; if (!isValid()) {
path = save;
return false;
}
return true;
} }
bool bool
Path::createDirectory( bool create_parents) { Path::createDirectory( bool create_parents) {
// Make sure we're dealing with a directory
if (!isDirectory()) return false;
// Get a writeable copy of the path name // Get a writeable copy of the path name
char pathname[MAXPATHLEN]; char pathname[MAXPATHLEN];
path.copy(pathname,MAXPATHLEN); path.copy(pathname,MAXPATHLEN);
@ -586,9 +550,6 @@ Path::createDirectory( bool create_parents) {
bool bool
Path::createFile() { Path::createFile() {
// Make sure we're dealing with a file
if (!isFile()) return false;
// Create the file // Create the file
int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR); int fd = ::creat(path.c_str(), S_IRUSR | S_IWUSR);
if (fd < 0) if (fd < 0)
@ -600,10 +561,6 @@ Path::createFile() {
bool bool
Path::createTemporaryFile(bool reuse_current) { Path::createTemporaryFile(bool reuse_current) {
// Make sure we're dealing with a file
if (!isFile())
return false;
// Make this into a unique file name // Make this into a unique file name
makeUnique( reuse_current ); makeUnique( reuse_current );
@ -617,45 +574,38 @@ Path::createTemporaryFile(bool reuse_current) {
} }
bool bool
Path::destroyDirectory(bool remove_contents) const { Path::destroy(bool remove_contents) const {
// Make sure we're dealing with a directory // Make sure we're dealing with a directory
if (!isDirectory()) return false; if (isFile()) {
if (0 != unlink(path.c_str()))
// If it doesn't exist, we're done. ThrowErrno(path + ": can't destroy file");
if (!exists()) return true; } else if (isDirectory()) {
if (remove_contents) {
if (remove_contents) { // Recursively descend the directory to remove its content
// Recursively descend the directory to remove its content std::string cmd("/bin/rm -rf ");
std::string cmd("/bin/rm -rf "); cmd += path;
cmd += path; system(cmd.c_str());
system(cmd.c_str()); } else {
} else { // Otherwise, try to just remove the one directory
// Otherwise, try to just remove the one directory char pathname[MAXPATHLEN];
char pathname[MAXPATHLEN]; path.copy(pathname,MAXPATHLEN);
path.copy(pathname,MAXPATHLEN); int lastchar = path.length() - 1 ;
int lastchar = path.length() - 1 ; if (pathname[lastchar] == '/')
if (pathname[lastchar] == '/') pathname[lastchar] = 0;
pathname[lastchar] = 0; else
else pathname[lastchar+1] = 0;
pathname[lastchar+1] = 0; if ( 0 != rmdir(pathname))
if ( 0 != rmdir(pathname)) ThrowErrno(std::string(pathname) + ": can't destroy directory");
ThrowErrno(std::string(pathname) + ": can't destroy directory"); }
} }
else
return false;
return true; return true;
} }
bool bool
Path::destroyFile() const { Path::rename(const Path& newName) {
if (!isFile()) return false; if (0 != ::rename(path.c_str(), newName.c_str()))
if (0 != unlink(path.c_str()))
ThrowErrno(path + ": can't destroy file");
return true;
}
bool
Path::renameFile(const Path& newName) {
if (!isFile()) return false;
if (0 != rename(path.c_str(), newName.c_str()))
ThrowErrno(std::string("can't rename '") + path + "' as '" + ThrowErrno(std::string("can't rename '") + path + "' as '" +
newName.toString() + "' "); newName.toString() + "' ");
return true; return true;
@ -663,7 +613,6 @@ Path::renameFile(const Path& newName) {
bool bool
Path::setStatusInfo(const StatusInfo& si) const { Path::setStatusInfo(const StatusInfo& si) const {
if (!isFile()) return false;
struct utimbuf utb; struct utimbuf utb;
utb.actime = si.modTime.toPosixTime(); utb.actime = si.modTime.toPosixTime();
utb.modtime = utb.actime; utb.modtime = utb.actime;

View File

@ -42,7 +42,7 @@ Program::FindProgramByName(const std::string& progName) {
if (progName.length() == 0) // no program if (progName.length() == 0) // no program
return Path(); return Path();
Path temp; Path temp;
if (!temp.setFile(progName)) // invalid name if (!temp.set(progName)) // invalid name
return Path(); return Path();
// FIXME: have to check for absolute filename - we cannot assume anything // FIXME: have to check for absolute filename - we cannot assume anything
// about "." being in $PATH // about "." being in $PATH
@ -64,8 +64,8 @@ Program::FindProgramByName(const std::string& progName) {
// Check to see if this first directory contains the executable... // Check to see if this first directory contains the executable...
Path FilePath; Path FilePath;
if (FilePath.setDirectory(std::string(PathStr,Colon))) { if (FilePath.set(std::string(PathStr,Colon))) {
FilePath.appendFile(progName); FilePath.appendComponent(progName);
if (FilePath.canExecute()) if (FilePath.canExecute())
return FilePath; // Found the executable! return FilePath; // Found the executable!
} }

View File

@ -112,7 +112,7 @@ RETSIGTYPE SignalHandler(int Sig) {
if (DirectoriesToRemove != 0) if (DirectoriesToRemove != 0)
while (!DirectoriesToRemove->empty()) { while (!DirectoriesToRemove->empty()) {
DirectoriesToRemove->back().destroyDirectory(true); DirectoriesToRemove->back().destroy(true);
DirectoriesToRemove->pop_back(); DirectoriesToRemove->pop_back();
} }

View File

@ -195,12 +195,18 @@ Path::GetUserHomeDirectory() {
bool bool
Path::isFile() const { Path::isFile() const {
return (isValid() && path[path.length()-1] != '/'); WIN32_FILE_ATTRIBUTE_DATA fi;
if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
ThrowError(std::string(path) + ": Can't get status: ");
return fi.dwFileAttributes & FILE_ATTRIBUTE_NORMAL;
} }
bool bool
Path::isDirectory() const { Path::isDirectory() const {
return (isValid() && path[path.length()-1] == '/'); WIN32_FILE_ATTRIBUTE_DATA fi;
if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
ThrowError(std::string(path) + ": Can't get status: ");
return fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
} }
std::string std::string

View File

@ -58,7 +58,7 @@ ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
if (BD.runPasses(Prefix, PfxOutput)) if (BD.runPasses(Prefix, PfxOutput))
return KeepPrefix; return KeepPrefix;
PrefixOutput.setFile(PfxOutput); PrefixOutput.set(PfxOutput);
OrigProgram = BD.Program; OrigProgram = BD.Program;
BD.Program = ParseInputFile(PrefixOutput.toString()); BD.Program = ParseInputFile(PrefixOutput.toString());
@ -67,7 +67,7 @@ ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
<< PrefixOutput << "'!\n"; << PrefixOutput << "'!\n";
exit(1); exit(1);
} }
PrefixOutput.destroyFile(); PrefixOutput.destroy();
} }
std::cout << "Checking to see if these passes crash: " std::cout << "Checking to see if these passes crash: "

View File

@ -281,7 +281,7 @@ std::string BugDriver::compileSharedObject(const std::string &BytecodeFile) {
exit(1); exit(1);
// Remove the intermediate C file // Remove the intermediate C file
OutputCFile.destroyFile(); OutputCFile.destroy();
return "./" + SharedObjectFile; return "./" + SharedObjectFile;
} }
@ -302,9 +302,9 @@ bool BugDriver::diffProgram(const std::string &BytecodeFile,
// If we're checking the program exit code, assume anything nonzero is bad. // If we're checking the program exit code, assume anything nonzero is bad.
if (CheckProgramExitCode && ProgramExitedNonzero) { if (CheckProgramExitCode && ProgramExitedNonzero) {
Output.destroyFile(); Output.destroy();
if (RemoveBytecode) if (RemoveBytecode)
sys::Path(BytecodeFile).destroyFile(); sys::Path(BytecodeFile).destroy();
return true; return true;
} }
@ -321,10 +321,11 @@ bool BugDriver::diffProgram(const std::string &BytecodeFile,
} }
// Remove the generated output. // Remove the generated output.
Output.destroyFile(); Output.destroy();
// Remove the bytecode file if we are supposed to. // Remove the bytecode file if we are supposed to.
if (RemoveBytecode) sys::Path(BytecodeFile).destroyFile(); if (RemoveBytecode)
sys::Path(BytecodeFile).destroy();
return FilesDifferent; return FilesDifferent;
} }

View File

@ -99,7 +99,7 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix,
// If the prefix maintains the predicate by itself, only keep the prefix! // If the prefix maintains the predicate by itself, only keep the prefix!
if (BD.diffProgram(BytecodeResult)) { if (BD.diffProgram(BytecodeResult)) {
std::cout << " nope.\n"; std::cout << " nope.\n";
sys::Path(BytecodeResult).destroyFile(); sys::Path(BytecodeResult).destroy();
return KeepPrefix; return KeepPrefix;
} }
std::cout << " yup.\n"; // No miscompilation! std::cout << " yup.\n"; // No miscompilation!
@ -113,7 +113,7 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix,
<< BytecodeResult << "'!\n"; << BytecodeResult << "'!\n";
exit(1); exit(1);
} }
sys::Path(BytecodeResult).destroyFile(); // No longer need the file on disk sys::Path(BytecodeResult).destroy(); // No longer need the file on disk
// Don't check if there are no passes in the suffix. // Don't check if there are no passes in the suffix.
if (Suffix.empty()) if (Suffix.empty())
@ -775,9 +775,9 @@ static bool TestCodeGenerator(BugDriver &BD, Module *Test, Module *Safe) {
std::cerr << ": still failing!\n"; std::cerr << ": still failing!\n";
else else
std::cerr << ": didn't fail.\n"; std::cerr << ": didn't fail.\n";
TestModuleBC.destroyFile(); TestModuleBC.destroy();
SafeModuleBC.destroyFile(); SafeModuleBC.destroy();
sys::Path(SharedObject).destroyFile(); sys::Path(SharedObject).destroy();
return Result; return Result;
} }

View File

@ -161,7 +161,7 @@ bool BugDriver::runPasses(const std::vector<const PassInfo*> &Passes,
// If we are supposed to delete the bytecode file or if the passes crashed, // If we are supposed to delete the bytecode file or if the passes crashed,
// remove it now. This may fail if the file was never created, but that's ok. // remove it now. This may fail if the file was never created, but that's ok.
if (DeleteOutput || !ExitedOK) if (DeleteOutput || !ExitedOK)
sys::Path(OutputFilename).destroyFile(); sys::Path(OutputFilename).destroy();
#ifndef PLATFORMINDEPENDENT #ifndef PLATFORMINDEPENDENT
if (!Quiet) { if (!Quiet) {
@ -214,6 +214,6 @@ Module *BugDriver::runPassesOn(Module *M,
<< BytecodeResult << "'!\n"; << BytecodeResult << "'!\n";
exit(1); exit(1);
} }
sys::Path(BytecodeResult).destroyFile(); // No longer need the file on disk sys::Path(BytecodeResult).destroy(); // No longer need the file on disk
return Ret; return Ret;
} }

View File

@ -65,7 +65,7 @@ static void ProcessFailure(sys::Path ProgPath, const char** Args) {
ErrorFile.close(); ErrorFile.close();
} }
ErrorFilename.destroyFile(); ErrorFilename.destroy();
throw ToolExecutionError(OS.str()); throw ToolExecutionError(OS.str());
} }
@ -176,7 +176,7 @@ void LLC::OutputAsm(const std::string &Bytecode, sys::Path &OutputAsmFile) {
void LLC::compileProgram(const std::string &Bytecode) { void LLC::compileProgram(const std::string &Bytecode) {
sys::Path OutputAsmFile; sys::Path OutputAsmFile;
OutputAsm(Bytecode, OutputAsmFile); OutputAsm(Bytecode, OutputAsmFile);
OutputAsmFile.destroyFile(); OutputAsmFile.destroy();
} }
int LLC::ExecuteProgram(const std::string &Bytecode, int LLC::ExecuteProgram(const std::string &Bytecode,
@ -321,7 +321,7 @@ void CBE::OutputC(const std::string &Bytecode, sys::Path& OutputCFile) {
void CBE::compileProgram(const std::string &Bytecode) { void CBE::compileProgram(const std::string &Bytecode) {
sys::Path OutputCFile; sys::Path OutputCFile;
OutputC(Bytecode, OutputCFile); OutputC(Bytecode, OutputCFile);
OutputCFile.destroyFile(); OutputCFile.destroy();
} }
int CBE::ExecuteProgram(const std::string &Bytecode, int CBE::ExecuteProgram(const std::string &Bytecode,

View File

@ -152,15 +152,11 @@ static bool isBytecodeLibrary(const sys::Path &FullPath) {
static bool isBytecodeLPath(const std::string &LibPath) { static bool isBytecodeLPath(const std::string &LibPath) {
bool isBytecodeLPath = false; bool isBytecodeLPath = false;
// Make sure the -L path has a '/' character sys::Path LPath(LibPath);
// because llvm-g++ passes them without the ending
// '/' char and sys::Path doesn't think it is a
// directory (see: sys::Path::isDirectory) without it
std::string dir = LibPath;
if ( dir[dir.length()-1] != '/' )
dir.append("/");
sys::Path LPath(dir); // Make sure its a directory
if (!LPath.isDirectory())
return isBytecodeLPath;
// Grab the contents of the -L path // Grab the contents of the -L path
std::set<sys::Path> Files; std::set<sys::Path> Files;

View File

@ -313,9 +313,9 @@ int main(int argc, char **argv, char **envp ) {
if (!SaveTemps) { if (!SaveTemps) {
// Remove the assembly language file. // Remove the assembly language file.
AssemblyFile.destroyFile(); AssemblyFile.destroy();
// Remove the bytecode language file. // Remove the bytecode language file.
sys::Path(RealBytecodeOutput).destroyFile(); sys::Path(RealBytecodeOutput).destroy();
} }
} else if (NativeCBE) { } else if (NativeCBE) {
@ -345,9 +345,9 @@ int main(int argc, char **argv, char **envp ) {
if (!SaveTemps) { if (!SaveTemps) {
// Remove the assembly language file. // Remove the assembly language file.
CFile.destroyFile(); CFile.destroy();
// Remove the bytecode language file. // Remove the bytecode language file.
sys::Path(RealBytecodeOutput).destroyFile(); sys::Path(RealBytecodeOutput).destroy();
} }
} else if (!LinkAsLibrary) { } else if (!LinkAsLibrary) {

View File

@ -293,7 +293,7 @@ std::set<sys::Path> recurseDirectories(const sys::Path& path) {
void buildPaths(bool checkExistence = true) { void buildPaths(bool checkExistence = true) {
for (unsigned i = 0; i < Members.size(); i++) { for (unsigned i = 0; i < Members.size(); i++) {
sys::Path aPath; sys::Path aPath;
if (!aPath.setFile(Members[i])) if (!aPath.set(Members[i]))
throw std::string("File member name invalid: ") + Members[i]; throw std::string("File member name invalid: ") + Members[i];
if (checkExistence) { if (checkExistence) {
if (!aPath.exists()) if (!aPath.exists())
@ -431,7 +431,7 @@ void doExtract() {
// Make sure the intervening directories are created // Make sure the intervening directories are created
if (I->hasPath()) { if (I->hasPath()) {
sys::Path dirs(I->getPath()); sys::Path dirs(I->getPath());
dirs.elideFile(); dirs.eraseComponent();
dirs.createDirectory(/*create_parents=*/true); dirs.createDirectory(/*create_parents=*/true);
} }
@ -669,7 +669,7 @@ int main(int argc, char **argv) {
// Check the path name of the archive // Check the path name of the archive
sys::Path ArchivePath; sys::Path ArchivePath;
if (!ArchivePath.setFile(ArchiveName)) if (!ArchivePath.set(ArchiveName))
throw std::string("Archive name invalid: ") + ArchiveName; throw std::string("Archive name invalid: ") + ArchiveName;
// Create or open the archive object. // Create or open the archive object.

View File

@ -480,7 +480,7 @@ int main(int argc, char **argv, char **envp) {
gcc, envp); gcc, envp);
// Remove the assembly language file. // Remove the assembly language file.
AssemblyFile.destroyFile(); AssemblyFile.destroy();
} else if (NativeCBE) { } else if (NativeCBE) {
sys::Path CFile (OutputFilename); sys::Path CFile (OutputFilename);
CFile.appendSuffix("cbe.c"); CFile.appendSuffix("cbe.c");
@ -505,7 +505,7 @@ int main(int argc, char **argv, char **envp) {
GenerateNative(OutputFilename, CFile.toString(), Libraries, gcc, envp); GenerateNative(OutputFilename, CFile.toString(), Libraries, gcc, envp);
// Remove the assembly language file. // Remove the assembly language file.
CFile.destroyFile(); CFile.destroy();
} else { } else {
EmitShellScript(argv); EmitShellScript(argv);

View File

@ -50,7 +50,7 @@ static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
// //
static inline std::auto_ptr<Module> LoadFile(const std::string &FN) { static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
sys::Path Filename; sys::Path Filename;
if (!Filename.setFile(FN)) { if (!Filename.set(FN)) {
std::cerr << "Invalid file name: '" << FN << "'\n"; std::cerr << "Invalid file name: '" << FN << "'\n";
return std::auto_ptr<Module>(); return std::auto_ptr<Module>();
} }

View File

@ -59,7 +59,7 @@ int main(int argc, char **argv) {
// Check the path name of the archive // Check the path name of the archive
sys::Path ArchivePath; sys::Path ArchivePath;
if (!ArchivePath.setFile(ArchiveName)) if (!ArchivePath.set(ArchiveName))
throw std::string("Archive name invalid: ") + ArchiveName; throw std::string("Archive name invalid: ") + ArchiveName;
// Make sure it exists, we don't create empty archives // Make sure it exists, we don't create empty archives

View File

@ -134,7 +134,7 @@ public:
StringVector::const_iterator E = paths.end(); StringVector::const_iterator E = paths.end();
while (I != E) { while (I != E) {
sys::Path tmp; sys::Path tmp;
tmp.setDirectory(*I); tmp.set(*I);
IncludePaths.push_back(tmp); IncludePaths.push_back(tmp);
++I; ++I;
} }
@ -149,7 +149,7 @@ public:
StringVector::const_iterator E = paths.end(); StringVector::const_iterator E = paths.end();
while (I != E) { while (I != E) {
sys::Path tmp; sys::Path tmp;
tmp.setDirectory(*I); tmp.set(*I);
LibraryPaths.push_back(tmp); LibraryPaths.push_back(tmp);
++I; ++I;
} }
@ -188,7 +188,7 @@ private:
void cleanup() { void cleanup() {
if (!isSet(KEEP_TEMPS_FLAG)) { if (!isSet(KEEP_TEMPS_FLAG)) {
if (TempDir.isDirectory() && TempDir.canWrite()) if (TempDir.isDirectory() && TempDir.canWrite())
TempDir.destroyDirectory(/*remove_contents=*/true); TempDir.destroy(/*remove_contents=*/true);
} else { } else {
std::cout << "Temporary files are in " << TempDir << "\n"; std::cout << "Temporary files are in " << TempDir << "\n";
} }
@ -197,7 +197,7 @@ private:
sys::Path MakeTempFile(const std::string& basename, sys::Path MakeTempFile(const std::string& basename,
const std::string& suffix) { const std::string& suffix) {
sys::Path result(TempDir); sys::Path result(TempDir);
if (!result.appendFile(basename)) if (!result.appendComponent(basename))
throw basename + ": can't use this file name"; throw basename + ": can't use this file name";
if (!result.appendSuffix(suffix)) if (!result.appendSuffix(suffix))
throw suffix + ": can't use this file suffix"; throw suffix + ": can't use this file suffix";
@ -448,13 +448,13 @@ private:
llvm::sys::Path GetPathForLinkageItem(const std::string& link_item, llvm::sys::Path GetPathForLinkageItem(const std::string& link_item,
bool native = false) { bool native = false) {
sys::Path fullpath; sys::Path fullpath;
fullpath.setFile(link_item); fullpath.set(link_item);
if (fullpath.canRead()) if (fullpath.canRead())
return fullpath; return fullpath;
for (PathVector::iterator PI = LibraryPaths.begin(), for (PathVector::iterator PI = LibraryPaths.begin(),
PE = LibraryPaths.end(); PI != PE; ++PI) { PE = LibraryPaths.end(); PI != PE; ++PI) {
fullpath.setDirectory(PI->toString()); fullpath.set(PI->toString());
fullpath.appendFile(link_item); fullpath.appendComponent(link_item);
if (fullpath.canRead()) if (fullpath.canRead())
return fullpath; return fullpath;
if (native) { if (native) {
@ -463,16 +463,16 @@ private:
fullpath.appendSuffix("bc"); fullpath.appendSuffix("bc");
if (fullpath.canRead()) if (fullpath.canRead())
return fullpath; return fullpath;
fullpath.elideSuffix(); fullpath.eraseSuffix();
fullpath.appendSuffix("o"); fullpath.appendSuffix("o");
if (fullpath.canRead()) if (fullpath.canRead())
return fullpath; return fullpath;
fullpath = *PI; fullpath = *PI;
fullpath.appendFile(std::string("lib") + link_item); fullpath.appendComponent(std::string("lib") + link_item);
fullpath.appendSuffix("a"); fullpath.appendSuffix("a");
if (fullpath.canRead()) if (fullpath.canRead())
return fullpath; return fullpath;
fullpath.elideSuffix(); fullpath.eraseSuffix();
fullpath.appendSuffix("so"); fullpath.appendSuffix("so");
if (fullpath.canRead()) if (fullpath.canRead())
return fullpath; return fullpath;
@ -693,7 +693,7 @@ public:
/// The output of the translator is an LLVM Assembly program /// The output of the translator is an LLVM Assembly program
/// We need to translate it to bytecode /// We need to translate it to bytecode
Action* action = new Action(); Action* action = new Action();
action->program.setFile("llvm-as"); action->program.set("llvm-as");
action->args.push_back(InFile.toString()); action->args.push_back(InFile.toString());
action->args.push_back("-o"); action->args.push_back("-o");
InFile.appendSuffix("bc"); InFile.appendSuffix("bc");
@ -735,7 +735,7 @@ public:
/// The output of the optimizer is an LLVM Assembly program /// The output of the optimizer is an LLVM Assembly program
/// We need to translate it to bytecode with llvm-as /// We need to translate it to bytecode with llvm-as
Action* action = new Action(); Action* action = new Action();
action->program.setFile("llvm-as"); action->program.set("llvm-as");
action->args.push_back(InFile.toString()); action->args.push_back(InFile.toString());
action->args.push_back("-f"); action->args.push_back("-f");
action->args.push_back("-o"); action->args.push_back("-o");
@ -764,7 +764,7 @@ public:
Action* action = new Action(); Action* action = new Action();
if (isSet(EMIT_NATIVE_FLAG)) { if (isSet(EMIT_NATIVE_FLAG)) {
// Use llc to get the native assembly file // Use llc to get the native assembly file
action->program.setFile("llc"); action->program.set("llc");
action->args.push_back(InFile.toString()); action->args.push_back(InFile.toString());
action->args.push_back("-f"); action->args.push_back("-f");
action->args.push_back("-o"); action->args.push_back("-o");
@ -777,7 +777,7 @@ public:
actions.push_back(action); actions.push_back(action);
} else { } else {
// Just convert back to llvm assembly with llvm-dis // Just convert back to llvm assembly with llvm-dis
action->program.setFile("llvm-dis"); action->program.set("llvm-dis");
action->args.push_back(InFile.toString()); action->args.push_back(InFile.toString());
action->args.push_back("-f"); action->args.push_back("-f");
action->args.push_back("-o"); action->args.push_back("-o");
@ -820,7 +820,7 @@ public:
// Set up the linking action with llvm-ld // Set up the linking action with llvm-ld
Action* link = new Action(); Action* link = new Action();
link->program.setFile("llvm-ld"); link->program.set("llvm-ld");
// Add in the optimization level requested // Add in the optimization level requested
switch (optLevel) { switch (optLevel) {

View File

@ -318,7 +318,7 @@ namespace {
{ {
std::string progname; std::string progname;
if (parseProgramName(progname)) if (parseProgramName(progname))
action.program.setFile(progname); action.program.set(progname);
else else
error("Expecting a program name"); error("Expecting a program name");
@ -547,8 +547,8 @@ LLVMC_ConfigDataProvider::ReadConfigData(const std::string& ftype) {
// Try the environment variable // Try the environment variable
const char* conf = getenv("LLVM_CONFIG_DIR"); const char* conf = getenv("LLVM_CONFIG_DIR");
if (conf) { if (conf) {
confFile.setDirectory(conf); confFile.set(conf);
confFile.appendFile(ftype); confFile.appendComponent(ftype);
if (!confFile.canRead()) if (!confFile.canRead())
throw std::string("Configuration file for '") + ftype + throw std::string("Configuration file for '") + ftype +
"' is not available."; "' is not available.";
@ -556,20 +556,20 @@ LLVMC_ConfigDataProvider::ReadConfigData(const std::string& ftype) {
// Try the user's home directory // Try the user's home directory
confFile = sys::Path::GetUserHomeDirectory(); confFile = sys::Path::GetUserHomeDirectory();
if (!confFile.isEmpty()) { if (!confFile.isEmpty()) {
confFile.appendDirectory(".llvm"); confFile.appendComponent(".llvm");
confFile.appendDirectory("etc"); confFile.appendComponent("etc");
confFile.appendFile(ftype); confFile.appendComponent(ftype);
if (!confFile.canRead()) if (!confFile.canRead())
confFile.clear(); confFile.clear();
} }
if (confFile.isEmpty()) { if (confFile.isEmpty()) {
// Okay, try the LLVM installation directory // Okay, try the LLVM installation directory
confFile = sys::Path::GetLLVMConfigDir(); confFile = sys::Path::GetLLVMConfigDir();
confFile.appendFile(ftype); confFile.appendComponent(ftype);
if (!confFile.canRead()) { if (!confFile.canRead()) {
// Okay, try the "standard" place // Okay, try the "standard" place
confFile = sys::Path::GetLLVMDefaultConfigDir(); confFile = sys::Path::GetLLVMDefaultConfigDir();
confFile.appendFile(ftype); confFile.appendComponent(ftype);
if (!confFile.canRead()) { if (!confFile.canRead()) {
throw std::string("Configuration file for '") + ftype + throw std::string("Configuration file for '") + ftype +
"' is not available."; "' is not available.";
@ -579,7 +579,7 @@ LLVMC_ConfigDataProvider::ReadConfigData(const std::string& ftype) {
} }
} else { } else {
confFile = configDir; confFile = configDir;
confFile.appendFile(ftype); confFile.appendComponent(ftype);
if (!confFile.canRead()) if (!confFile.canRead())
throw std::string("Configuration file for '") + ftype + throw std::string("Configuration file for '") + ftype +
"' is not available."; "' is not available.";