w1146869587
2021-11-05 cbf39419a8299e7d119618e5e8e1b1eb35f72f45
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
#ifndef EFSW_FILEWATCHERGENERIC_HPP
#define EFSW_FILEWATCHERGENERIC_HPP
 
#include <efsw/FileWatcherImpl.hpp>
#include <efsw/WatcherGeneric.hpp>
#include <efsw/DirWatcherGeneric.hpp>
#include <list>
 
namespace efsw
{
 
/// Implementation for Generic File Watcher.
/// @class FileWatcherGeneric
class FileWatcherGeneric : public FileWatcherImpl
{
    public:
        typedef std::list<WatcherGeneric*> WatchList;
 
        FileWatcherGeneric( FileWatcher * parent );
 
        virtual ~FileWatcherGeneric();
 
        /// Add a directory watch
        /// On error returns WatchID with Error type.
        WatchID addWatch(const std::string& directory, FileWatchListener* watcher, bool recursive);
 
        /// Remove a directory watch. This is a brute force lazy search O(nlogn).
        void removeWatch(const std::string& directory);
 
        /// Remove a directory watch. This is a map lookup O(logn).
        void removeWatch(WatchID watchid);
 
        /// Updates the watcher. Must be called often.
        void watch();
 
        /// Handles the action
        void handleAction(Watcher * watch, const std::string& filename, unsigned long action, std::string oldFilename = "");
 
        /// @return Returns a list of the directories that are being watched
        std::list<std::string> directories();
    protected:
        Thread * mThread;
 
        /// The last watchid
        WatchID mLastWatchID;
 
        /// Map of WatchID to WatchStruct pointers
        WatchList mWatches;
 
        Mutex mWatchesLock;
 
        bool pathInWatches( const std::string& path );
    private:
        void run();
};
 
}
 
#endif