mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 03:26:39 +00:00 
			
		
		
		
	Added ability to reset a VFS::Manager. Removed ability to rebuild the index for a VFS::Manager. Moved VFS creation to CSM::Data.
		
			
				
	
	
		
			100 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "manager.hpp"
 | 
						|
 | 
						|
#include <cctype>
 | 
						|
#include <stdexcept>
 | 
						|
 | 
						|
#include <components/misc/stringops.hpp>
 | 
						|
 | 
						|
#include "archive.hpp"
 | 
						|
 | 
						|
namespace
 | 
						|
{
 | 
						|
 | 
						|
    char strict_normalize_char(char ch)
 | 
						|
    {
 | 
						|
        return ch == '\\' ? '/' : ch;
 | 
						|
    }
 | 
						|
 | 
						|
    char nonstrict_normalize_char(char ch)
 | 
						|
    {
 | 
						|
        return ch == '\\' ? '/' : Misc::StringUtils::toLower(ch);
 | 
						|
    }
 | 
						|
 | 
						|
    void normalize_path(std::string& path, bool strict)
 | 
						|
    {
 | 
						|
        char (*normalize_char)(char) = strict ? &strict_normalize_char : &nonstrict_normalize_char;
 | 
						|
        std::transform(path.begin(), path.end(), path.begin(), normalize_char);
 | 
						|
    }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
namespace VFS
 | 
						|
{
 | 
						|
 | 
						|
    Manager::Manager(bool strict)
 | 
						|
        : mStrict(strict)
 | 
						|
    {
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    Manager::~Manager()
 | 
						|
    {
 | 
						|
        reset();
 | 
						|
    }
 | 
						|
 | 
						|
    void Manager::reset()
 | 
						|
    {
 | 
						|
        mIndex.clear();
 | 
						|
        for (std::vector<Archive*>::iterator it = mArchives.begin(); it != mArchives.end(); ++it)
 | 
						|
            delete *it;
 | 
						|
        mArchives.clear();
 | 
						|
    }
 | 
						|
 | 
						|
    void Manager::addArchive(Archive *archive)
 | 
						|
    {
 | 
						|
        mArchives.push_back(archive);
 | 
						|
    }
 | 
						|
 | 
						|
    void Manager::buildIndex()
 | 
						|
    {
 | 
						|
        mIndex.clear();
 | 
						|
 | 
						|
        for (std::vector<Archive*>::const_iterator it = mArchives.begin(); it != mArchives.end(); ++it)
 | 
						|
            (*it)->listResources(mIndex, mStrict ? &strict_normalize_char : &nonstrict_normalize_char);
 | 
						|
    }
 | 
						|
 | 
						|
    Files::IStreamPtr Manager::get(const std::string &name) const
 | 
						|
    {
 | 
						|
        std::string normalized = name;
 | 
						|
        normalize_path(normalized, mStrict);
 | 
						|
 | 
						|
        return getNormalized(normalized);
 | 
						|
    }
 | 
						|
 | 
						|
    Files::IStreamPtr Manager::getNormalized(const std::string &normalizedName) const
 | 
						|
    {
 | 
						|
        std::map<std::string, File*>::const_iterator found = mIndex.find(normalizedName);
 | 
						|
        if (found == mIndex.end())
 | 
						|
            throw std::runtime_error("Resource '" + normalizedName + "' not found");
 | 
						|
        return found->second->open();
 | 
						|
    }
 | 
						|
 | 
						|
    bool Manager::exists(const std::string &name) const
 | 
						|
    {
 | 
						|
        std::string normalized = name;
 | 
						|
        normalize_path(normalized, mStrict);
 | 
						|
 | 
						|
        return mIndex.find(normalized) != mIndex.end();
 | 
						|
    }
 | 
						|
 | 
						|
    const std::map<std::string, File*>& Manager::getIndex() const
 | 
						|
    {
 | 
						|
        return mIndex;
 | 
						|
    }
 | 
						|
 | 
						|
    void Manager::normalizeFilename(std::string &name) const
 | 
						|
    {
 | 
						|
        normalize_path(name, mStrict);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |