36 #include <boost/regex.hpp>
38 #include <IceUtil/Handle.h>
40 #include <SimoxUtility/algorithm/string/string_tools.h>
41 #include <SimoxUtility/simox/SimoxPath.h>
59 namespace fs = std::filesystem;
104 ArmarXDataPath::ArmarXDataPath()
110 std::string& storeAbsoluteFilename,
111 const std::vector<std::string>& additionalSearchPaths,
117 const std::filesystem::path
filename(relativeFilename);
120 if (std::filesystem::exists(
filename))
122 storeAbsoluteFilename =
filename.string();
126 const auto search = [&
filename, &storeAbsoluteFilename](
const auto& bases)
128 for (
const auto& currentPath : bases)
130 std::filesystem::path path(currentPath);
132 std::filesystem::path filenameComplete = path /
filename;
134 if (std::filesystem::exists(filenameComplete))
136 storeAbsoluteFilename = filenameComplete.string();
142 const auto searchProject = [&search](
const auto&
project)
147 return search(projectDataPaths);
150 if (search(additionalSearchPaths) || search(ArmarXDataPath_data.
dataPaths))
158 std::filesystem::path p = relativeFilename;
162 p = std::filesystem::relative(p,
"/");
164 while (p.has_parent_path())
166 if (p.parent_path() ==
".")
175 const auto pstr = p.string();
176 if (!pstr.empty() && searchProject(pstr))
197 <<
"\n in the following additional paths: " << additionalSearchPaths
198 <<
"\n or in the following data paths: "
207 const std::vector<std::string>& additionalSearchPaths,
210 std::string storeAbsoluteFilename;
211 getAbsolutePath(relativeFilename, storeAbsoluteFilename, additionalSearchPaths, verbose);
212 return storeAbsoluteFilename;
217 std::string& resultFileName,
220 const auto file_ok = [](
const std::string& f)
221 {
return std::filesystem::exists(f) && std::ifstream(f).good(); };
234 if (std::filesystem::path{queryFileName}.is_absolute() && file_ok(queryFileName))
236 resultFileName = queryFileName;
240 std::string found_file;
241 if (
getAbsolutePath(queryFileName, found_file, {}, verbose) && file_ok(found_file))
243 resultFileName = found_file;
248 std::size_t offset = 0;
249 while (offset != std::string::npos && offset < queryFileName.size())
253 static const std::string dataMarker =
"/data/";
254 offset = queryFileName.find(dataMarker, offset);
255 if (offset == std::string::npos)
259 const std::string prefix_path = queryFileName.substr(0, offset);
260 offset += dataMarker.size();
261 const std::string path_in_data = queryFileName.substr(offset);
266 found_file = simox::SimoxPath::getVirtualRobotDataDir() / path_in_data;
267 if (file_ok(found_file))
269 resultFileName = found_file;
274 if (
getAbsolutePath(path_in_data, found_file, {}, verbose) && file_ok(found_file))
276 resultFileName = found_file;
279 const std::size_t slash_offset = path_in_data.find(
"/");
280 if (slash_offset == std::string::npos)
284 const std::string package_name = path_in_data.substr(0, slash_offset);
291 resultFileName = found_file;
300 const std::string& relativeFilename)
302 std::filesystem::path fn(relativeFilename);
303 for (
auto currentProject : projects)
309 ARMARX_VERBOSE_S <<
"ArmarX Package " << currentProject <<
" has not been found!";
315 std::filesystem::path fnComplete = p / fn;
317 if (std::filesystem::exists(fnComplete))
320 return currentProject;
324 return std::string();
330 std::filesystem::path p(filepathStr);
331 std::filesystem::path result;
333 for (std::filesystem::path::iterator it = p.begin(); it != p.end(); ++it)
335 if (*it ==
".." && it != p.begin())
338 bool isSymLink =
false;
342 isSymLink = std::filesystem::is_symlink(result);
344 catch (std::filesystem::filesystem_error&)
354 else if (result.filename() ==
"..")
361 result = result.parent_path();
375 return result.string();
384 for (
auto absolutePathPart = std::filesystem::path(absolutePathString);
385 absolutePathPart != absolutePathPart.parent_path();
386 absolutePathPart = absolutePathPart.parent_path())
388 for (
const auto& dataPath : ArmarXDataPath_data.
dataPaths)
390 const std::filesystem::path p(dataPath);
392 if (std::filesystem::equivalent(p, absolutePathPart))
394 return relativeTo(p.string(), absolutePathString);
399 throw LocalException() <<
"Could not make path relative to any ArmarX data path for '"
400 << absolutePathString <<
"'. "
401 <<
"Considered the following paths: "
403 return absolutePathString;
412 fs::path from(fromStr);
414 fs::path::const_iterator fromIter = (from).begin();
415 fs::path::const_iterator toIter = (to).begin();
418 throw LocalException(
"From path is empty");
422 throw LocalException(
"To path is empty");
424 if (*fromIter != *toIter)
426 throw LocalException(
"From and to path do not have the same toplevel dir: ")
430 while (fromIter != from.end() && toIter != to.end() && (*toIter) == (*fromIter))
437 while (fromIter != from.end())
443 while (toIter != to.end())
445 finalPath /= *toIter;
449 return finalPath.string();
455 fs::path subPath(subPathStr);
458 fs::path strippedPath;
459 while (!subPath.empty())
461 if (
Contains(pathStr, subPath.string()))
466 strippedPath = subPath.filename() / strippedPath;
467 subPath = subPath.parent_path();
482 const boost::regex e(
"\\$([a-zA-Z0-9_]+)");
483 const boost::regex e2(
"\\$\\{([a-zA-Z0-9_]+)\\}");
484 boost::match_results<std::string::const_iterator> what;
486 auto replaceVars = [&](
const boost::regex& e)
488 bool found_match = boost::regex_search(
string, what, e);
491 for (
size_t i = 1; i < what.size(); i += 2)
493 std::string var = what[i];
495 auto envVar = getenv(var.c_str());
498 string = boost::regex_replace(
string, e, std::string(envVar));
511 const std::string varName,
512 const std::string& varValue)
514 string = simox::alg::replace_all(
string, std::string(
"${") + varName +
"}", varValue);
521 if (!path.empty() && path[0] ==
'~')
523 path = path.erase(0, 1);
524 auto envVar = getenv(
"HOME");
527 path = std::string(envVar) +
"/" + path;
540 std::string resolved = path;
542 if (fs::path(resolved).is_relative())
544 std::string absolute;
557 __addPaths(dataPathList);
564 for (
const auto& p : dataPathList)
574 __addPaths(dataPath);
580 if (
const char* home_path = std::getenv(
"ArmarXHome_DIR"))
582 return cleanPath(std::string(home_path));
584 return std::string();
588 ArmarXDataPath::init()
598 if (
const char* data_path = std::getenv(
"ArmarXData_DIRS"))
600 std::string pathStr(data_path);
605 if (
const char* data_path_dir = std::getenv(
"ArmarXData_DIR"))
607 std::string pathStr(data_path_dir);
614 std::vector<std::string>
621 ArmarXDataPath::__addPaths(
const std::string& pathList)
628 std::vector<std::string> separatedPaths = __separatePaths(pathList);
630 if (separatedPaths.size() == 0)
637 for (
int i = separatedPaths.size() - 1; i >= 0; i--)
640 ok =
ok & __addPath(separatedPaths[i]);
646 std::vector<std::string>
647 ArmarXDataPath::__separatePaths(
const std::string& pathList)
649 std::string delimiters =
";";
655 ArmarXDataPath::__pathIsValid(
const std::string& path)
662 std::filesystem::path p(path);
663 return std::filesystem::is_directory(p) || std::filesystem::is_symlink(p);
667 ArmarXDataPath::__addPath(
const std::string& path)
676 if (splitted.size() < 3)
682 std::string root =
"";
683 std::string
project = splitted[splitted.size() - 2];
684 std::string
data = splitted[splitted.size() - 1];
686 for (
unsigned int i = 0; i < splitted.size() - 2; ++i)
688 root +=
"/" + splitted[i];
691 std::filesystem::path p(root +
"/" +
project +
"/" +
data);
693 if (!__pathIsValid(p))
696 <<
"'. Try to capitalize project folder..." << std::endl;
700 p = std::filesystem::path(root +
"/" +
project +
"/" +
data);
701 if (!__pathIsValid(p))
704 <<
"'. Try to caps project folder..." << std::endl;
708 p = std::filesystem::path(root +
"/" +
project +
"/" +
data);
710 if (!__pathIsValid(p))
718 if (std::find(ArmarXDataPath_data.
dataPaths.begin(),
720 p) == ArmarXDataPath_data.
dataPaths.end())
723 ArmarXDataPath_data.
dataPaths.push_back(p);
734 if (application.get() !=
nullptr)
737 std::string cachePathStr;
739 cachePathStr = application->getProperty<std::string>(
"CachePath").getValue();
740 if (std::filesystem::path(cachePathStr).is_relative())
742 std::string pathPrefix;
754 (std::filesystem::path(pathPrefix) / std::filesystem::path(cachePathStr))
770 catch (LocalException& error)
779 char* env_armarx_workspace = getenv(
"ARMARX_WORKSPACE");
780 char* env_armarx_default_config_dir_name = getenv(
"ARMARX_CONFIG_DIR_NAME");
782 std::filesystem::path armarx_workspace;
783 std::filesystem::path armarx_config_dir;
785 if (env_armarx_workspace !=
nullptr)
787 armarx_workspace = std::filesystem::path(env_armarx_workspace);
791 char* home = getenv(
"HOME");
795 armarx_workspace = std::filesystem::path(home);
799 armarx_workspace =
"~/";
803 if (env_armarx_default_config_dir_name !=
nullptr)
805 armarx_config_dir = std::filesystem::path(env_armarx_default_config_dir_name);
809 if (env_armarx_workspace !=
nullptr)
811 armarx_config_dir =
"armarx_config";
816 armarx_config_dir =
".armarx";
820 return (armarx_workspace / armarx_config_dir).string();
826 if (packageName.empty())