diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-09 10:01:46 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@qt.io> | 2016-09-29 21:47:05 +0200 |
commit | 0d96e1932937b866343ae8b52c20e0a8c058f3b2 (patch) | |
tree | 24c851e37aff55c8b0abbeaab92542df6a0696ec /Source/cmFileMonitor.h | |
parent | 5d29506811c5b75ae48e12de6c317f6440874215 (diff) | |
download | cmake-0d96e1932937b866343ae8b52c20e0a8c058f3b2.tar.gz |
server-mode: Add infrastructure to watch the filesystem
Enable the server to watch for filesystem changes. This patch includes
* The infrastructure for the file watching
* makes that infrastructure available to cmServerProtocols
* Resets the filesystemwatchers on "configure"
Diffstat (limited to 'Source/cmFileMonitor.h')
-rw-r--r-- | Source/cmFileMonitor.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Source/cmFileMonitor.h b/Source/cmFileMonitor.h new file mode 100644 index 0000000000..e05f48dc47 --- /dev/null +++ b/Source/cmFileMonitor.h @@ -0,0 +1,28 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +#include <functional> +#include <string> +#include <vector> + +#include "cm_uv.h" + +class cmRootWatcher; + +class cmFileMonitor +{ +public: + cmFileMonitor(uv_loop_t* l); + ~cmFileMonitor(); + + using Callback = std::function<void(const std::string&, int, int)>; + void MonitorPaths(const std::vector<std::string>& paths, Callback cb); + void StopMonitoring(); + + std::vector<std::string> WatchedFiles() const; + std::vector<std::string> WatchedDirectories() const; + +private: + cmRootWatcher* Root; +}; |