Interface ResourceLoader
- All Known Implementing Classes:
ClassloaderResourceLoader,FileObjectResourceLoader,FileResourceLoader,RawResourceLoader,URLResourceLoader,ZipResourceLoader
public interface ResourceLoader
A resource loader knows how to get binary rawdata from a location specified by an resource key. A resource key is a
wrapper around any kind of data that is suitable to identify a resource location. The resource key can also hold
configuration data for the factory.
If the storage system is hierarchical, a new resource key can be derived from a given path-string.
- Author:
- Thomas Morgner
-
Method Summary
Modifier and TypeMethodDescriptionCreates a new resource key from the given object and the factory keys.deriveKey(ResourceKey parent, String path, Map factoryKeys) Derives a new resource key from the given key.deserialize(ResourceKey bundleKey, String stringKey) Creates aResourceKeybased off theStringrepresentation of the key.booleanDetermines if the resource loader is capable of deserializing the serialized version of the ResourceKey.booleanChecks, whether this resource loader implementation was responsible for creating this key.load(ResourceKey key) Loads the binary data represented by this key.serialize(ResourceKey bundleKey, ResourceKey key) Serializes the resource key to a String representation which can be recreated using thedeserialize(ResourceKey)method.toURL(ResourceKey key) Generates aURLversion of the suppliedResourceKey.
-
Method Details
-
isSupportedKey
Checks, whether this resource loader implementation was responsible for creating this key.- Parameters:
key- the key that should be tested.- Returns:
- true, if the key is supported.
-
createKey
Creates a new resource key from the given object and the factory keys.- Parameters:
value- the key value.factoryKeys- optional parameter map (can be null).- Returns:
- the created key or null, if the format was not recognized.
- Throws:
ResourceKeyCreationException- if creating the key failed.
-
deriveKey
ResourceKey deriveKey(ResourceKey parent, String path, Map factoryKeys) throws ResourceKeyCreationException Derives a new resource key from the given key. If neither a path nor new factory-keys are given, the parent key is returned.- Parameters:
parent- the parentpath- the derived path (can be null).factoryKeys- the optional factory keys (can be null).- Returns:
- the derived key.
- Throws:
ResourceKeyCreationException- if the key cannot be derived for any reason.
-
load
Loads the binary data represented by this key.- Parameters:
key-- Returns:
- Throws:
ResourceLoadingException
-
toURL
Generates aURLversion of the suppliedResourceKey.- Parameters:
key- theResourceKeyfrom which aURLwill be created- Returns:
- the URL representation of the
ResourceKey
-
isSupportedDeserializer
Determines if the resource loader is capable of deserializing the serialized version of the ResourceKey.- Parameters:
data- the serialized version of the resource key- Returns:
trueif thisResourceLoaderis capable of deserializing the serialized version of this resource key,falseotherwise.
-
serialize
Serializes the resource key to a String representation which can be recreated using thedeserialize(ResourceKey)method.- Parameters:
bundleKey-key-- Returns:
- a
Stringwhich is a serialized version of theResourceKey - Throws:
ResourceException- indicates an error serializing the resource key
-
deserialize
ResourceKey deserialize(ResourceKey bundleKey, String stringKey) throws ResourceKeyCreationException Creates aResourceKeybased off theStringrepresentation of the key. TheStringshould have been created using theserializemethod.- Parameters:
bundleKey-stringKey- theStringrepresentation of theResourceKey@return aResourceKeywhich matches theStringrepresentation- Throws:
ResourceKeyCreationException- indicates an error occurred in the creation or deserialization of theResourceKey
-