-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscantree.hpp
79 lines (61 loc) · 2.14 KB
/
scantree.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#ifndef _RAR_SCANTREE_
#define _RAR_SCANTREE_
enum SCAN_DIRS
{
SCAN_SKIPDIRS, // Skip directories, but recurse for files if recursion mode is enabled.
SCAN_GETDIRS, // Get subdirectories in recurse mode.
SCAN_GETDIRSTWICE, // Get the directory name both before and after the list of files it contains.
SCAN_GETCURDIRS // Get subdirectories in current directory even in RECURSE_NONE mode.
};
enum SCAN_CODE { SCAN_SUCCESS,SCAN_DONE,SCAN_ERROR,SCAN_NEXT };
class CommandData;
class ScanTree
{
private:
static constexpr size_t MAXSCANDEPTH = MAXPATHSIZE/2;
bool ExpandFolderMask();
bool GetFilteredMask();
bool GetNextMask();
SCAN_CODE FindProc(FindData *FD);
void ScanError(bool &Error);
// FindFile *FindStack[MAXSCANDEPTH];
std::vector<FindFile *> FindStack;
int Depth;
int SetAllMaskDepth;
StringList *FileMasks;
RECURSE_MODE Recurse;
bool GetLinks;
SCAN_DIRS GetDirs;
uint Errors;
// Set when processing paths like c:\ (root directory without wildcards).
bool ScanEntireDisk;
std::wstring CurMask;
std::wstring OrigCurMask;
// Store all folder masks generated from folder wildcard mask in non-recursive mode.
StringList ExpandedFolderList;
// Store a filter string for folder wildcard in recursive mode.
StringList FilterList;
// Save the list of unreadable dirs here.
StringList *ErrDirList;
std::vector<uint> *ErrDirSpecPathLength;
// Set if processing a folder wildcard mask.
bool FolderWildcards;
bool SearchAllInRoot;
size_t SpecPathLength;
std::wstring ErrArcName;
CommandData *Cmd;
public:
ScanTree(StringList *FileMasks,RECURSE_MODE Recurse,bool GetLinks,SCAN_DIRS GetDirs);
~ScanTree();
SCAN_CODE GetNext(FindData *FindData);
size_t GetSpecPathLength() {return SpecPathLength;}
uint GetErrors() {return Errors;};
void SetErrArcName(const std::wstring &Name) {ErrArcName=Name;}
void SetCommandData(CommandData *Cmd) {ScanTree::Cmd=Cmd;}
void SetErrDirList(StringList *List,std::vector<uint> *Lengths)
{
ErrDirList=List;
ErrDirSpecPathLength=Lengths;
}
};
#endif