Skip to content
Snippets Groups Projects
Commit e2af96a6 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Skips Scenes/ dir in ObjectFinder

parent c22e0a03
No related branches found
No related tags found
No related merge requests found
...@@ -55,6 +55,12 @@ namespace armarx ...@@ -55,6 +55,12 @@ namespace armarx
} }
bool ObjectFinder::isDatasetDirValid(const path& path) const
{
return path.filename() != "Scenes" and std::filesystem::is_directory(path);
}
std::optional<ObjectInfo> ObjectFinder::findObject(const std::string& dataset, const std::string& name) const std::optional<ObjectInfo> ObjectFinder::findObject(const std::string& dataset, const std::string& name) const
{ {
init(); init();
...@@ -67,8 +73,8 @@ namespace armarx ...@@ -67,8 +73,8 @@ namespace armarx
return ObjectInfo(packageName, packageDataDir, dataset, name); return ObjectInfo(packageName, packageDataDir, dataset, name);
} }
// Search for object in datasets. // Search for object in datasets.
const auto& datasets = getDatasets(); const std::vector<std::string>& datasets = getDatasets();
for (const path& dataset : datasets) for (const std::string& dataset : datasets)
{ {
if (fs::is_directory(_rootDirAbs() / dataset / name)) if (fs::is_directory(_rootDirAbs() / dataset / name))
{ {
...@@ -106,7 +112,7 @@ namespace armarx ...@@ -106,7 +112,7 @@ namespace armarx
{ {
// init(); // Done by called methods. // init(); // Done by called methods.
std::vector<std::string> datasets; std::vector<std::string> datasets;
for (const auto& dir : getDatasetDirectories()) for (const path& dir : getDatasetDirectories())
{ {
datasets.push_back(dir.filename()); datasets.push_back(dir.filename());
} }
...@@ -123,9 +129,9 @@ namespace armarx ...@@ -123,9 +129,9 @@ namespace armarx
const bool local = false; const bool local = false;
std::vector<path> dirs = simox::fs::list_directory(_rootDirAbs(), local); std::vector<path> dirs = simox::fs::list_directory(_rootDirAbs(), local);
std::vector<path> datasetDirs; std::vector<path> datasetDirs;
for (const auto& p : dirs) for (const path& p : dirs)
{ {
if (std::filesystem::is_directory(p)) if (isDatasetDirValid(p))
{ {
datasetDirs.push_back(p); datasetDirs.push_back(p);
} }
...@@ -144,7 +150,7 @@ namespace armarx ...@@ -144,7 +150,7 @@ namespace armarx
std::vector<ObjectInfo> objects; std::vector<ObjectInfo> objects;
for (const path& datasetDir : simox::fs::list_directory(_rootDirAbs(), local)) for (const path& datasetDir : simox::fs::list_directory(_rootDirAbs(), local))
{ {
if (fs::is_directory(_rootDirAbs() / datasetDir)) if (isDatasetDirValid(_rootDirAbs() / datasetDir))
{ {
std::vector<ObjectInfo> dataset = findAllObjectsOfDataset(datasetDir, checkPaths); std::vector<ObjectInfo> dataset = findAllObjectsOfDataset(datasetDir, checkPaths);
for (const auto& o : dataset) for (const auto& o : dataset)
...@@ -169,7 +175,7 @@ namespace armarx ...@@ -169,7 +175,7 @@ namespace armarx
std::vector<armem::articulated_object::ArticulatedObjectDescription> objects; std::vector<armem::articulated_object::ArticulatedObjectDescription> objects;
for (const path& datasetDir : simox::fs::list_directory(_rootDirAbs(), local)) for (const path& datasetDir : simox::fs::list_directory(_rootDirAbs(), local))
{ {
if (fs::is_directory(_rootDirAbs() / datasetDir)) if (isDatasetDirValid(_rootDirAbs() / datasetDir))
{ {
const auto dataset = findAllArticulatedObjectsOfDataset(datasetDir, checkPaths); const auto dataset = findAllArticulatedObjectsOfDataset(datasetDir, checkPaths);
objects.insert(objects.end(), dataset.begin(), dataset.end()); objects.insert(objects.end(), dataset.begin(), dataset.end());
...@@ -221,7 +227,9 @@ namespace armarx ...@@ -221,7 +227,9 @@ namespace armarx
return objects; return objects;
} }
std::unordered_map<std::string, std::vector<armem::articulated_object::ArticulatedObjectDescription>> ObjectFinder::findAllArticulatedObjectsByDataset(bool checkPaths) const
std::unordered_map<std::string, std::vector<armem::articulated_object::ArticulatedObjectDescription>>
ObjectFinder::findAllArticulatedObjectsByDataset(bool checkPaths) const
{ {
init(); init();
if (!_ready()) if (!_ready())
...@@ -234,7 +242,7 @@ namespace armarx ...@@ -234,7 +242,7 @@ namespace armarx
std::unordered_map<std::string, std::vector<armem::articulated_object::ArticulatedObjectDescription>> datasets; std::unordered_map<std::string, std::vector<armem::articulated_object::ArticulatedObjectDescription>> datasets;
for (const path& datasetDir : simox::fs::list_directory(_rootDirAbs(), local)) for (const path& datasetDir : simox::fs::list_directory(_rootDirAbs(), local))
{ {
if (fs::is_directory(_rootDirAbs() / datasetDir)) if (isDatasetDirValid(_rootDirAbs() / datasetDir))
{ {
const auto dataset = findAllArticulatedObjectsOfDataset(datasetDir, checkPaths); const auto dataset = findAllArticulatedObjectsOfDataset(datasetDir, checkPaths);
datasets[datasetDir] = dataset; datasets[datasetDir] = dataset;
...@@ -244,7 +252,8 @@ namespace armarx ...@@ -244,7 +252,8 @@ namespace armarx
} }
std::vector<armem::articulated_object::ArticulatedObjectDescription> ObjectFinder::findAllArticulatedObjectsOfDataset(const std::string& dataset, bool checkPaths) const std::vector<armem::articulated_object::ArticulatedObjectDescription>
ObjectFinder::findAllArticulatedObjectsOfDataset(const std::string& dataset, bool checkPaths) const
{ {
init(); init();
if (!_ready()) if (!_ready())
...@@ -252,7 +261,7 @@ namespace armarx ...@@ -252,7 +261,7 @@ namespace armarx
return {}; return {};
} }
path datasetDir = _rootDirAbs() / dataset; path datasetDir = _rootDirAbs() / dataset;
if (!fs::is_directory(datasetDir)) if (!isDatasetDirValid(datasetDir))
{ {
ARMARX_WARNING << "Expected dataset directory for dataset '" << dataset << "': \n" ARMARX_WARNING << "Expected dataset directory for dataset '" << dataset << "': \n"
<< datasetDir; << datasetDir;
......
...@@ -89,14 +89,18 @@ namespace armarx ...@@ -89,14 +89,18 @@ namespace armarx
private: private:
void init() const; void init() const;
bool isDatasetDirValid(const std::filesystem::path& path) const;
path _rootDirAbs() const; path _rootDirAbs() const;
path _rootDirRel() const; path _rootDirRel() const;
bool _ready() const; bool _ready() const;
private: private:
/// Name of package containing the object models (ArmarXObjects by default). /// Name of package containing the object models (ArmarXObjects by default).
mutable std::string packageName; mutable std::string packageName;
...@@ -105,5 +109,6 @@ namespace armarx ...@@ -105,5 +109,6 @@ namespace armarx
* Empty if package could not be found. * Empty if package could not be found.
*/ */
mutable path packageDataDir; mutable path packageDataDir;
}; };
} }
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