Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
00352e87
Commit
00352e87
authored
13 years ago
by
Marcel Loose
Browse files
Options
Downloads
Patches
Plain Diff
Task #3001: Applied proposed new patch.
parent
28eb080b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
LCS/Common/include/Common/FileLocator.h
+6
-5
6 additions, 5 deletions
LCS/Common/include/Common/FileLocator.h
LCS/Common/src/FileLocator.cc
+35
-30
35 additions, 30 deletions
LCS/Common/src/FileLocator.cc
with
41 additions
and
35 deletions
LCS/Common/include/Common/FileLocator.h
+
6
−
5
View file @
00352e87
...
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
LCS/Common/src/FileLocator.cc
+
35
−
30
View file @
00352e87
...
...
@@ -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
();
}
//
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment