Whamcloud - gitweb
Branch b1_6
[fs/lustre-release.git] / lustre / utils / req-layout.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  req_layout.c
5  *  User-level tool for printing request layouts
6  *
7  *  Copyright (c) 2006 Cluster File Systems, Inc.
8  *   Author: Nikita Danilov <nikita@clusterfs.com>
9  *
10  *   This file is part of the Lustre file system, http://www.lustre.org
11  *   Lustre is a trademark of Cluster File Systems, Inc.
12  *
13  *   You may have signed or agreed to another license before downloading
14  *   this software.  If so, you are bound by the terms and conditions
15  *   of that agreement, and the following does not apply to you.  See the
16  *   LICENSE file included with this distribution for more information.
17  *
18  *   If you did not agree to a different license, then this copy of Lustre
19  *   is open source software; you can redistribute it and/or modify it
20  *   under the terms of version 2 of the GNU General Public License as
21  *   published by the Free Software Foundation.
22  *
23  *   In either case, Lustre is distributed in the hope that it will be
24  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
25  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *   license text for more details.
27  */
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32
33 #include <liblustre.h>
34 #include <lustre/lustre_idl.h>
35
36 #define __REQ_LAYOUT_USER__ (1)
37
38 #define lustre_swab_generic_32s NULL
39 #define lustre_swab_lu_range NULL
40 #define lustre_swab_md_fld NULL
41 #define lustre_swab_mdt_body NULL
42 #define lustre_swab_mdt_epoch NULL
43 #define lustre_swab_ptlrpc_body NULL
44 #define lustre_swab_obd_statfs NULL
45 #define lustre_swab_connect NULL
46 #define lustre_swab_ldlm_request NULL
47 #define lustre_swab_ldlm_reply NULL
48 #define lustre_swab_ldlm_intent NULL
49 #define lustre_swab_lov_mds_md NULL
50 #define lustre_swab_mdt_rec_unlink NULL
51 #define lustre_swab_mdt_rec_link NULL
52 #define lustre_swab_mdt_rec_rename NULL
53 #define lustre_swab_mdt_rec_create NULL
54 #define lustre_swab_mdt_rec_setattr NULL
55 #define lustre_swab_lustre_capa NULL
56 #define lustre_swab_lustre_capa_key NULL
57
58 /*
59  * Yes, include .c file.
60  */
61 #include "../ptlrpc/layout.c"
62
63 void usage(void)
64 {
65         fprintf(stderr, "req-layout -- prints lustre request layouts\n");
66 }
67
68 void printt_field(const char *prefix, const struct req_msg_field *fld)
69 {
70 }
71
72 void print_layout(const struct req_format *rf)
73 {
74         int j;
75         int k;
76
77         int offset;
78         int variable;
79
80         static const char *prefix[RCL_NR] = {
81                 [RCL_CLIENT] = "C",
82                 [RCL_SERVER] = "S"
83         };
84
85         printf("L %s (%i/%i)\n", rf->rf_name,
86                rf->rf_fields[RCL_CLIENT].nr, rf->rf_fields[RCL_SERVER].nr);
87
88         for (j = 0; j < RCL_NR; ++j) {
89                 offset = 0;
90                 variable = 0;
91                 for (k = 0; k < rf->rf_fields[j].nr; ++k) {
92                         const struct req_msg_field *fld;
93
94                         fld = rf->rf_fields[j].d[k];
95
96                         printf("        F%s %i [%03.3i%s %-20.20s (",
97                                prefix[j], k, offset,
98                                variable ? " + ...]" : "]      ",
99                                fld->rmf_name);
100                         if (fld->rmf_size > 0) {
101                                 printf("%3.3i) ", fld->rmf_size);
102                                 offset += fld->rmf_size;
103                         } else {
104                                 printf("var) ");
105                                 variable = 1;
106                         }
107                         if (fld->rmf_flags & RMF_F_STRING)
108                                 printf("string");
109                         printf("\n");
110                 }
111                 if (k > 0 && j != RCL_NR - 1)
112                         printf("        -----------------------------------\n");
113         }
114 }
115
116 void print_layouts(void)
117 {
118         int i;
119
120         for (i = 0; i < ARRAY_SIZE(req_formats); ++i) {
121                 print_layout(req_formats[i]);
122                 printf("\n");
123         }
124 }
125
126 int main(int argc, char **argv)
127 {
128         int opt;
129         int verbose;
130
131         verbose = 0;
132         do {
133                 opt = getopt(argc, argv, "hb:k:r:p:v");
134                 switch (opt) {
135                 case 'v':
136                         verbose++;
137                 case -1:
138                         break;
139                 case '?':
140                 default:
141                         fprintf(stderr, "Unable to parse options.");
142                 case 'h':
143                         usage();
144                         return 0;
145                 }
146         } while (opt != -1);
147         print_layouts();
148         return 0;
149 }