summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-01-30 14:00:02 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-01-30 14:00:02 -0500
commit132dc9eaf7d6aa9e7892d9b55889f762f1140f4d (patch)
tree3c8dd890176873edcbc4a06852b4a64690c53488 /eval.c
parent3f9f913f5302b71ef57467798f62dd3e83b217bc (diff)
downloadbfs-132dc9eaf7d6aa9e7892d9b55889f762f1140f4d.tar.xz
Implement -empty.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 56238ea..417bfc3 100644
--- a/eval.c
+++ b/eval.c
@@ -1,5 +1,6 @@
#include "bfs.h"
#include "bftw.h"
+#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <fnmatch.h>
@@ -78,6 +79,49 @@ bool eval_delete(const expression *expr, eval_state *state) {
}
/**
+ * -empty test.
+ */
+bool eval_empty(const expression *expr, eval_state *state) {
+ bool ret = false;
+ struct BFTW *ftwbuf = state->ftwbuf;
+
+ if (ftwbuf->typeflag == BFTW_DIR) {
+ int dfd = openat(ftwbuf->at_fd, ftwbuf->at_path, O_DIRECTORY);
+ if (dfd < 0) {
+ perror("openat()");
+ goto done;
+ }
+
+ DIR *dir = fdopendir(dfd);
+ if (!dir) {
+ perror("fdopendir()");
+ close(dfd);
+ goto done;
+ }
+
+ ret = true;
+
+ struct dirent *de;
+ while ((de = readdir(dir)) != NULL) {
+ if (strcmp(de->d_name, ".") != 0 && strcmp(de->d_name, "..") != 0) {
+ ret = false;
+ break;
+ }
+ }
+
+ closedir(dir);
+ } else {
+ fill_statbuf(state);
+ if (ftwbuf->statbuf) {
+ ret = ftwbuf->statbuf->st_size == 0;
+ }
+ }
+
+done:
+ return ret;
+}
+
+/**
* -prune action.
*/
bool eval_prune(const expression *expr, eval_state *state) {