diff options
author | Kaz Kyheku <kaz@kylheku.com> | 2020-01-28 08:28:21 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-01-28 08:28:21 -0800 |
commit | abc74473ed37336a924b135e656ba40eeecc064b (patch) | |
tree | 037a26ff6a0d0173ea2d23f66a8948624c6f6c0e /ftw.c | |
parent | 9c5fbe2bfbd85f5fd14973d4fe83cde34f00a1a9 (diff) | |
download | txr-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.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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); } |