Whamcloud - gitweb
Branch b1_4
[fs/lustre-release.git] / libsysio / tests / test_stddir.c
1 /*
2  *    This Cplant(TM) source code is the property of Sandia National
3  *    Laboratories.
4  *
5  *    This Cplant(TM) source code is copyrighted by Sandia National
6  *    Laboratories.
7  *
8  *    The redistribution of this Cplant(TM) source code is subject to the
9  *    terms of the GNU Lesser General Public License
10  *    (see cit/LGPL or http://www.gnu.org/licenses/lgpl.html)
11  *
12  *    Cplant(TM) Copyright 1998-2003 Sandia Corporation. 
13  *    Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
14  *    license for use of this work by or on behalf of the US Government.
15  *    Export of this program may require a license from the United States
16  *    Government.
17  */
18
19 /*
20  * This library is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU Lesser General Public
22  * License as published by the Free Software Foundation; either
23  * version 2.1 of the License, or (at your option) any later version.
24  * 
25  * This library is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28  * Lesser General Public License for more details.
29  * 
30  * You should have received a copy of the GNU Lesser General Public
31  * License along with this library; if not, write to the Free Software
32  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33  *
34  * Questions or comments about this library should be sent to:
35  *
36  * Lee Ward
37  * Sandia National Laboratories, New Mexico
38  * P.O. Box 5800
39  * Albuquerque, NM 87185-1110
40  *
41  * lee@sandia.gov
42  */
43
44 #include <stdlib.h>
45 #include <stdio.h>
46 #include <errno.h>
47 #include <string.h>
48 #include <getopt.h>
49 #include <dirent.h>
50 #include <sys/types.h>
51
52 #if defined(SYSIO_LABEL_NAMES)
53 #include "sysio.h"
54 #endif
55 #include "xtio.h"
56 #include "test.h"
57
58 /*
59  * Test {open, read, close}dir functions
60  * 
61  * Usage: test_stddir [path, ...]
62  */
63 static int testit(const char *);
64 static void usage(void);
65
66 int 
67 main (int argc, char** argv)
68 {
69         int     err;
70         int     i;
71         int     n;
72         const char *path;
73
74         /*
75          * Parse command line arguments.
76          */
77         while ((i = getopt(argc, argv, "")) != -1)
78                 switch (i) {
79
80                 default:
81                         usage();
82                 }
83
84         /*
85          * Init sysio lib.
86          */
87         err = _test_sysio_startup();
88         if (err) {
89                 errno = -err;
90                 perror("sysio startup");
91                 exit(1);
92         }
93
94         /*
95          * If no command-line arguments, read from stdin until EOF.
96          */
97         n = argc - optind;
98         if (!n) {
99                 int     doflush;
100                 static char buf[4096];
101                 size_t  len;
102                 char    *cp;
103                 char    c;
104
105                 doflush = 0;
106                 while (fgets(buf, sizeof(buf), stdin) != NULL) {
107                         len = strlen(buf);
108                         cp = buf + len - 1;
109                         c = *cp;
110                         *cp = '\0';
111                         if (!doflush)
112                                 err = testit(buf);
113                         if (err)
114                                 break;
115                         doflush = c == '\n' ? 0 : 1;
116                 }
117         }
118
119         /*
120          * Try path(s) listed on command-line.
121          */
122         while (optind < argc) {
123                 path = argv[optind++];
124                 err = testit(path);
125                 if (err)
126                         break;
127         }
128
129         /*
130          * Clean up.
131          */
132         _test_sysio_shutdown();
133
134         return err;
135 }
136
137 int
138 testit(const char *path)
139 {
140         DIR     *d;
141         struct dirent *de;
142
143         printf("testing directory functions on %s\n", path);
144
145         if ((d = SYSIO_INTERFACE_NAME(opendir)(path)) == NULL) {
146                 perror(path);   
147                 return errno;
148         }
149
150         while ((de = SYSIO_INTERFACE_NAME(readdir)(d)) != NULL)
151                 printf("\t %s: ino %lu off %lu type %u\n",
152                         de->d_name, (unsigned long )de->d_ino, 
153                         (unsigned long )de->d_off, (int )de->d_type);
154
155         if (SYSIO_INTERFACE_NAME(closedir)(d)) {
156                 perror("closedir");
157                 return errno;
158         }
159
160         return 0;
161 }
162
163 static void
164 usage()
165 {
166
167         (void )fprintf(stderr,
168                        "Usage: test_stddir [<path> ...]\n");
169
170         exit(1);
171 }