2 * Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
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.
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.
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.
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.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
35 /*---------------------------------------------------------------------------
37 Test program used to test the DMAPI function dm_get_dirattrs(). The
40 get_dirattrs [-b buflen] [-l loc] [-s sid] dirpath
42 where dirpath is the name of a directory, buflen is the size of the buffer
43 to use in the call, loc is a starting location, and sid is the session ID
44 whose attributes you are interested in.
46 ----------------------------------------------------------------------------*/
49 extern char *sys_errlist[];
62 fprintf(stderr, "usage:\t%s [-b buflen] [-l loc] [-s sid] [-1] [-q] dirpath\n",
73 dm_sessid_t sid = DM_NO_SESSION;
78 size_t buflen = 10000;
90 if (Progname = strrchr(argv[0], '/')) {
96 /* Crack and validate the command line options. */
98 while ((opt = getopt(argc, argv, "b:l:s:1q")) != EOF) {
101 buflen = atol(optarg);
119 if (optind + 1 != argc)
121 dirpath = argv[optind++];
123 if (dm_init_service(&name) == -1) {
124 fprintf(stderr, "Can't initialize the DMAPI\n");
127 if (sid == DM_NO_SESSION)
128 find_test_session(&sid);
130 /* Get the directory's handle. */
132 if (dm_path_to_handle(dirpath, &hanp, &hlen)) {
133 fprintf(stderr, "can't get handle for file %s, %s\n",
134 dirpath, strerror(errno));
138 if ((bufp = malloc(buflen == 0 ? 1 : buflen)) == NULL) {
139 fprintf(stderr, "malloc failed, %s\n", strerror(errno));
143 mask = DM_AT_HANDLE|DM_AT_EMASK|DM_AT_PMANR|DM_AT_PATTR|DM_AT_DTIME|DM_AT_CFLAG|DM_AT_STAT;
146 memset(bufp, 0, buflen);
147 if ((ret = dm_get_dirattrs(sid, hanp, hlen, DM_NO_TOKEN, mask,
148 &loc, buflen, bufp, &rlenp)) < 0) {
149 fprintf(stderr, "dm_get_dirattrs failed, %s\n",
154 fprintf(stdout, "ret = %d, rlenp is %d, loc is %lld\n", ret,
160 statp = (dm_stat_t *)bufp;
161 while (statp != NULL) {
163 hantoa((char *)statp + statp->dt_handle.vd_offset,
164 statp->dt_handle.vd_length, buffer);
166 fprintf(stdout, "%s %s\n",
167 (char *)statp + statp->dt_compname.vd_offset,
171 fprintf(stdout, "handle %s\n", buffer);
172 fprintf(stdout, "name %s\n",
173 (char *)statp + statp->dt_compname.vd_offset);
177 statp = DM_STEP_TO_NEXT(statp, dm_stat_t *);
180 else if ((ret == 1) && (rlenp == 0) && (!quiet)) {
181 fprintf(stderr, "buflen is too short to hold anything\n");
186 dm_handle_free(hanp, hlen);