added cache::each (close #275)

This commit is contained in:
Michele Caini
2019-07-09 13:58:44 +02:00
parent a470925305
commit 941fb1349b
2 changed files with 61 additions and 0 deletions

View File

@@ -195,6 +195,41 @@ public:
}
}
/**
* @brief Iterates all resources.
*
* The function object is invoked for each element. It is provided with
* either the resource identifier, the resource handle or both of them.<br/>
* The signature of the function must be equivalent to one of the following
* forms:
*
* @code{.cpp}
* void(const resource_type);
* void(resource_handle<Resource>);
* void(const resource_type, resource_handle<Resource>);
* @endcode
*
* @tparam Func Type of the function object to invoke.
* @param func A valid function object.
*/
template <typename Func>
void each(Func func) const {
auto begin = resources.begin();
auto end = resources.end();
while(begin != end) {
auto curr = begin++;
if constexpr(std::is_invocable_v<Func, resource_type>) {
func(curr->first);
} else if constexpr(std::is_invocable_v<Func, resource_handle<Resource>>) {
func(resource_handle{ curr->second });
} else {
func(curr->first, resource_handle{ curr->second });
}
}
}
private:
container_type resources;
};

View File

@@ -108,3 +108,29 @@ TEST(Resource, MutableHandle) {
ASSERT_EQ(cache.handle(hs)->value, 4);
}
TEST(Resource, Each) {
entt::resource_cache<resource> cache;
cache.load<loader>("resource"_hs, 0);
cache.each([](entt::resource_handle<resource> res) {
++res->value;
});
ASSERT_FALSE(cache.empty());
ASSERT_EQ(cache.handle("resource"_hs)->value, 1);
cache.each([](auto id, auto res) {
ASSERT_EQ(id, "resource"_hs);
++res->value;
});
ASSERT_FALSE(cache.empty());
ASSERT_EQ(cache.handle("resource"_hs)->value, 2);
cache.each([&cache](entt::resource_cache<resource>::resource_type id) {
cache.discard(id);
});
ASSERT_TRUE(cache.empty());
}