]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - db/text.c
Update copyright dates
[thirdparty/xfsprogs-dev.git] / db / text.c
1 /*
2 * Copyright (c) 2000-2001 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 <libxfs.h>
34 #include <ctype.h>
35 #include "block.h"
36 #include "bmap.h"
37 #include "command.h"
38 #include "data.h"
39 #include "type.h"
40 #include "faddr.h"
41 #include "fprint.h"
42 #include "field.h"
43 #include "inode.h"
44 #include "io.h"
45 #include "output.h"
46 #include "mount.h"
47
48 static void print_rawtext(void *data, int len);
49
50 void
51 print_text(
52 const field_t *fields,
53 int argc,
54 char **argv)
55 {
56 print_rawtext(iocur_top->data, iocur_top->len);
57 }
58
59 static void
60 print_rawtext(
61 void *data,
62 int len)
63 {
64 int i;
65 int j;
66 int lastaddr;
67 int offchars;
68 unsigned char *p;
69
70 lastaddr = (len - 1) & ~(16 - 1);
71 if (lastaddr < 0x10)
72 offchars = 1;
73 else if (lastaddr < 0x100)
74 offchars = 2;
75 else if (lastaddr < 0x1000)
76 offchars = 3;
77 else
78 offchars = 4;
79
80 for (i = 0, p = data; i < len; i += 16) {
81 unsigned char *s = p;
82
83 dbprintf("%-0*.*x: ", offchars, offchars, i);
84
85 for (j = 0; j < 16 && i + j < len; j++, p++) {
86 dbprintf("%02x ", *p);
87 }
88
89 dbprintf(" ");
90
91 for (j = 0; j < 16 && i + j < len; j++, s++) {
92 if (isalnum(*s))
93 dbprintf("%c", *s);
94 else
95 dbprintf(".", *s);
96 }
97
98 dbprintf("\n");
99 }
100 }
101