File: text.c

package info (click to toggle)
xfsprogs 6.17.0-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 11,324 kB
  • sloc: ansic: 167,334; sh: 4,604; makefile: 1,336; python: 835; cpp: 5
file content (74 lines) | stat: -rw-r--r-- 1,282 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
 * All Rights Reserved.
 */

#include "libxfs.h"
#include <ctype.h>
#include "block.h"
#include "bmap.h"
#include "command.h"
#include "type.h"
#include "faddr.h"
#include "fprint.h"
#include "field.h"
#include "inode.h"
#include "io.h"
#include "output.h"
#include "init.h"
#include "text.h"

static void     print_rawtext(void *data, int len);

void
print_text(
	const field_t   *fields,
	int             argc,
	char            **argv)
{
	print_rawtext(iocur_top->data, iocur_top->len);
}

static void
print_rawtext(
	void    *data,
	int     len)
{
	int     i;
	int     j;
	int     lastaddr;
	int     offchars;
	unsigned char   *p;

	lastaddr = (len - 1) & ~(16 - 1);
	if (lastaddr < 0x10)
		offchars = 1;
	else if (lastaddr < 0x100)
		offchars = 2;
	else if (lastaddr < 0x1000)
		offchars = 3;
	else
		offchars = 4;

	for (i = 0, p = data; i < len; i += 16) {
		unsigned char *s = p;

		dbprintf("%-0*.*x:  ", offchars, offchars, i);

		for (j = 0; j < 16 && i + j < len; j++, p++) {
			dbprintf("%02x ", *p);
		}

		dbprintf(" ");

		for (j = 0; j < 16 && i + j < len; j++, s++) {
			if (isalnum(*s))
				dbprintf("%c", *s);
			else
				dbprintf(".", *s);
		}

		dbprintf("\n");
	}
}