summaryrefslogtreecommitdiffstats
path: root/ftw.c
diff options
context:
space:
mode:
authorKaz Kyheku <kaz@kylheku.com>2020-01-28 08:28:21 -0800
committerKaz Kylheku <kaz@kylheku.com>2020-01-28 08:28:21 -0800
commitabc74473ed37336a924b135e656ba40eeecc064b (patch)
tree037a26ff6a0d0173ea2d23f66a8948624c6f6c0e /ftw.c
parent9c5fbe2bfbd85f5fd14973d4fe83cde34f00a1a9 (diff)
downloadtxr-abc74473ed37336a924b135e656ba40eeecc064b.tar.gz
txr-abc74473ed37336a924b135e656ba40eeecc064b.tar.bz2
txr-abc74473ed37336a924b135e656ba40eeecc064b.zip
ftw: throw exception on failure.
The ftw function just returns -1 if, for instance, given a bad path (nonexistent or no permissions). The documentation also has issues. * ftw.c (ftw_wrap): If the return value is -1, convert it to a file-error using errno_to_file_error and throw a diagnostic exception. This situation can, of course, arise if the callback function returns -1, in which case it should prepare a value in errno. * txr.1: Return value of callbackfn documented better. Documented exception throwing behavior, and failed termination if the callback returns -1.
Diffstat (limited to 'ftw.c')
-rw-r--r--ftw.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/ftw.c b/ftw.c
index 27b8e790..537e6d4f 100644
--- a/ftw.c
+++ b/ftw.c
@@ -30,6 +30,8 @@
#include <signal.h>
#include <stdlib.h>
#include <stddef.h>
+#include <string.h>
+#include <errno.h>
#include <ftw.h>
#include "config.h"
#include "alloca.h"
@@ -122,7 +124,11 @@ val ftw_wrap(val dirpath, val fn, val flags_in, val nopenfd_in)
case 0:
return t;
case -1:
- return nil;
+ {
+ int eno = errno;
+ uw_throwf(errno_to_file_error(eno), lit("ftw ~a: ~d/~s"),
+ dirpath, num(eno), string_utf8(strerror(eno)), nao);
+ }
default:
return num(res);
}