-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathp11.c
162 lines (151 loc) · 5.26 KB
/
p11.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include "apue.h"
#include <dirent.h>
#include <limits.h>
#include <unistd.h>
#include <time.h>
/* function type that is called for each filename */
typedef int Myfunc(const char *, const struct stat *, int);
static Myfunc myfunc;
static int myftw(char *, Myfunc *);
static int dopath(Myfunc *);
static long nreg, ndir, nblk, nchr, nfifo, nslink, nsock, ntot;
int
main(int argc, char *argv[])
{
double whole;
clock_t str,end;
int ret;
str = clock();
if (argc != 2)
err_quit("usage: ftw <starting-pathname>");
ret = myftw(argv[1], myfunc);
ntot = nreg + ndir + nblk + nchr + nfifo + nslink + nsock;
if (ntot == 0)
ntot = 1; /* avoid divide by 0; print 0 for all counts */
printf("regular files = %7ld, %5.2f %%\n", nreg,
nreg * 100.0 / ntot);
printf("directories = %7ld, %5.2f %%\n", ndir,
ndir * 100.0 / ntot);
printf("block special = %7ld, %5.2f %%\n", nblk,
nblk * 100.0 / ntot);
printf("char special = %7ld, %5.2f %%\n", nchr,
nchr * 100.0 / ntot);
printf("FIFOs = %7ld, %5.2f %%\n", nfifo,
nfifo * 100.0 / ntot);
printf("symbolic links = %7ld, %5.2f %%\n", nslink,
nslink * 100.0 / ntot);
printf("sockets = %7ld, %5.2f %%\n", nsock,
nsock * 100.0 / ntot);
end = clock();
whole = (double)(end - str) / CLOCKS_PER_SEC;
printf("test4_11 costs : %f second\n", whole);
exit(ret);
}
/*
* Descend through the hierachy, starting at "pathname".
* The caller's func() is called for every file.
*/
#define FTW_F 1 /* file other than directory */
#define FTW_D 2 /* directory */
#define FTW_DNR 3 /* directory that can't be read */
#define FTW_NS 4 /* file that we can't stat */
static char * filename; /* contains full pathname for every file */
static size_t pathlen;
static int /* we return whatever func() returns */
myftw(char *pathname, Myfunc *func)
{
filename = path_alloc(&pathlen); /* malloc PATH_MAX+1 bytes */
/* ({Flgure 2.16}) */
if (pathlen <= strlen(pathname))
{
pathlen = strlen(pathname) * 2;
if ((filename = realloc(filename, pathlen)) == NULL)
err_sys("realloc failed");
}
strcpy(filename, pathname);
return(dopath(func));
}
/*
* Descend through the hirearchy, starting at "filename".
* If "filename" is anything other than a directory, we lstat() it,
* call func(), and return, For a directory, we call ourself
* recursively for each name in the directory.
*/
static int /* we return whatevery func() returns */
dopath(Myfunc *func)
{
struct stat statbuf;
struct dirent *dirp;
DIR *dp;
int ret, n;
if (lstat(filename, &statbuf) < 0) /* stat error */
return (func(filename,&statbuf, FTW_NS));
if (S_ISDIR(statbuf.st_mode) == 0) /* not a directory */
return (func(filename, &statbuf, FTW_F));
/*
* It's a directory, First call func() for the directory,
* then process each filename in the directory.
*/
if ((ret = func(filename, &statbuf, FTW_D)) != 0)
return(ret);
n = strlen(filename);
if (n + NAME_MAX + 2 > pathlen) /* expand path buffer */
{
pathlen *= 2;
printf("realloc\n");
if ((filename = realloc(filename, pathlen)) == NULL)
err_sys("realoc failed");
}
if ((dp = opendir(filename)) == NULL) /* can't read directory */
return(func(filename, &statbuf, FTW_DNR));
if (chdir(filename) < 0)
err_sys("chdir %s error", filename);
while ((dirp = readdir(dp)) != NULL)
{
if (strcmp(dirp->d_name, ".") == 0 ||
strcmp(dirp->d_name, "..") == 0)
continue; /* ignore dot and dot-dot */
filename = dirp->d_name;
if ((ret = dopath(func)) != 0) /* recursive */
{
break; /* time to leave */
}
}
if (chdir("..") < 0)
err_sys("chdir .. error");
if (closedir(dp) < 0)
err_ret("can't close directory %s", filename);
return(ret);
}
static int
myfunc(const char *pathname, const struct stat *statptr, int type)
{
switch (type)
{
case FTW_F:
switch (statptr->st_mode & S_IFMT)
{
case S_IFREG: nreg++; break;
case S_IFBLK: nblk++; break;
case S_IFCHR: nchr++; break;
case S_IFIFO: nfifo++; break;
case S_IFLNK: nslink++; break;
case S_IFSOCK: nsock++; break;
case S_IFDIR: /* directories should have type = FTW_D */
err_dump("for S_IFDIR for %s", pathname);
}
break;
case FTW_D:
ndir++;
break;
case FTW_DNR:
err_ret("can't read directory %s", pathname);
break;
case FTW_NS:
err_ret("stat error for %s", pathname);
break;
default:
err_dump("unknow type %d for pathname %s", type, pathname);
}
return (0);
}