Skip to content
Snippets Groups Projects
Commit 00352e87 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Task #3001: Applied proposed new patch.

parent 28eb080b
No related branches found
No related tags found
No related merge requests found
......@@ -81,11 +81,12 @@ public:
inline string getSubdir();
//# Finally where it is all about.
// Tries to locate \a aFile in the search path.
// If \a aFile is found, then the full path name is returned; else an
// empty string is returned.
// If \a aFile contains an absolute path (i.e., it starts with a '/'),
// or equals is an empty string, then the input argument is returned.
// Try to locate \a aFile.
// If \a aFile is an absolute path, then simply check for its presence.
// If \a aFile is a relative path, then use the current search path to
// locate \a aFile.
// If \a aFile is found, return its full pathname, otherwise an return
// an empty string.
string locate (const string& aFile);
private:
......
......@@ -207,49 +207,54 @@ void FileLocator::removePath (const string& aPath)
// locate(aFile): string
//
// Tries to find the file in the current searchpath.
// Returns the input argument, if that's an absolute path or an empty string.
// Return full filename if found, or else an empty string.
//
string FileLocator::locate (const string& aFile)
{
// return immediately if aFile is empty or contains an absolute path
if(aFile.empty() || aFile[0] == '/') {
// return immediately if aFile is empty
if(aFile.empty()) return string();
// DILEMMA: the filelocator is often used to locate the log_prop file.
// using LOG_xxx here will result in an errormessage in that case.
// SOLUTION: in global-init.cxx a variable 'initialized' is used in l4cp
// to keep the state of the log-package. Make this var accessable.
// LOG_DEBUG_STR ("Filename contains a /, returning inputname : " << aFile);
return (aFile);
}
// search the path chain
iterator iter = itsPaths.begin();
iterator chainEnd = itsPaths.end();
while (iter != chainEnd) {
// when itsSubdir is filled each test much be performed also with subdir
for (int32 test = 0; test <= (itsSubdir.empty() ? 0 : 1); test++) {
struct stat fileStat;
string fullname;
fullname = *iter + (*iter != "/" ? "/" : "");
if (test == 0) { // basedir?
fullname += aFile;
}
else { // test subdir
fullname += itsSubdir + "/" + aFile;
}
int result = stat(fullname.c_str(), &fileStat);
if (result == 0) { // found?
return (fullname);
struct stat fileStat;
int result;
// If aFile contains an absolute path, simply test for its existence.
if(aFile[0] == '/') {
result = stat(aFile.c_str(), &fileStat);
return (result == 0 ? aFile : string());
}
// Otherwise, search the path chain
else {
iterator iter = itsPaths.begin();
iterator chainEnd = itsPaths.end();
while (iter != chainEnd) {
// when itsSubdir is filled each test much be performed also with subdir
for (int test = 0; test <= (itsSubdir.empty() ? 0 : 1); test++) {
string fullname;
fullname = *iter + (*iter != "/" ? "/" : "");
if (test == 0) { // basedir?
fullname += aFile;
}
else { // test subdir
fullname += itsSubdir + "/" + aFile;
}
result = stat(fullname.c_str(), &fileStat);
if (result == 0) { // found?
return (fullname);
}
}
++iter;
}
++iter;
// not found, return empty string.
// See DILEMMA.
// LOG_DEBUG_STR ("Filename not found in " << getPath() <<
// ", returning empty string");
return string();
}
// not found, return original file
// See DILEMMA.
// LOG_DEBUG_STR ("Filename not found in " << getPath() <<
// ", returning empty string");
return string();
}
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment