1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-16 06:29:31 +00:00
Aquaria/ExternalLibs/ttvfs/VFSBase.h

59 lines
1.7 KiB
C
Raw Normal View History

// VFSBase.h - bass class for VFSDir and VFSFile
// For conditions of distribution and use, see copyright notice in VFS.h
#ifndef VFS_BASE_H
#define VFS_BASE_H
#include <string>
#include "VFSDefines.h"
2014-04-06 17:19:33 +00:00
#include "VFSRefcounted.h"
VFS_NAMESPACE_START
// Used internally. No special properties, just holds some common code.
2014-04-06 17:19:33 +00:00
class VFSBase : public Refcounted
{
public:
virtual ~VFSBase() {}
/** Returns the plain file name. Never NULL. */
2014-04-06 17:19:33 +00:00
inline const char *name() const { return _name; }
/** Returns the file name with full path. Never NULL. */
2014-04-06 17:19:33 +00:00
inline const char *fullname() const { return _fullname.c_str(); }
/** To avoid strlen() */
2014-04-06 17:19:33 +00:00
inline size_t fullnameLen() const { return _fullname.length(); }
// We know that mem addr of _name > _fullname:
// _fullname: "abc/def/ghi/hjk.txt" (length = 19)
// _name: "hjk.txt" <-- want that length
// ptr diff: 12
// so in total: 19 - 12 == 7
2014-04-06 17:19:33 +00:00
inline size_t nameLen() const { return _fullname.length() - (_name - _fullname.c_str()); }
/** Basic RTTI, for debugging purposes */
2014-04-06 17:19:33 +00:00
virtual const char *getType() const = 0;
/** Can be overloaded to close resources this object keeps open */
2014-04-06 17:19:33 +00:00
virtual void close() {}
2014-04-06 17:19:33 +00:00
/** Can be overloaded if necessary. Called by VFSHelper::ClearGarbage() */
virtual void clearGarbage() {}
protected:
VFSBase();
void _setName(const char *n);
private:
const char *_name; // must point to an address constant during object lifetime (like _fullname.c_str() + N)
// (not necessary to have an additional string copy here, just wastes memory)
std::string _fullname;
};
VFS_NAMESPACE_END
#endif