cmd/xfsprogs/libdm/dmapi_tests/README 1.1 Renamed to cmd/xfstests/dmapi/README
[xfstests-dev.git] / dmapi / src / suite1 / cmd / get_fileattr.c
1 /*
2  * Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
3  * 
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of version 2 of the GNU General Public License as
6  * published by the Free Software Foundation.
7  * 
8  * This program is distributed in the hope that it would be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  * 
12  * Further, this software is distributed without any warranty that it is
13  * free of the rightful claim of any third person regarding infringement
14  * or the like.  Any license provided herein, whether implied or
15  * otherwise, applies only to this software file.  Patent licenses, if
16  * any, provided herein do not apply to combinations of this program with
17  * other software, or any other product whatsoever.
18  * 
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write the Free Software Foundation, Inc., 59
21  * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22  * 
23  * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24  * Mountain View, CA  94043, or:
25  * 
26  * http://www.sgi.com 
27  * 
28  * For further information regarding this notice, see: 
29  * 
30  * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31  */
32
33 #include <sys/types.h>
34 #include <sys/stat.h>
35
36 #include <lib/hsm.h>
37
38 #ifdef linux
39 #include <string.h>
40 #endif
41
42 extern  int     optind;
43 extern  int     opterr;
44 extern  char    *optarg;
45
46 char    *Progname;
47
48
49 static void
50 usage(void)
51 {
52         fprintf(stderr, "Usage: %s [-a|-A] [-s sid] [-t token] pathname\n",
53                 Progname);
54         exit(1);
55 }
56
57
58 int
59 main(
60         int     argc,
61         char    **argv)
62 {
63         dm_sessid_t     sid = DM_NO_SESSION;
64         dm_token_t      token = DM_NO_TOKEN;
65         char            buffer[500];
66         void            *hanp;
67         size_t          hlen;
68         dm_stat_t       dmstat;
69         char            *pathname;
70         int             a_flag = 0;
71         char            *name;
72         int             opt;
73
74         if (Progname = strrchr(argv[0], '/')) {
75                 Progname++;
76         } else {
77                 Progname = argv[0];
78         }
79
80         opterr = 0;
81         while ((opt = getopt(argc, argv, "Aas:t:")) != EOF) {
82                 switch (opt) {
83                 case 'A':
84                         a_flag = 2;
85                         break;
86                 case 'a':
87                         a_flag = 1;
88                         break;
89                 case 's':
90                         sid = atol(optarg);
91                         break;
92                 case 't':
93                         token = atol(optarg);
94                         break;
95                 case '?':
96                         usage();
97                 }
98         }
99         if (optind + 1 != argc) {
100                 usage();
101         }
102         pathname = argv[optind];
103
104         if (dm_init_service(&name) == -1)  {
105                 fprintf(stderr, "Can't inititalize the DMAPI\n");
106                 exit(1);
107         }
108         if (sid == DM_NO_SESSION)
109                 find_test_session(&sid);
110
111         if (!a_flag) {
112                 fprintf(stdout, "path            %s\n", pathname);
113
114                 /* Get the file's state, print it, then verify it against
115                    what is in the file's stat block.
116                 */
117
118                 if (dm_path_to_handle(pathname, &hanp, &hlen)) {
119                         fprintf(stderr, "dm_path_to_handle failed, %s\n",
120                                 strerror(errno));
121                         exit(1);
122                 }
123
124                 if (dm_get_fileattr(sid, hanp, hlen, token,
125         DM_AT_EMASK|DM_AT_PMANR|DM_AT_PATTR|DM_AT_DTIME|DM_AT_CFLAG|DM_AT_STAT,
126                     &dmstat)) {
127                         fprintf(stderr, "dm_get_fileattr failed, %s\n",
128                                 strerror(errno));
129                         exit(1);
130                 }
131
132                 print_state(&dmstat);
133                 (void)validate_state(&dmstat, pathname, 1);
134 /* XXX Shut off for now
135         } else {
136                 if ((rc = filesys_bulkscan_init(pathname, &scanp)) != 0) {
137                         fprintf(stderr, "filesys_bulkscan failed, %s\n",
138                                 fileio_err_image(rc));
139                         exit(1);
140                 }
141                 for (;;) {
142                         rc = filesys_bulkscan_read(scanp, &fhandle, &fullstat);
143                         if (rc != FILEIO_NOERROR)
144                                 break;
145
146                         (void)fhandle_to_buffer(&fhandle, buffer, sizeof(buffer));
147                         if (a_flag == 1) {
148                                 fprintf(stdout, "handle          %s\n", buffer);
149                                 print_state(&fullstat);
150                                 fprintf(stdout, "--------------------------\n");
151                         } else {
152                                 fprintf(stdout, "%s|", buffer);
153                                 print_line(&fullstat);
154                         }
155                 }
156
157                 if (rc != FILEIO_ENDOFSCAN) {
158                         fprintf(stderr, "filesys_bulkscan_read failed, %s\n",
159                                 fileio_err_image(rc));
160                         exit(1);
161                 }
162                 if ((rc = filesys_bulkscan_close(&scanp)) != 0) {
163                         fprintf(stderr, "filesys_bulkscan_close failed, %s\n",
164                                 fileio_err_image(rc));
165                         exit(1);
166                 }
167 XXX Shut off for now.  */
168         }
169 }