aboutsummaryrefslogtreecommitdiffhomepage
path: root/env_universal_common.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-05-03 16:31:11 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-05-03 16:31:11 -0700
commit47a81c2b39cd814e9d225c714f47aa3e3a7324c4 (patch)
tree2590b289e185662c8b2870b364406923fb1d16fe /env_universal_common.cpp
parent186b0f62ebf34a446730d45a0a27a51be335df24 (diff)
Re-establish inotify watch when file is deleted
Diffstat (limited to 'env_universal_common.cpp')
-rw-r--r--env_universal_common.cpp65
1 files changed, 47 insertions, 18 deletions
diff --git a/env_universal_common.cpp b/env_universal_common.cpp
index 7d926efe..78c2515f 100644
--- a/env_universal_common.cpp
+++ b/env_universal_common.cpp
@@ -1590,43 +1590,53 @@ class universal_notifier_inotify_t : public universal_notifier_t
{
int watch_fd;
int watch_descriptor;
+ const std::string narrow_path;
+
+ void reestablish_watch()
+ {
+#if FISH_INOTIFY_AVAILABLE
+ if (this->watch_fd >= 0)
+ {
+ if (this->watch_descriptor >= 0)
+ {
+ inotify_rm_watch(this->watch_fd, this->watch_descriptor);
+ }
+ this->watch_descriptor = inotify_add_watch(this->watch_fd, narrow_path.c_str(), IN_MODIFY | IN_MOVE_SELF | IN_DELETE_SELF | IN_EXCL_UNLINK);
+ if (this->watch_descriptor < 0)
+ {
+ wperror(L"inotify_add_watch");
+ }
+ }
+#endif
+ }
void setup_inotify(const wchar_t *test_path)
{
#if FISH_INOTIFY_AVAILABLE
-
- const wcstring path = test_path ? test_path : default_vars_path();
-
// Construct the watchfd
+
#if HAVE_INOTIFY_INIT1
this->watch_fd = inotify_init1(IN_NONBLOCK | IN_CLOEXEC);
#else
this->watch_fd = inotify_init();
- if (this->watch_fd >= 0)
- {
- int flags = fcntl(this->watch_fd, F_GETFL, 0);
- fcntl(this->watch_fd, F_SETFL, flags | O_NONBLOCK | FD_CLOEXEC);
- }
#endif
+
if (this->watch_fd < 0)
{
wperror(L"inotify_init");
}
else
{
- std::string narrow_path = wcs2string(path);
- this->watch_descriptor = inotify_add_watch(this->watch_fd, narrow_path.c_str(), IN_MODIFY | IN_EXCL_UNLINK);
- if (this->watch_descriptor < 0)
- {
- wperror(L"inotify_add_watch");
- }
+ int flags = fcntl(this->watch_fd, F_GETFL, 0);
+ fcntl(this->watch_fd, F_SETFL, flags | O_NONBLOCK | FD_CLOEXEC);
}
+ reestablish_watch();
#endif
}
public:
- universal_notifier_inotify_t(const wchar_t *test_path) : watch_fd(-1), watch_descriptor(-1)
+ universal_notifier_inotify_t(const wchar_t *test_path) : watch_fd(-1), watch_descriptor(-1), narrow_path(wcs2string(test_path ? test_path : default_vars_path()))
{
setup_inotify(test_path);
}
@@ -1651,9 +1661,28 @@ public:
bool result = false;
#if FISH_INOTIFY_AVAILABLE
- struct inotify_event evt = {};
- ssize_t read_amt = read(watch_fd, &evt, sizeof evt);
- result = (read_amt > 0);
+ for (;;)
+ {
+ struct inotify_event evt = {};
+ ssize_t read_amt = read(watch_fd, &evt, sizeof evt);
+ if (read_amt >= sizeof evt)
+ {
+ if (evt.mask & (IN_DELETE_SELF | IN_MOVE_SELF))
+ {
+ // When a file is deleted, the watch is lost. Recreate it.
+ reestablish_watch();
+ result = true;
+ }
+ if (evt.mask & IN_MODIFY)
+ {
+ result = true;
+ }
+ }
+ else
+ {
+ break;
+ }
+ }
#endif
return result;
}