|
C3D_API | ResourceCacheT (castor3d::Engine &engine) |
| Constructor.
|
|
C3D_API void | clear () noexcept |
| Flushes the collection.
|
|
C3D_API ElementObsT | loadPlugin (String const &pluginName, Path const &pathFolder) noexcept |
| Loads a plug-in, given the plug-in name (ex: libGlRenderSystem.dll => GlRenderSystem)
|
|
C3D_API ElementObsT | loadPlugin (Path const &fileFullPath) noexcept |
| Loads a plug-in, given the plug-in file's full path.
|
|
C3D_API castor::StringMap< castor3d::PluginRPtr > | getPlugins (castor3d::PluginType type) |
| Retrieves the plug-ins of given type.
|
|
C3D_API void | loadAllPlugins (Path const &folder) |
| Loads all the plug-ins located in working folder.
|
|
| ResourceCacheBaseT (ResourceCacheBaseT const &)=delete |
|
| ResourceCacheBaseT (ResourceCacheBaseT &&) noexcept=delete |
|
ResourceCacheBaseT & | operator= (ResourceCacheBaseT const &)=delete |
|
ResourceCacheBaseT & | operator= (ResourceCacheBaseT &&) noexcept=delete |
|
void | cleanup () noexcept |
| Sets all the elements to be cleaned up.
|
|
void | clear () noexcept |
| Flushes the collection.
|
|
ElementPtrT | create (ElementKeyT const &name, ParametersT &&... parameters) const |
| Creates an element.
|
|
ElementObsT | tryAdd (ElementKeyT const &name, ElementPtrT &element, bool initialise=false) |
| Adds an element.
|
|
ElementObsT | tryAdd (ElementKeyT const &name, bool initialise, ElementObsT &created, ParametersT &&... parameters) |
| Add an element, constructed in-place.
|
|
ElementObsT | tryAddNoLock (ElementKeyT const &name, ElementPtrT &element, bool initialise=false) |
| Adds an element.
|
|
ElementObsT | tryAddNoLock (ElementKeyT const &name, bool initialise, ElementObsT &created, ParametersT &&... parameters) |
| Add an element, constructed in-place.
|
|
ElementObsT | add (ElementKeyT const &name, ElementPtrT &element, bool initialise=true) |
| Logging version of tryAdd.
|
|
ElementObsT | add (ElementKeyT const &name, ParametersT &&... parameters) |
| Logging version of tryAdd.
|
|
ElementObsT | addNoLock (ElementKeyT const &name, ElementPtrT &element, bool initialise=true) |
| Logging version of tryAdd.
|
|
ElementObsT | addNoLock (ElementKeyT const &name, ParametersT &&... parameters) |
| Logging version of tryAdd.
|
|
ElementPtrT | tryRemove (ElementKeyT const &name, bool cleanup=false) noexcept |
| Removes an element, given a name.
|
|
ElementPtrT | tryRemoveNoLock (ElementKeyT const &name, bool cleanup=false) noexcept |
| Removes an element, given a name.
|
|
ElementPtrT | remove (ElementKeyT const &name, bool cleanup=false) noexcept |
| Logging version of tryRemove.
|
|
ElementPtrT | removeNoLock (ElementKeyT const &name, bool cleanup=false) noexcept |
| Logging version of tryRemove.
|
|
void | rename (ElementKeyT const &oldName, ElementKeyT const &newName) |
| Renames a resource.
|
|
ElementObsT | tryFind (ElementKeyT const &name) const noexcept |
| Looks for an element with given name.
|
|
ElementObsT | tryFindNoLock (ElementKeyT const &name) const noexcept |
| Looks for an element with given name.
|
|
ElementObsT | find (ElementKeyT const &name) const |
| Logging version of tryRemove.
|
|
ElementObsT | findNoLock (ElementKeyT const &name) const |
| Logging version of tryRemove.
|
|
void | mergeInto (ElementCacheBaseT &destination) |
| Merges this cache's elements to the one given.
|
|
void | forEach (FuncType func) const |
|
void | forEach (FuncType func) |
|
uint32_t | getObjectCount () const noexcept |
|
uint32_t | getObjectCountNoLock () const noexcept |
|
String const & | getObjectTypeName () const noexcept |
|
bool | has (ElementKeyT const &name) const noexcept |
|
bool | hasNoLock (ElementKeyT const &name) const noexcept |
|
bool | isEmpty () const noexcept |
|
bool | isEmptyNoLock () const noexcept |
|
void | lock () const |
|
void | unlock () const noexcept |
|
auto | begin () noexcept |
|
auto | begin () const noexcept |
|
auto | end () noexcept |
|
auto | end () const noexcept |
|
void | reportCreation (String const &name) const |
|
void | reportAdded (String const &name) const |
|
void | reportDuplicate (String const &name) const |
|
void | reportNull () const |
|
void | reportUnknown (String const &name) const |
|