blob: ca52de7f22b7047997904074b53435f9ea489e00 (
plain)
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
|
#ifndef EFSW_DIRWATCHERGENERIC_HPP
#define EFSW_DIRWATCHERGENERIC_HPP
#include <efsw/DirectorySnapshot.hpp>
#include <efsw/FileInfo.hpp>
#include <efsw/WatcherGeneric.hpp>
#include <map>
namespace efsw {
class DirWatcherGeneric {
public:
typedef std::map<std::string, DirWatcherGeneric*> DirWatchMap;
DirWatcherGeneric* Parent;
WatcherGeneric* Watch;
DirectorySnapshot DirSnap;
DirWatchMap Directories;
bool Recursive;
DirWatcherGeneric( DirWatcherGeneric* parent, WatcherGeneric* ws, const std::string& directory,
bool recursive, bool reportNewFiles = false );
~DirWatcherGeneric();
void watch( bool reportOwnChange = false );
void watchDir( std::string& dir );
static bool isDir( const std::string& directory );
bool pathInWatches( std::string path );
void addChilds( bool reportNewFiles = true );
DirWatcherGeneric* findDirWatcher( std::string dir );
DirWatcherGeneric* findDirWatcherFast( std::string dir );
protected:
bool Deleted;
DirWatcherGeneric* createDirectory( std::string newdir );
void removeDirectory( std::string dir );
void moveDirectory( std::string oldDir, std::string newDir );
void resetDirectory( std::string directory );
void handleAction( const std::string& filename, unsigned long action,
std::string oldFilename = "" );
};
} // namespace efsw
#endif
|