libutils/include/fs/DirList.h

104 lines
3.4 KiB
C
Raw Normal View History

2017-10-29 09:24:06 +01:00
/****************************************************************************
* Copyright (C) 2010
* by Dimok
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any
* damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any
* purpose, including commercial applications, and to alter it and
* redistribute it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you
* must not claim that you wrote the original software. If you use
* this software in a product, an acknowledgment in the product
* documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and
* must not be misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source
* distribution.
*
* DirList Class
* for WiiXplorer 2010
***************************************************************************/
#ifndef ___DIRLIST_H_
#define ___DIRLIST_H_
#include <vector>
#include <string>
#include <wut_types.h>
2017-10-29 09:24:06 +01:00
2018-03-11 16:44:04 +01:00
typedef struct {
char * FilePath;
2018-06-20 14:44:30 +02:00
BOOL isDir;
2017-10-29 09:24:06 +01:00
} DirEntry;
2018-03-11 16:44:04 +01:00
class DirList {
2017-10-29 09:24:06 +01:00
public:
2018-03-11 16:44:04 +01:00
//!Constructor
DirList(void);
//!\param path Path from where to load the filelist of all files
//!\param filter A fileext that needs to be filtered
//!\param flags search/filter flags from the enum
2018-06-20 14:44:30 +02:00
DirList(const std::string & path, const char *filter = NULL, uint32_t flags = Files | Dirs, uint32_t maxDepth = 0xffffffff);
2018-03-11 16:44:04 +01:00
//!Destructor
virtual ~DirList();
//! Load all the files from a directory
2018-06-20 14:44:30 +02:00
BOOL LoadPath(const std::string & path, const char *filter = NULL, uint32_t flags = Files | Dirs, uint32_t maxDepth = 0xffffffff);
2018-03-11 16:44:04 +01:00
//! Get a filename of the list
//!\param list index
2018-06-20 14:44:30 +02:00
const char * GetFilename(int32_t index) const;
2018-03-11 16:44:04 +01:00
//! Get the a filepath of the list
//!\param list index
2018-06-20 14:44:30 +02:00
const char *GetFilepath(int32_t index) const {
2018-03-11 16:44:04 +01:00
if (!valid(index)) return "";
else return FileInfo[index].FilePath;
}
//! Get the a filesize of the list
//!\param list index
2018-06-20 14:44:30 +02:00
uint64_t GetFilesize(int32_t index) const;
2018-03-11 16:44:04 +01:00
//! Is index a dir or a file
//!\param list index
2018-06-20 14:44:30 +02:00
BOOL IsDir(int32_t index) const {
2018-03-11 16:44:04 +01:00
if(!valid(index)) return false;
return FileInfo[index].isDir;
};
//! Get the filecount of the whole list
2018-06-20 14:44:30 +02:00
int32_t GetFilecount() const {
2018-03-11 16:44:04 +01:00
return FileInfo.size();
};
//! Sort list by filepath
void SortList();
//! Custom sort command for custom sort functions definitions
2018-06-20 14:44:30 +02:00
void SortList(BOOL (*SortFunc)(const DirEntry &a, const DirEntry &b));
2018-03-11 16:44:04 +01:00
//! Get the index of the specified filename
2018-06-20 14:44:30 +02:00
int32_t GetFileIndex(const char *filename) const;
2018-03-11 16:44:04 +01:00
//! Enum for search/filter flags
enum {
Files = 0x01,
Dirs = 0x02,
CheckSubfolders = 0x08,
};
2017-10-29 09:24:06 +01:00
protected:
2018-03-11 16:44:04 +01:00
// Internal parser
2018-06-20 14:44:30 +02:00
BOOL InternalLoadPath(std::string &path);
2018-03-11 16:44:04 +01:00
//!Add a list entrie
2018-06-20 14:44:30 +02:00
void AddEntrie(const std::string &filepath, const char * filename, BOOL isDir);
2018-03-11 16:44:04 +01:00
//! Clear the list
void ClearList();
//! Check if valid pos is requested
2018-06-20 14:44:30 +02:00
inline BOOL valid(uint32_t pos) const {
2018-03-11 16:44:04 +01:00
return (pos < FileInfo.size());
};
2017-10-29 09:24:06 +01:00
2018-06-20 14:44:30 +02:00
uint32_t Flags;
uint32_t Depth;
2018-03-11 16:44:04 +01:00
const char *Filter;
std::vector<DirEntry> FileInfo;
2017-10-29 09:24:06 +01:00
};
#endif