Public Member Functions | |
Cache (ref< VFileSystem > fs, const PathName &resourceDirectory, const PathName &cacheDirectory) | |
virtual | ~Cache () |
virtual String | className () const |
virtual base::Object & | clone () const |
virtual ref< VFile > | getFile (const PathName &name) throw (path_not_found, io_error) |
virtual ref< VFile > | findFile (const PathName &name, const PathName &additionalPath=PathName()) throw (path_not_found, io_error) |
obtain a file (looks in the resource tree, current directory & the optional path provided) | |
virtual bool | isCached (const PathName &name) throw (path_not_found, io_error) |
is there a resource cache directory associated with this file | |
virtual ref< VDirectory > | getCache (const PathName &name) throw (path_not_found, io_error) |
obtain resource cache directory associated with a file (possibly empty) | |
virtual PathName | resourceDirectory () const |
virtual PathName | cacheDirectory () const |
virtual bool | isSameKindAs (const ReferencedObject &) const |
virtual bool | isSameKindAs (const Object &) const |
void | reference () const |
bool | unreference () const |
const int | referenceCount () const |
void | enableOnUnreferenceCall (bool enabled) |
virtual void | onUnreference () const |
Protected Attributes | |
PathName | _resourceDirectory |
PathName | _cacheDirectory |
ref< VFileSystem > | filesystem |
int | _refCount |
bool | onUnreferenceEnabled |
|
Referenced by clone(). |
|
|
|
Definition at line 44 of file ResourceCache. References base::ResourceCache::_cacheDirectory. |
|
return the name of the object's class type. Must be defined by derived classes. Implements base::Object. Definition at line 41 of file Cache. References base::String. Referenced by clone(). |
|
Definition at line 42 of file Cache. References Cache(), className(), and NewNamedObj. |
|
If enabled, each call to unreference() will also call virtual method onUnreference() Definition at line 115 of file Referenced. References base::Referenced::onUnreferenceEnabled. |
|
obtain a file (looks in the resource tree, current directory & the optional path provided)
Implements base::ResourceCache. |
|
obtain resource cache directory associated with a file (possibly empty)
Implements base::ResourceCache. |
|
obtain a file (relative paths are w.r.t. the current directory) Implements base::ResourceCache. |
|
is there a resource cache directory associated with this file
Implements base::ResourceCache. |
|
|
|
Definition at line 52 of file ReferencedObject. |
|
Called by unreference() if enabled via enableOnUnreferenceCall(true). Typically overridden in subclasses that wish to know about unreference() calls - for example to handle manually breaking cyclic references Reimplemented in robot::control::ControllableAdaptor::AdaptorControlInterface, and robot::control::ControllableAdaptor. Definition at line 121 of file Referenced. Referenced by base::Referenced::unreference(). |
|
Increment the reference count by one, indicating that this object has another pointer which is referencing it. Definition at line 65 of file Referenced. References base::Referenced::_refCount. |
|
Return the number pointers currently referencing this object. Definition at line 112 of file Referenced. References base::Referenced::_refCount. Referenced by robot::control::ControllableAdaptor::AdaptorControlInterface::onUnreference(). |
|
Definition at line 43 of file ResourceCache. References base::ResourceCache::_resourceDirectory. |
|
Decrement the reference count by one, indicating that a pointer to this object is referencing it. If the refence count goes to zero, it is assumed that this object is nolonger referenced and is automatically deleted. Definition at line 81 of file Referenced. References base::Referenced::_refCount, Exception, base::Referenced::onUnreference(), and base::Referenced::onUnreferenceEnabled. |
|
Definition at line 54 of file ResourceCache. Referenced by base::ResourceCache::cacheDirectory(). |
|
Definition at line 136 of file Referenced. Referenced by base::Referenced::reference(), base::Referenced::referenceCount(), base::Referenced::Referenced(), base::Referenced::unreference(), and base::Referenced::~Referenced(). |
|
Definition at line 53 of file ResourceCache. Referenced by base::ResourceCache::resourceDirectory(). |
|
Definition at line 55 of file ResourceCache. |
|
Definition at line 137 of file Referenced. Referenced by base::Referenced::enableOnUnreferenceCall(), base::Referenced::Referenced(), and base::Referenced::unreference(). |