summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2017-05-17 20:13:32 +0200
committerBert Münnich <ber.t@posteo.de>2017-05-17 20:13:32 +0200
commit8bce80fdae23d0747efc8547fd33edbd246b54b6 (patch)
tree306e0260123289f762757bd486c3b6fc972e49ef
parent9ac8fc62dfc8061c6bc1f973454ba10228acfbf2 (diff)
downloadnsxiv-8bce80fdae23d0747efc8547fd33edbd246b54b6.tar.zst
Revised error reporting in autoreload_inotify
No repeated error messages after failed initialization. No error messages on failed inotify_rm_watch().
-rw-r--r--autoreload_inotify.c31
1 files changed, 11 insertions, 20 deletions
diff --git a/autoreload_inotify.c b/autoreload_inotify.c
index b536c2a..e44c2f3 100644
--- a/autoreload_inotify.c
+++ b/autoreload_inotify.c
@@ -27,20 +27,16 @@
CLEANUP void arl_cleanup(arl_t *arl)
{
- if (arl->fd != -1 && arl->wd != -1) {
- if (inotify_rm_watch(arl->fd, arl->wd))
- error(0, 0, "Failed to remove inotify watch.");
- }
+ if (arl->fd != -1 && arl->wd != -1)
+ inotify_rm_watch(arl->fd, arl->wd);
}
static void arl_setup_dir(arl_t *arl, const char *filepath)
{
char *dntmp, *dn;
- if (arl->fd == -1) {
- error(0, 0, "Uninitialized, could not add inotify watch on directory.");
+ if (arl->fd == -1)
return;
- }
/* get dirname */
dntmp = (char*) strdup(filepath);
@@ -52,7 +48,7 @@ static void arl_setup_dir(arl_t *arl, const char *filepath)
*/
arl->wd = inotify_add_watch(arl->fd, dn, IN_CREATE);
if (arl->wd == -1)
- error(0, 0, "Failed to add inotify watch on directory '%s'.", dn);
+ error(0, 0, "%s: Error watching directory", dn);
else
arl->watching_dir = true;
@@ -68,10 +64,9 @@ bool arl_handle(arl_t *arl, const char *filepath)
ssize_t len = read(arl->fd, buf, sizeof(buf));
- if (len == -1) {
- error(0, 0, "Failed to read inotify events.");
+ if (len == -1)
return false;
- }
+
for (ptr = buf; ptr < buf + len; ptr += sizeof(*event) + event->len) {
event = (const struct inotify_event*) ptr;
@@ -92,8 +87,7 @@ bool arl_handle(arl_t *arl, const char *filepath)
/* cleanup, this has not been one-shot */
if (arl->watching_dir) {
- if (inotify_rm_watch(arl->fd, arl->wd))
- error(0, 0, "Failed to remove inotify watch.");
+ inotify_rm_watch(arl->fd, arl->wd);
arl->watching_dir = false;
}
reload = true;
@@ -110,26 +104,23 @@ void arl_init(arl_t *arl)
arl->fd = inotify_init();
arl->watching_dir = false;
if (arl->fd == -1)
- error(0, 0, "Could not initialize inotify.");
+ error(0, 0, "Could not initialize inotify, no automatic image reloading");
}
void arl_setup(arl_t *arl, const char *filepath)
{
- if (arl->fd == -1) {
- error(0, 0, "Uninitialized, could not add inotify watch.");
+ if (arl->fd == -1)
return;
- }
/* may have switched from a deleted to another image */
if (arl->watching_dir) {
- if (inotify_rm_watch(arl->fd, arl->wd))
- error(0, 0, "Failed to remove inotify watch.");
+ inotify_rm_watch(arl->fd, arl->wd);
arl->watching_dir = false;
}
arl->wd = inotify_add_watch(arl->fd, filepath,
IN_ONESHOT | IN_CLOSE_WRITE | IN_DELETE_SELF);
if (arl->wd == -1)
- error(0, 0, "Failed to add inotify watch on file '%s'.", filepath);
+ error(0, 0, "%s: Error watching file", filepath);
}