Files
sbase/libutil/recurse.c
T

59 lines
1.4 KiB
C
Raw Normal View History

2011-05-25 00:24:33 +01:00
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
2015-03-11 23:21:52 +01:00
#include <errno.h>
2014-01-30 12:37:35 +00:00
#include <limits.h>
#include <stdio.h>
2011-05-25 00:24:33 +01:00
#include <stdlib.h>
#include <string.h>
2011-06-04 14:30:54 +01:00
#include <sys/stat.h>
2014-01-30 12:37:35 +00:00
#include <sys/types.h>
#include <unistd.h>
2013-03-05 21:46:48 +01:00
2011-05-25 00:24:33 +01:00
#include "../util.h"
2015-03-11 23:21:52 +01:00
int recurse_follow = 'P';
int recurse_samedev = 0;
2011-05-25 00:24:33 +01:00
void
2015-03-11 23:21:52 +01:00
recurse(const char *path, void (*fn)(const char *, int, void *), int depth, void *data)
2011-05-25 00:24:33 +01:00
{
struct dirent *d;
2015-03-11 23:21:52 +01:00
struct stat lst, st, dst;
2011-05-25 00:24:33 +01:00
DIR *dp;
size_t len;
char *buf;
2011-05-25 00:24:33 +01:00
2015-03-11 23:21:52 +01:00
if (lstat(path, &lst) < 0) {
if (errno != ENOENT)
weprintf("lstat %s:", path);
return;
}
if (stat(path, &st) < 0) {
if (errno != ENOENT)
weprintf("stat %s:", path);
return;
}
if (!S_ISDIR(lst.st_mode) && !(S_ISLNK(lst.st_mode) && S_ISDIR(st.st_mode) &&
!(recurse_follow == 'P' || (recurse_follow == 'H' && depth > 0))))
2011-06-04 14:30:54 +01:00
return;
2014-06-30 15:58:00 +01:00
if (!(dp = opendir(path)))
2011-06-04 14:30:54 +01:00
eprintf("opendir %s:", path);
len = strlen(path);
2014-06-30 15:58:00 +01:00
while ((d = readdir(dp))) {
if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
2014-01-30 12:37:35 +00:00
continue;
2015-03-11 23:21:52 +01:00
buf = emalloc(len + (path[len - 1] != '/') + strlen(d->d_name) + 1);
sprintf(buf, "%s%s%s", path, (path[len - 1] == '/') ? "" : "/", d->d_name);
if (recurse_samedev && lstat(buf, &dst) < 0) {
if (errno != ENOENT)
weprintf("stat %s:", buf);
} else if (!(recurse_samedev && dst.st_dev != lst.st_dev))
fn(buf, depth + 1, data);
free(buf);
2013-03-05 21:46:48 +01:00
}
2011-05-25 00:24:33 +01:00
closedir(dp);
}