allow it to accept the text form of a file handle
[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 #include <string.h>
39 #include <getopt.h>
40
41 extern  int     optind;
42 extern  int     opterr;
43 extern  char    *optarg;
44
45 char    *Progname;
46
47
48 static void
49 usage(void)
50 {
51         fprintf(stderr, "Usage: %s [-a|-A] [-s sid] [-t token] {pathname|handle}\n",
52                 Progname);
53         exit(1);
54 }
55
56
57 int
58 main(
59         int     argc,
60         char    **argv)
61 {
62         dm_sessid_t     sid = DM_NO_SESSION;
63         dm_token_t      token = DM_NO_TOKEN;
64 #if 0
65         char            buffer[500];
66 #endif
67         void            *hanp;
68         size_t          hlen;
69         dm_stat_t       dmstat;
70         char            *pathname_obj;
71         int             a_flag = 0;
72         char            *name;
73         int             opt;
74         int             validate = 0;
75
76         if (Progname = strrchr(argv[0], '/')) {
77                 Progname++;
78         } else {
79                 Progname = argv[0];
80         }
81
82         opterr = 0;
83         while ((opt = getopt(argc, argv, "Aas:t:v")) != EOF) {
84                 switch (opt) {
85                 case 'A':
86                         a_flag = 2;
87                         break;
88                 case 'a':
89                         a_flag = 1;
90                         break;
91                 case 's':
92                         sid = atol(optarg);
93                         break;
94                 case 't':
95                         token = atol(optarg);
96                         break;
97                 case 'v':
98                         validate = 1;
99                         break;
100                 case '?':
101                         usage();
102                 }
103         }
104         if (optind + 1 != argc) {
105                 usage();
106         }
107         pathname_obj = argv[optind];
108
109         if (dm_init_service(&name) == -1)  {
110                 fprintf(stderr, "Can't initialize the DMAPI\n");
111                 exit(1);
112         }
113         if (sid == DM_NO_SESSION)
114                 find_test_session(&sid);
115
116         /* Get the file's handle or convert the external handle. */
117
118         if (opaque_to_handle(pathname_obj, &hanp, &hlen)) {
119                 fprintf(stderr, "can't get handle for %s\n", pathname_obj);
120                 exit(1);
121         }
122
123         if (!a_flag) {
124                 fprintf(stdout, "path/handle            %s\n", pathname_obj);
125
126                 /* Get the file's state, print it, then verify it against
127                    what is in the file's stat block.
128                 */
129
130                 if (dm_get_fileattr(sid, hanp, hlen, token,
131         DM_AT_EMASK|DM_AT_PMANR|DM_AT_PATTR|DM_AT_DTIME|DM_AT_CFLAG|DM_AT_STAT,
132                     &dmstat)) {
133                         fprintf(stderr, "dm_get_fileattr failed, %s\n",
134                                 strerror(errno));
135                         exit(1);
136                 }
137
138                 print_state(&dmstat);
139                 if(validate)
140                         (void)validate_state(&dmstat, pathname_obj, 1);
141 #if 0
142         } else {
143                 if ((rc = filesys_bulkscan_init(pathname, &scanp)) != 0) {
144                         fprintf(stderr, "filesys_bulkscan failed, %s\n",
145                                 fileio_err_image(rc));
146                         exit(1);
147                 }
148                 for (;;) {
149                         rc = filesys_bulkscan_read(scanp, &fhandle, &fullstat);
150                         if (rc != FILEIO_NOERROR)
151                                 break;
152
153                         (void)fhandle_to_buffer(&fhandle, buffer, sizeof(buffer));
154                         if (a_flag == 1) {
155                                 fprintf(stdout, "handle          %s\n", buffer);
156                                 print_state(&fullstat);
157                                 fprintf(stdout, "--------------------------\n");
158                         } else {
159                                 fprintf(stdout, "%s|", buffer);
160                                 print_line(&fullstat);
161                         }
162                 }
163
164                 if (rc != FILEIO_ENDOFSCAN) {
165                         fprintf(stderr, "filesys_bulkscan_read failed, %s\n",
166                                 fileio_err_image(rc));
167                         exit(1);
168                 }
169                 if ((rc = filesys_bulkscan_close(&scanp)) != 0) {
170                         fprintf(stderr, "filesys_bulkscan_close failed, %s\n",
171                                 fileio_err_image(rc));
172                         exit(1);
173                 }
174 #endif
175         }
176         exit(0);
177 }