Visualization Library 2.0.0
A lightweight C++ OpenGL middleware for 2D/3D graphics
|
[Download] [Tutorials] [All Classes] [Grouped Classes] |
The ResourceLoadWriter class is an abstract class used to implement read/write support for one or more resource types. More...
#include <ResourceLoadWriter.hpp>
Public Member Functions | |
ResourceLoadWriter (const String &load_extensions, const String &write_extensions) | |
virtual ref< ResourceDatabase > | loadResource (const String &path) const =0 |
virtual ref< ResourceDatabase > | loadResource (VirtualFile *file) const =0 |
virtual bool | writeResource (const String &path, ResourceDatabase *resource) const =0 |
virtual bool | writeResource (VirtualFile *file, ResourceDatabase *resource) const =0 |
bool | canLoad (const String &extension) const |
Returns true if the given file type can be loaded. More... | |
const String & | loadExtensions () const |
Returns the string containing the file types that can be loaded. More... | |
void | setLoadExtensions (const String &extensions) |
Sets the set of file extensions that can be loaded. More... | |
bool | canWrite (const String &extension) const |
Returns true if the given file type can be written. More... | |
const String & | writeExtensions () const |
Returns the string containing the file types that can be written. More... | |
void | setWriteExtensions (const String &extensions) |
Sets the set of file extensions that can be written. More... | |
Public Member Functions inherited from vl::Object | |
Object () | |
Constructor. More... | |
Object (const Object &other) | |
Copy constructor: copies the name, ref count mutex and user data. More... | |
Object & | operator= (const Object &other) |
Copy operator: copies the object's name, ref count mutex and user data. More... | |
const std::string & | objectName () const |
The name of the object, by default set to the object's class name. More... | |
void | setObjectName (const char *name) |
The name of the object, by default set to the object's class name in debug builds. More... | |
void | setObjectName (const std::string &name) |
The name of the object, by default set to the object's class name in debug builds. More... | |
void | setRefCountMutex (IMutex *mutex) |
The mutex used to protect the reference counting of an Object across multiple threads. More... | |
IMutex * | refCountMutex () |
The mutex used to protect the reference counting of an Object across multiple threads. More... | |
const IMutex * | refCountMutex () const |
The mutex used to protect the reference counting of an Object across multiple threads. More... | |
int | referenceCount () const |
Returns the number of references of an object. More... | |
void | incReference () const |
Increments the reference count of an object. More... | |
void | decReference () |
Decrements the reference count of an object and deletes it if both automaticDelete() is true the count reaches 0. More... | |
void | setAutomaticDelete (bool autodel_on) |
If set to true the Object is deleted when its reference count reaches 0. More... | |
bool | automaticDelete () const |
If set to true the Object is deleted when its reference count reaches 0. More... | |
template<class T > | |
T * | as () |
Casts an Object to the specified class. More... | |
template<class T > | |
const T * | as () const |
Casts an Object to the specified class. More... | |
Protected Attributes | |
String | mLoadExtensions |
String | mWriteExtensions |
Protected Attributes inherited from vl::Object | |
std::string | mObjectName |
IMutex * | mRefCountMutex |
int | mReferenceCount |
bool | mAutomaticDelete |
Additional Inherited Members | |
Protected Member Functions inherited from vl::Object | |
virtual | ~Object () |
The ResourceLoadWriter class is an abstract class used to implement read/write support for one or more resource types.
Definition at line 44 of file ResourceLoadWriter.hpp.
|
inline |
Definition at line 49 of file ResourceLoadWriter.hpp.
References loadResource(), and writeResource().
|
inline |
Returns true if the given file type can be loaded.
Note that the check is not case sensitive.
Definition at line 58 of file ResourceLoadWriter.hpp.
References vl::String::find(), mLoadExtensions, and vl::String::toLowerCase().
Referenced by vl::LoadWriterManager::findLoader().
|
inline |
Returns true if the given file type can be written.
Note that the check is not case sensitive.
Definition at line 72 of file ResourceLoadWriter.hpp.
References vl::String::find(), mWriteExtensions, and vl::String::toLowerCase().
|
inline |
Returns the string containing the file types that can be loaded.
The extensions returned are always lower-case.
Definition at line 62 of file ResourceLoadWriter.hpp.
References mLoadExtensions.
|
pure virtual |
Implemented in vl::LoadWriterDae, vl::LoadWriterAC3D, vlX::LoadWriterVLX, vl::LoadWriterDICOM, vl::LoadWriterJPG, vl::LoadWriterPNG, vl::LoadWriterTGA, vl::LoadWriterTIFF, vl::LoadWriterOBJ, vl::LoadWriterBMP, vl::LoadWriterDAT, vl::LoadWriterDDS, vl::LoadWriterMHD, vl::LoadWriter3DS, vl::LoadWriterPLY, vl::LoadWriterSTL, and vl::LoadWriterMD2.
Referenced by vl::LoadWriterManager::loadResource(), and ResourceLoadWriter().
|
pure virtual |
Implemented in vl::LoadWriterDae, vl::LoadWriterAC3D, vlX::LoadWriterVLX, vl::LoadWriterDICOM, vl::LoadWriterJPG, vl::LoadWriterPNG, vl::LoadWriterTGA, vl::LoadWriterTIFF, vl::LoadWriterBMP, vl::LoadWriterDAT, vl::LoadWriterDDS, vl::LoadWriterMHD, vl::LoadWriterOBJ, vl::LoadWriter3DS, vl::LoadWriterPLY, vl::LoadWriterSTL, and vl::LoadWriterMD2.
|
inline |
Sets the set of file extensions that can be loaded.
The string must be of the form "|.ext1|.ext2|.ext3|" for example "|.jpg|.png|.gif|". Note that the file extension matching is non case sensitive, so for example the above extension includes also files with the following extensions: .JPG .Png, GiF and so on.
Definition at line 68 of file ResourceLoadWriter.hpp.
References mLoadExtensions, and vl::String::toLowerCase().
|
inline |
Sets the set of file extensions that can be written.
The string must be of the form "|.ext1|.ext2|.ext3|" for example "|.jpg|.png|.gif|". Note that the file extension matching is non case sensitive, so for example the above extension includes also files with the following extensions: .JPG .Png, GiF and so on.
Definition at line 82 of file ResourceLoadWriter.hpp.
References mWriteExtensions, and vl::String::toLowerCase().
|
inline |
Returns the string containing the file types that can be written.
The extensions returned are always lower-case.
Definition at line 76 of file ResourceLoadWriter.hpp.
References mWriteExtensions.
|
pure virtual |
Implemented in vl::LoadWriterDae, vlX::LoadWriterVLX, vl::LoadWriterAC3D, vl::LoadWriterDICOM, vl::LoadWriterJPG, vl::LoadWriterPNG, vl::LoadWriterTGA, vl::LoadWriterTIFF, vl::LoadWriterBMP, vl::LoadWriterDAT, vl::LoadWriterDDS, vl::LoadWriterMHD, vl::LoadWriterOBJ, vl::LoadWriter3DS, vl::LoadWriterPLY, vl::LoadWriterSTL, and vl::LoadWriterMD2.
Referenced by ResourceLoadWriter(), and vl::LoadWriterManager::writeResource().
|
pure virtual |
Implemented in vl::LoadWriterDae, vlX::LoadWriterVLX, vl::LoadWriterAC3D, vl::LoadWriterJPG, vl::LoadWriterDICOM, vl::LoadWriterPNG, vl::LoadWriterTGA, vl::LoadWriterTIFF, vl::LoadWriterDDS, vl::LoadWriterBMP, vl::LoadWriterDAT, vl::LoadWriterMHD, vl::LoadWriterOBJ, vl::LoadWriter3DS, vl::LoadWriterPLY, vl::LoadWriterSTL, and vl::LoadWriterMD2.
|
protected |
Definition at line 85 of file ResourceLoadWriter.hpp.
Referenced by canLoad(), loadExtensions(), and setLoadExtensions().
|
protected |
Definition at line 86 of file ResourceLoadWriter.hpp.
Referenced by canWrite(), setWriteExtensions(), and writeExtensions().
Visualization Library 2.0.0 Reference Documentation
Updated on Wed Dec 23 2020 12:44:11.
© Copyright Michele Bosi. All rights reserved.