sbase/rm.c

41 lines
646 B
C
Raw Normal View History

2011-05-23 20:52:28 -04:00
/* See LICENSE file for copyright and license details. */
2012-01-30 17:41:33 -05:00
#include "fs.h"
2011-05-23 20:52:28 -04:00
#include "util.h"
2013-06-14 14:20:47 -04:00
static void
usage(void)
{
eprintf("usage: %s [-f] [-Rr] file ...\n", argv0);
2013-06-14 14:20:47 -04:00
}
2011-05-23 20:52:28 -04:00
int
main(int argc, char *argv[])
{
struct recursor r = { .fn = rm, .hist = NULL, .depth = 0, .maxdepth = 1,
.follow = 'P', .flags = 0 };
2013-06-14 14:20:47 -04:00
ARGBEGIN {
case 'f':
r.flags |= SILENT;
2013-06-14 14:20:47 -04:00
break;
case 'R':
2013-06-14 14:20:47 -04:00
case 'r':
r.maxdepth = 0;
2013-06-14 14:20:47 -04:00
break;
default:
usage();
} ARGEND
if (!argc) {
if (!(r.flags & SILENT))
usage();
else
2014-10-02 18:46:04 -04:00
return 0;
}
for (; *argv; argc--, argv++)
Refactor recurse() again Okay, why yet another recurse()-refactor? The last one added the recursor-struct, which simplified things on the user-end, but there was still one thing that bugged me a lot: Previously, all fn()'s were forced to (l)stat the paths themselves. This does not work well when you try to keep up with H-, L- and P- flags at the same time, as each utility-function would have to set the right function-pointer for (l)stat every single time. This is not desirable. Furthermore, recurse should be easy to use and not involve trouble finding the right (l)stat-function to do it right. So, what we needed was a stat-argument for each fn(), so it is directly accessible. This was impossible to do though when the fn()'s are still directly called by the programs to "start" the recurse. Thus, the fundamental change is to make recurse() the function to go, while designing the fn()'s in a way they can "live" with st being NULL (we don't want a null-pointer-deref). What you can see in this commit is the result of this work. Why all this trouble instead of using nftw? The special thing about recurse() is that you tell the function when to recurse() in your fn(). You don't need special flags to tell nftw() to skip the subtree, just to give an example. The only single downside to this is that now, you are not allowed to unconditionally call recurse() from your fn(). It has to be a directory. However, that is a cost I think is easily weighed up by the advantages. Another thing is the history: I added a procedure at the end of the outmost recurse to free the history. This way we don't leak memory. A simple optimization on the side: - if (h->dev == st.st_dev && h->ino == st.st_ino) + if (h->ino == st.st_ino && h->dev == st.st_dev) First compare the likely difference in inode-numbers instead of checking the unlikely condition that the device-numbers are different.
2015-03-18 19:53:42 -04:00
recurse(*argv, NULL, &r);
2011-05-23 20:52:28 -04:00
return rm_status || recurse_status;
2011-05-23 20:52:28 -04:00
}