X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FResource.cc;h=ec940257045ea6650bf479f197eed0df9f91b60c;hp=ff4213ec7d3e04e877704a949313f72f00df2e84;hb=987971a961454d97082c6448fdc0bbeb540281bb;hpb=be9ebc1104574e5e81e19c5caba0c23b54df826d diff --git a/src/Moof/Resource.cc b/src/Moof/Resource.cc index ff4213e..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;