X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FResource.cc;h=ec940257045ea6650bf479f197eed0df9f91b60c;hp=6f09601bf0d36d07f0dc820523e388ed13334868;hb=987971a961454d97082c6448fdc0bbeb540281bb;hpb=8a1acac01b444dccf8b57cedf08392ada2e473c1 diff --git a/src/Moof/Resource.cc b/src/Moof/Resource.cc index 6f09601..ec94025 100644 --- a/src/Moof/Resource.cc +++ b/src/Moof/Resource.cc @@ -38,28 +38,43 @@ namespace Mf { // static member -std::vector Resource::searchPaths_; +std::vector Resource::gSearchPaths; -void Resource::addSearchPath(const std::string& directory) +void Resource::addSearchPaths(const std::string& path) { - std::string path(directory); + std::vector paths; + boost::split(paths, path, boost::is_any_of(":")); - ASSERT(path.length() > 0 && "empty search path string"); + addSearchPaths(paths); +} + +void Resource::addSearchPaths(const std::vector& path) +{ + std::vector::const_iterator it; - // add a slash if there isn't one already - if (*path.rbegin() != '/') + for (it = path.begin(); it != path.end(); ++it) { - path += '/'; - } + std::string onePath(*it); + + ASSERT(!onePath.empty() && "empty search path string"); + + // add a slash if there isn't one already + if (*onePath.rbegin() != '/') + { + onePath += '/'; + } #if defined(_WIN32) || defined(__WIN32__) - boost::replace_all(path, "/", "\\"); + boost::replace_all(onePath, "/", "\\"); #endif - searchPaths_.push_back(path); + gSearchPaths.push_back(onePath); + logInfo << "added search path " << onePath << std::endl; + } } + std::string Resource::getPath(const std::string& name) { std::vector::iterator it; @@ -70,7 +85,7 @@ std::string Resource::getPath(const std::string& name) boost::replace_all(path, "/", "\\"); #endif - for (it = searchPaths_.begin(); it != searchPaths_.end(); ++it) + for (it = gSearchPaths.begin(); it != gSearchPaths.end(); ++it) { std::string fullPath(*it); fullPath += path; @@ -78,7 +93,7 @@ std::string Resource::getPath(const std::string& name) if (access(fullPath.c_str(), R_OK) == 0) return fullPath; } - logWarning("cannot find resource %s", name.c_str()); + logWarning << "cannot find resource " << name << std::endl; // empty string return std::string();