// VFSTools.h - useful functions and misc stuff // For conditions of distribution and use, see copyright notice in VFS.h // Not all of these functions are used by ttvfs, but are added for user convenience. // Everyone needs some path/file mangling functions at some point. #ifndef VFS_TOOLS_H #define VFS_TOOLS_H #include #include #include #include "VFSDefines.h" VFS_NAMESPACE_START typedef std::deque StringList; // these return false if the queried dir does not exist bool GetFileList(const char *, StringList& files); bool GetDirList(const char *, StringList& dirs, int depth = 0); // recursion depth: 0 = subdirs of current, 1 = subdirs one level down, ..., -1 = deep recursion bool FileExists(const char *); bool IsDirectory(const char *); bool CreateDir(const char*); bool CreateDirRec(const char*); bool GetFileSize(const char*, vfspos&); void FixSlashes(std::string& s); void FixPath(std::string& s); const char *GetBaseNameFromPath(const char *str); void MakeSlashTerminated(std::string& s); void StripFileExtension(std::string& s); void StripLastPath(std::string& s); bool WildcardMatch(const char *str, const char *pattern); size_t strnNLcpy(char *dst, const char *src, unsigned int n = -1); template void StrSplit(const std::string &src, const std::string &sep, T& container, bool keepEmpty = false) { std::string s; for (std::string::const_iterator i = src.begin(); i != src.end(); i++) { if (sep.find(*i) != std::string::npos) { if (keepEmpty || s.length()) container.push_back(s); s = ""; } else { s += *i; } } if (keepEmpty || s.length()) container.push_back(s); } template void SkipSelfPath(T *& s) { while(s[0] == '.' && s[1] == '/') s += 2; if(s[0] == '.' && !s[1]) ++s; } inline std::string joinPath(std::string base, const char *sub) { if(!*sub) return base; if(*sub != '/' && base.length() && base[base.length()-1] != '/') base += '/'; return base + sub; } VFS_NAMESPACE_END #endif