pv 968773, author Chris Pascoe <c.pascoe@itee.uq.edu.au>, rv vapo - minor fixes for...
[xfstests-dev.git] / dmapi / src / simple / dm_getall_tokens.c
1 /*
2  * Copyright (c) 2000-2001 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <sys/errno.h>
21 #include <malloc.h>
22 #include <getopt.h>
23 #ifdef linux
24 #include <dmapi.h>
25 #endif
26 #ifdef __sgi
27 #include <sys/dmi.h>
28 #endif
29
30 int
31 main( int argc, char **argv )
32 {
33         extern char *optarg;
34         int c;
35         int ret;
36         dm_token_t *tokenbuf;
37         u_int nelem = 100;
38         u_int rnelem = 0;
39         dm_sessid_t sid = 0;
40         int i;
41         char *versionstr;
42
43         while( (c = getopt(argc, argv, "hs:n:")) != -1 ) {
44                 switch(c){
45                 case 's':
46                         sid = atoi( optarg );
47                         break;
48                 case 'n':
49                         nelem = atoi( optarg );
50                         break;
51                 case 'h':
52                         fprintf(stderr, "Usage: %s <-s sid> [-n nelem]\n", argv[0]);
53                         exit(2);
54                 }
55         }
56
57         if( sid == 0 ){
58                 fprintf(stderr, "%s: must specify -s\n", argv[0] );
59                 exit(1);
60         }
61
62         if( (tokenbuf = malloc( sizeof(dm_token_t) * nelem )) == NULL ){
63                 fprintf(stderr, "%s: malloc failed\n", argv[0] );
64                 exit(1);
65         }
66
67         if( dm_init_service( &versionstr ) < 0 )
68                 exit(1);
69
70         ret = dm_getall_tokens( sid, nelem, tokenbuf, &rnelem );
71         printf( "ret=%d\n", ret );
72         printf( "rnelem=%d\n", rnelem );
73
74         printf("tokens=\"");
75         for( i = 0; i < rnelem; i++ ){
76                 printf("%d ", (int)*(tokenbuf+i));
77         }
78         printf("\"\n");
79         exit(0);
80 }