/* * Copyright (C) 2020 Christopher J. Howard * * This file is part of Antkeeper source code. * * Antkeeper source code is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Antkeeper source code is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Antkeeper source code. If not, see . */ #include "resources/resource-manager.hpp" resource_manager::resource_manager(): logger(nullptr) {} resource_manager::~resource_manager() { for (auto it = resource_cache.begin(); it != resource_cache.end(); ++it) { delete it->second; } } void resource_manager::unload(const std::string& name) { // Check if resource is in the cache auto it = resource_cache.find(name); if (it != resource_cache.end()) { // Decrement the resource handle reference count --it->second->reference_count; // Free the resource if the resource handle is unreferenced if (it->second->reference_count <= 0) { if (logger) { logger->push_task("Unloading resource \"" + name + "\""); } delete it->second; if (logger) { logger->pop_task(EXIT_SUCCESS); } } // Remove resource from the cache resource_cache.erase(it); } } void resource_manager::include(const std::string& search_path) { search_paths.push_back(search_path); } void resource_manager::set_logger(::logger* logger) { this->logger = logger; }