cmd/xfsprogs/libdm/dmapi_tests/README 1.1 Renamed to cmd/xfstests/dmapi/README
[xfstests-dev.git] / dmapi / src / common / cmd / read_invis.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 <ctype.h>
34
35 #include <lib/hsm.h>
36
37 #ifdef linux
38 #include <string.h>
39 #include <malloc.h>
40 #endif
41
42 /*---------------------------------------------------------------------------
43
44 Test program used to test the DMAPI function dm_read_invis().  The
45 command line is:
46
47         read_invis [-o offset] [-l length] [-s sid] pathname
48
49 where:
50 'offset' is the offset of the start of the write (0 is the default),
51 'length' is the length of the write in bytes (1 is the default),
52 'sid' is the session ID whose events you you are interested in.
53 'pathname' is the name of the file to be written.
54
55 ----------------------------------------------------------------------------*/
56
57 #ifndef linux
58 extern  char    *sys_errlist[];
59 #endif
60 extern  int     optind;
61 extern  char    *optarg;
62
63
64 char    *Progname;
65
66
67 static void
68 usage(void)
69 {
70         int     i;
71
72         fprintf(stderr, "usage:\t%s [-o offset] [-l length] "
73                 "[-s sid] pathname\n", Progname);
74         exit(1);
75 }
76
77
78 int
79 main(
80         int     argc, 
81         char    **argv)
82 {
83         dm_sessid_t     sid = DM_NO_SESSION;
84         char            *pathname = NULL;
85         dm_off_t        offset = 0;
86         dm_size_t       length = 1;
87         char            *bufp = NULL;
88         void            *hanp;
89         size_t          hlen;
90         dm_ssize_t      rc;
91         char            *name;
92         int             opt;
93         int             i;
94
95         if (Progname = strrchr(argv[0], '/')) {
96                 Progname++;
97         } else {
98                 Progname = argv[0];
99         }
100
101         /* Crack and validate the command line options. */
102
103         while ((opt = getopt(argc, argv, "o:l:s:")) != EOF) {
104                 switch (opt) {
105                 case 'o':
106                         offset = atol(optarg);
107                         break;
108                 case 'l':
109                         length = atol(optarg);
110                         break;
111                 case 's':
112                         sid = atol(optarg);
113                         break;
114                 case '?':
115                         usage();
116                 }
117         }
118         if (optind + 1 != argc)
119                 usage();
120         pathname = argv[optind];
121
122         if (dm_init_service(&name) == -1)  {
123                 fprintf(stderr, "Can't inititalize the DMAPI\n");
124                 exit(1);
125         }
126         if (sid == DM_NO_SESSION)
127                 find_test_session(&sid);
128
129         /* Get the file's handle. */
130
131         if (dm_path_to_handle(pathname, &hanp, &hlen)) {
132                 fprintf(stderr, "can't get handle for file %s\n", pathname);
133                 exit(1);
134         }
135
136         if (length > 0) {
137                 /* In case it is a realtime file, align the buffer on a
138                    sufficiently big boundary.
139                 */
140                 if ((bufp = memalign(4096, length)) == NULL) {
141                         fprintf(stderr, "malloc of %d bytes failed\n", length);
142                         exit(1);
143                 }
144                 memset(bufp, '\0', length);
145         }
146
147         rc = dm_read_invis(sid, hanp, hlen, DM_NO_TOKEN, offset, length, bufp);
148
149         if (rc < 0) {
150                 fprintf(stderr, "dm_read_invis failed, %s\n", strerror(errno));
151                 exit(1);
152         } else if (rc != length) {
153                 fprintf(stderr, "expected to read %lld bytes, actually "
154                         "read %lld\n", length, rc);
155                 exit(1);
156         }
157         for (i = 0; i < rc; i++) {
158                 if (isprint(bufp[i])) {
159                         fprintf(stdout, "%c", bufp[i]);
160                 } else {
161                         fprintf(stdout, "\\%03d", bufp[i]);
162                 }
163         }
164         dm_handle_free(hanp, hlen);
165         exit(0);
166 }