2014-04-06 17:19:33 +00:00
|
|
|
// Dir.cpp - basic directory interface + classes
|
2012-06-01 15:23:19 +00:00
|
|
|
// For conditions of distribution and use, see copyright notice in VFS.h
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
#include "VFSInternal.h"
|
|
|
|
#include "VFSTools.h"
|
|
|
|
#include "VFSFile.h"
|
|
|
|
#include "VFSDir.h"
|
2014-04-06 17:19:33 +00:00
|
|
|
#include "VFSDirView.h"
|
|
|
|
#include "VFSLoader.h"
|
2012-06-01 15:23:19 +00:00
|
|
|
|
|
|
|
VFS_NAMESPACE_START
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase::DirBase(const char *fullpath)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
|
|
|
_setName(fullpath);
|
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase::~DirBase()
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
File *DirBase::getFile(const char *fn, bool lazyLoad /* = true */)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
|
|
|
while(fn[0] == '.' && fn[1] == '/') // skip ./
|
|
|
|
fn += 2;
|
|
|
|
|
|
|
|
char *slashpos = (char *)strchr(fn, '/');
|
|
|
|
|
|
|
|
// if there is a '/' in the string, descend into subdir and continue there
|
|
|
|
if(slashpos)
|
|
|
|
{
|
|
|
|
// "" (the empty directory name) is allowed, so we can't return 'this' when hitting an empty string the first time.
|
|
|
|
// This whole mess is required for absolute unix-style paths ("/home/foo/..."),
|
|
|
|
// which, to integrate into the tree properly, sit in the root directory's ""-subdir.
|
|
|
|
// FIXME: Bad paths (double-slashes and the like) need to be normalized elsewhere, currently!
|
|
|
|
|
|
|
|
size_t len = strlen(fn);
|
|
|
|
char *dup = (char*)VFS_STACK_ALLOC(len + 1);
|
|
|
|
memcpy(dup, fn, len + 1); // also copy the null-byte
|
|
|
|
slashpos = dup + (slashpos - fn); // use direct offset, not to have to recount again the first time
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase *subdir = this;
|
2012-06-01 15:23:19 +00:00
|
|
|
const char *ptr = dup;
|
|
|
|
|
|
|
|
goto pos_known;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ptr = slashpos + 1;
|
|
|
|
while(ptr[0] == '.' && ptr[1] == '/') // skip ./
|
|
|
|
ptr += 2;
|
|
|
|
slashpos = (char *)strchr(ptr, '/');
|
|
|
|
if(!slashpos)
|
|
|
|
break;
|
|
|
|
|
|
|
|
pos_known:
|
|
|
|
*slashpos = 0;
|
2014-04-06 17:19:33 +00:00
|
|
|
subdir = subdir->getDirByName(ptr, true, true);
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
while(subdir);
|
|
|
|
VFS_STACK_FREE(dup);
|
|
|
|
if(!subdir)
|
|
|
|
return NULL;
|
|
|
|
// restore pointer into original string, by offset
|
|
|
|
ptr = fn + (ptr - dup);
|
2014-04-06 17:19:33 +00:00
|
|
|
return subdir->getFileByName(ptr, lazyLoad);
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// no subdir? file must be in this dir now.
|
2014-04-06 17:19:33 +00:00
|
|
|
return getFileByName(fn, lazyLoad);
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
|
|
|
|
DirBase *DirBase::getDir(const char *subdir, bool forceCreate /* = false */, bool lazyLoad /* = true */, bool useSubtrees /* = true */)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
SkipSelfPath(subdir);
|
|
|
|
if(!subdir[0])
|
2012-06-01 15:23:19 +00:00
|
|
|
return this;
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase *ret = NULL;
|
2012-06-01 15:23:19 +00:00
|
|
|
char *slashpos = (char *)strchr(subdir, '/');
|
|
|
|
|
|
|
|
// if there is a '/' in the string, descend into subdir and continue there
|
|
|
|
if(slashpos)
|
|
|
|
{
|
|
|
|
// from a/b/c, cut out the a, without the trailing '/'.
|
|
|
|
const char *sub = slashpos + 1;
|
|
|
|
size_t copysize = slashpos - subdir;
|
|
|
|
char * const t = (char*)VFS_STACK_ALLOC(copysize + 1);
|
|
|
|
memcpy(t, subdir, copysize);
|
|
|
|
t[copysize] = 0;
|
2014-04-06 17:19:33 +00:00
|
|
|
|
|
|
|
if(DirBase *dir = getDirByName(t, lazyLoad, useSubtrees))
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
// TODO: get rid of recursion
|
|
|
|
ret = dir->getDir(sub, forceCreate, lazyLoad); // descend into subdirs
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
else if(forceCreate)
|
|
|
|
{
|
|
|
|
// -> newname = fullname() + '/' + t
|
|
|
|
size_t fullLen = fullnameLen();
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase *ins;
|
2012-06-01 15:23:19 +00:00
|
|
|
if(fullLen)
|
|
|
|
{
|
|
|
|
char * const newname = (char*)VFS_STACK_ALLOC(fullLen + copysize + 2);
|
|
|
|
char *ptr = newname;
|
|
|
|
memcpy(ptr, fullname(), fullLen);
|
|
|
|
ptr += fullLen;
|
|
|
|
*ptr++ = '/';
|
|
|
|
memcpy(ptr, t, copysize);
|
|
|
|
ptr[copysize] = 0;
|
|
|
|
ins = createNew(newname);
|
|
|
|
VFS_STACK_FREE(newname);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ins = createNew(t);
|
|
|
|
|
|
|
|
_subdirs[ins->name()] = ins;
|
2014-04-06 17:19:33 +00:00
|
|
|
ret = ins->getDir(sub, true, lazyLoad); // create remaining structure
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
if(DirBase *dir = getDirByName(subdir, lazyLoad, useSubtrees))
|
|
|
|
ret = dir;
|
2012-06-01 15:23:19 +00:00
|
|
|
else if(forceCreate)
|
|
|
|
{
|
|
|
|
size_t fullLen = fullnameLen();
|
|
|
|
if(fullLen)
|
|
|
|
{
|
|
|
|
// -> newname = fullname() + '/' + subdir
|
|
|
|
size_t subdirLen = strlen(subdir);
|
|
|
|
char * const newname = (char*)VFS_STACK_ALLOC(fullLen + subdirLen + 2);
|
|
|
|
char *ptr = newname;
|
|
|
|
memcpy(ptr, fullname(), fullLen);
|
|
|
|
ptr += fullLen;
|
|
|
|
*ptr++ = '/';
|
|
|
|
memcpy(ptr, subdir, subdirLen);
|
|
|
|
ptr[subdirLen] = 0;
|
|
|
|
|
|
|
|
ret = createNew(newname);
|
|
|
|
VFS_STACK_FREE(newname);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = createNew(subdir);
|
|
|
|
}
|
|
|
|
|
|
|
|
_subdirs[ret->name()] = ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
static void _iterDirs(Dirs &m, DirEnumCallback f, void *user)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
for(Dirs::iterator it = m.begin(); it != m.end(); ++it)
|
|
|
|
f(it->second.content(), user);
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
void DirBase::forEachDir(DirEnumCallback f, void *user /* = NULL */, bool safe /* = false */)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
|
|
|
if(safe)
|
|
|
|
{
|
|
|
|
Dirs cp = _subdirs;
|
|
|
|
_iterDirs(cp, f, user);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
_iterDirs(_subdirs, f, user);
|
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase *DirBase::getDirByName(const char *dn, bool /* unused: lazyLoad = true */, bool useSubtrees /* = true */)
|
|
|
|
{
|
|
|
|
Dirs::const_iterator it = _subdirs.find(dn);
|
|
|
|
return it != _subdirs.end() ? it->second : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DirBase::clearGarbage()
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
for(Dirs::iterator it = _subdirs.begin(); it != _subdirs.end(); ++it)
|
|
|
|
it->second->clearGarbage();
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
Dir::Dir(const char *fullpath, VFSLoader *ldr)
|
|
|
|
: DirBase(fullpath), _loader(ldr)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Dir::~Dir()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
File *Dir::getFileByName(const char *fn, bool lazyLoad /* = true */)
|
|
|
|
{
|
|
|
|
Files::iterator it = _files.find(fn);
|
|
|
|
if(it != _files.end())
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
if(!lazyLoad || !_loader)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Lazy-load file if it's not in the tree yet
|
|
|
|
// TODO: get rid of alloc
|
|
|
|
std::string fn2 = joinPath(fullname(), GetBaseNameFromPath(fn));
|
|
|
|
File *f = _loader->Load(fn2.c_str(), fn2.c_str());
|
|
|
|
if(f)
|
|
|
|
_files[f->name()] = f;
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _iterFiles(Files &m, FileEnumCallback f, void *user)
|
|
|
|
{
|
|
|
|
for(Files::iterator it = m.begin(); it != m.end(); ++it)
|
|
|
|
f(it->second.content(), user);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Dir::forEachFile(FileEnumCallback f, void *user /* = NULL */, bool safe /* = false */)
|
|
|
|
{
|
|
|
|
load();
|
2012-06-01 15:23:19 +00:00
|
|
|
if(safe)
|
|
|
|
{
|
|
|
|
Files cp = _files;
|
|
|
|
_iterFiles(cp, f, user);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
_iterFiles(_files, f, user);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
bool Dir::add(File *f)
|
|
|
|
{
|
|
|
|
if(!f)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Files::iterator it = _files.find(f->name());
|
|
|
|
|
|
|
|
if(it != _files.end())
|
|
|
|
{
|
|
|
|
File *oldf = it->second;
|
|
|
|
if(oldf == f)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
_files.erase(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
_files[f->name()] = f;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Dir::addRecursive(File *f, size_t skip /* = 0 */)
|
|
|
|
{
|
|
|
|
if(!f)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Dir *vdir = this;
|
|
|
|
if(f->fullnameLen() - f->nameLen() > skip)
|
|
|
|
{
|
|
|
|
// figure out directory from full file name
|
|
|
|
size_t prefixLen = f->fullnameLen() - f->nameLen() - skip;
|
|
|
|
|
|
|
|
// prefixLen == 0 is invalid, prefixLen == 1 is just a single '/', which will be stripped away below.
|
|
|
|
// in both cases, just use 'this'.
|
|
|
|
if(prefixLen > 1)
|
|
|
|
{
|
|
|
|
char *dirname = (char*)VFS_STACK_ALLOC(prefixLen);
|
|
|
|
--prefixLen; // -1 to strip the trailing '/'. That's the position where to put the terminating null byte.
|
|
|
|
++skip;
|
|
|
|
memcpy(dirname, f->fullname() + skip, prefixLen); // copy trailing null byte
|
|
|
|
dirname[prefixLen] = 0;
|
|
|
|
vdir = safecastNonNull<Dir*>(getDir(dirname, true));
|
|
|
|
VFS_STACK_FREE(dirname);
|
|
|
|
}
|
|
|
|
}
|
2012-06-01 15:23:19 +00:00
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
return vdir->add(f);
|
|
|
|
}
|
2012-06-01 15:23:19 +00:00
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
void Dir::clearGarbage()
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase::clearGarbage();
|
|
|
|
for(Files::iterator it = _files.begin(); it != _files.end(); ++it)
|
|
|
|
it->second->clearGarbage();
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
bool Dir::_addToView(char *path, DirView& view)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
if(Dir *dir = safecast<Dir*>(getDir(path)))
|
|
|
|
{
|
|
|
|
view.add(dir);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2012-06-01 15:23:19 +00:00
|
|
|
}
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase *Dir::getDirByName(const char *dn, bool lazyLoad /* = true */, bool useSubtrees /* = true */)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
2014-04-06 17:19:33 +00:00
|
|
|
DirBase *sub;
|
|
|
|
if((sub = DirBase::getDirByName(dn, lazyLoad, useSubtrees)))
|
|
|
|
return sub;
|
|
|
|
|
|
|
|
if(!lazyLoad || !_loader)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Lazy-load file if it's not in the tree yet
|
|
|
|
// TODO: get rid of alloc
|
|
|
|
std::string fn2 = joinPath(fullname(), dn);
|
|
|
|
sub = _loader->LoadDir(fn2.c_str(), fn2.c_str());
|
|
|
|
if(sub)
|
|
|
|
_subdirs[sub->name()] = sub;
|
|
|
|
return sub;
|
|
|
|
}
|
|
|
|
|
2012-06-01 15:23:19 +00:00
|
|
|
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
// ----- DiskDir start here -----
|
2012-06-01 15:23:19 +00:00
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
|
|
|
|
DiskDir::DiskDir(const char *path, VFSLoader *ldr) : Dir(path, ldr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DiskDir *DiskDir::createNew(const char *dir) const
|
|
|
|
{
|
|
|
|
return new DiskDir(dir, getLoader());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiskDir::load()
|
|
|
|
{
|
|
|
|
_files.clear();
|
|
|
|
_subdirs.clear();
|
|
|
|
// TODO: cache existing files and keep them unless they do no longer exist
|
2012-06-01 15:23:19 +00:00
|
|
|
|
|
|
|
StringList li;
|
|
|
|
GetFileList(fullname(), li);
|
|
|
|
for(StringList::iterator it = li.begin(); it != li.end(); ++it)
|
|
|
|
{
|
|
|
|
// TODO: use stack alloc
|
|
|
|
std::string tmp = fullname();
|
|
|
|
tmp += '/';
|
|
|
|
tmp += *it;
|
2014-04-06 17:19:33 +00:00
|
|
|
|
|
|
|
DiskFile *f = new DiskFile(tmp.c_str());
|
2012-06-01 15:23:19 +00:00
|
|
|
_files[f->name()] = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.clear();
|
2013-06-24 17:54:25 +00:00
|
|
|
GetDirList(fullname(), li, 0);
|
2014-04-06 17:19:33 +00:00
|
|
|
for(StringList::iterator it = li.begin(); it != li.end(); ++it)
|
2012-06-01 15:23:19 +00:00
|
|
|
{
|
|
|
|
// TODO: use stack alloc
|
|
|
|
std::string full(fullname());
|
|
|
|
full += '/';
|
|
|
|
full += *it; // GetDirList() always returns relative paths
|
|
|
|
|
2014-04-06 17:19:33 +00:00
|
|
|
Dir *d = createNew(full.c_str());
|
2012-06-01 15:23:19 +00:00
|
|
|
_subdirs[d->name()] = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VFS_NAMESPACE_END
|