summaryrefslogtreecommitdiffstats
path: root/core/resource/binfile.cc
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-09-11 14:13:39 +0500
committeruntodesu <kirill@untode.su>2025-09-11 14:13:39 +0500
commit8784cbfebcb8a0220fb947a6070032e20b80fc2f (patch)
tree2e03a2c013ed7b19a5dafaba1ddfb05c1878449a /core/resource/binfile.cc
parentf0cc06c7388acb32b86301965c5b2547e4e3b919 (diff)
downloadvoxelius-8784cbfebcb8a0220fb947a6070032e20b80fc2f.tar.bz2
voxelius-8784cbfebcb8a0220fb947a6070032e20b80fc2f.zip
Another qfengine graft: resource management
DECOPYPASTA DECOPYPASTA DECOPYPASTA DECOPYPASTA
Diffstat (limited to 'core/resource/binfile.cc')
-rw-r--r--core/resource/binfile.cc68
1 files changed, 24 insertions, 44 deletions
diff --git a/core/resource/binfile.cc b/core/resource/binfile.cc
index 726ef9b..0e6efa8 100644
--- a/core/resource/binfile.cc
+++ b/core/resource/binfile.cc
@@ -4,68 +4,48 @@
#include "core/resource/resource.hh"
-static emhash8::HashMap<std::string, resource_ptr<BinFile>> resource_map;
+#include "core/utils/physfs.hh"
-template<>
-resource_ptr<BinFile> resource::load<BinFile>(std::string_view name, unsigned int flags)
+static const void* binfile_load_func(const char* name, std::uint32_t flags)
{
- auto it = resource_map.find(std::string(name));
+ assert(name);
- if(it != resource_map.cend()) {
- // Return an existing resource
- return it->second;
+ auto file = PHYSFS_openRead(name);
+
+ if(file == nullptr) {
+ spdlog::error("binfile: {}: {}", name, utils::physfs_error());
+ return nullptr;
}
- auto file = PHYSFS_openRead(std::string(name).c_str());
+ PHYSFS_sint64 file_size = PHYSFS_fileLength(file);
- if(file == nullptr) {
- spdlog::warn("resource: {}: {}", name, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
+ if(file_size < 0) {
+ spdlog::error("binfile: {}: {}", name, utils::physfs_error());
+ PHYSFS_close(file);
return nullptr;
}
- auto new_resource = std::make_shared<BinFile>();
- new_resource->size = PHYSFS_fileLength(file);
- new_resource->buffer = new std::byte[new_resource->size];
+ auto binfile = new BinFile();
+ binfile->size = static_cast<std::size_t>(file_size);
+ binfile->buffer = new std::byte[binfile->size];
- PHYSFS_readBytes(file, new_resource->buffer, new_resource->size);
+ PHYSFS_readBytes(file, binfile->buffer, file_size);
PHYSFS_close(file);
- return resource_map.insert_or_assign(std::string(name), new_resource).first->second;
+ return binfile;
}
-template<>
-void resource::hard_cleanup<BinFile>(void)
+static void binfile_free_func(const void* resource)
{
- for(const auto& it : resource_map) {
- if(it.second.use_count() > 1L) {
- spdlog::warn("resource: zombie resource [BinFile] {} [use_count={}]", it.first, it.second.use_count());
- }
- else {
- spdlog::debug("resource: releasing [BinFile] {}", it.first);
- }
+ assert(resource);
- delete[] it.second->buffer;
- }
+ auto binfile = reinterpret_cast<const BinFile*>(resource);
+ delete[] binfile->buffer;
- resource_map.clear();
+ delete binfile;
}
-template<>
-void resource::soft_cleanup<BinFile>(void)
+void BinFile::register_resource(void)
{
- auto iter = resource_map.cbegin();
-
- while(iter != resource_map.cend()) {
- if(iter->second.use_count() == 1L) {
- spdlog::debug("resource: releasing [BinFile] {}", iter->first);
-
- delete[] iter->second->buffer;
-
- iter = resource_map.erase(iter);
-
- continue;
- }
-
- iter = std::next(iter);
- }
+ resource::register_loader<BinFile>(&binfile_load_func, &binfile_free_func);
}