System::PathResolver Class Reference

#include <GaudiKernel/PathResolver.h>

Public Types

enum  SearchPathStatus { Ok, EnvironmentVariableUndefined, UnknownDirectory }
 
enum  SearchType { LocalSearch, RecursiveSearch }
 

Static Public Member Functions

static std::string find_file (const std::string &logical_file_name, const std::string &search_path, SearchType search_type=LocalSearch)
 
static std::string find_file_from_list (const std::string &logical_file_name, const std::string &search_list, SearchType search_type=LocalSearch)
 
static std::string find_directory (const std::string &logical_file_name, const std::string &search_path, SearchType search_type=LocalSearch)
 
static std::string find_directory_from_list (const std::string &logical_file_name, const std::string &search_list, SearchType search_type=LocalSearch)
 
static SearchPathStatus check_search_path (const std::string &search_path)
 

Detailed Description

Definition at line 10 of file PathResolver.h.

Member Enumeration Documentation

Member Function Documentation

PathResolver::SearchPathStatus System::PathResolver::check_search_path ( const std::string search_path)
static
  • search_path the name of a path-like environment variable
Returns
the result of the verification. Can be one of Ok, EnvironmentVariableUndefined, UnknownDirectory

Definition at line 196 of file PathResolver.cpp.

197 {
198  std::string path_list;
199  if ( ! System::getEnv(search_path, path_list) )
201 
202  vector<string> spv;
203  boost::split( spv, path_list, boost::is_any_of( path_separator ), boost::token_compress_on);
204 
205  try {
206  for (const auto& itr : spv ) {
207  bf::path pp(itr);
208  if (!is_directory(pp)) {
209  return (UnknownDirectory);
210  }
211  }
212  } catch(bf::filesystem_error /*err*/) {
213  return (UnknownDirectory);
214  }
215 
216  return ( Ok );
217 }
GAUDI_API std::string getEnv(const char *var)
get a particular environment variable (returning "UNKNOWN" if not set)
Definition: System.cpp:550
STL class.
STL class.
string System::PathResolver::find_directory ( const std::string logical_file_name,
const std::string search_path,
SearchType  search_type = LocalSearch 
)
static
  • logical_file_name the name of the directory to locate in the search path
  • search_path the name of a path-like environment variable
  • search_type characterizes the type of search. Can be either LocalSearch or RecursiveSearch
Returns
the physical name of the located directory or empty string if not found

Definition at line 165 of file PathResolver.cpp.

168 {
169  std::string path_list;
170  System::getEnv(search_path, path_list);
171 
172  return (find_directory_from_list (logical_file_name, path_list, search_type));
173 }
GAUDI_API std::string getEnv(const char *var)
get a particular environment variable (returning "UNKNOWN" if not set)
Definition: System.cpp:550
STL class.
static std::string find_directory_from_list(const std::string &logical_file_name, const std::string &search_list, SearchType search_type=LocalSearch)
string System::PathResolver::find_directory_from_list ( const std::string logical_file_name,
const std::string search_list,
SearchType  search_type = LocalSearch 
)
static
  • logical_file_name the name of the directory to locate in the search path
  • search_list the prioritized list of possible locations separated by the usual path separator
  • search_type characterizes the type of search. Can be either LocalSearch or RecursiveSearch
Returns
the physical name of the located directory or empty string if not found

Definition at line 178 of file PathResolver.cpp.

181 {
182  std::string result;
183 
184  if (!PR_find (logical_file_name, search_list, PR_directory, search_type, result))
185  {
186  result = "";
187  }
188 
189  return (result);
190 }
STL class.
string System::PathResolver::find_file ( const std::string logical_file_name,
const std::string search_path,
SearchType  search_type = LocalSearch 
)
static
  • logical_file_name the name of the file to locate in the search path
  • search_path the name of a path-like environment variable
  • search_type characterizes the type of search. Can be either LocalSearch or RecursiveSearch
Returns
the physical name of the located file or empty string if not found

Definition at line 126 of file PathResolver.cpp.

128  {
129 
130  std::string path_list;
131  System::getEnv(search_path, path_list);
132 
133  return (find_file_from_list (logical_file_name, path_list, search_type));
134 }
GAUDI_API std::string getEnv(const char *var)
get a particular environment variable (returning "UNKNOWN" if not set)
Definition: System.cpp:550
static std::string find_file_from_list(const std::string &logical_file_name, const std::string &search_list, SearchType search_type=LocalSearch)
STL class.
std::string System::PathResolver::find_file_from_list ( const std::string logical_file_name,
const std::string search_list,
SearchType  search_type = LocalSearch 
)
static
  • logical_file_name the name of the file to locate in the search path
  • search_list the prioritized list of possible locations separated by the usual path separator
  • search_type characterizes the type of search. Can be either LocalSearch or RecursiveSearch
Returns
the physical name of the located file or empty string if not found

Definition at line 139 of file PathResolver.cpp.

142 {
143  std::string result("");
144 
145  bf::path lfn( logical_file_name );
146 
147  /* bool found = */
148  PR_find (lfn, search_list, PR_regular_file, search_type, result);
149 
150  // The following functionality was in the original PathResolver, but I believe
151  // that it's WRONG. It extracts the filename of the requested item, and searches
152  // for that if the preceding search fails. i.e., if you're looking for "B/a.txt",
153  // and that fails, it will look for just "a.txt" in the search list.
154 
155  // if (! found && lfn.filename() != lfn ) {
156  // result = "";
157  // PR_find (lfn.filename(), search_list, PR_regular_file, search_type, result);
158  // }
159 
160  return (result);
161 }
STL class.

The documentation for this class was generated from the following files: