print-tree.c 1.8 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <stdio.h>
#include <stdlib.h>
#include "kerncompat.h"
#include "radix-tree.h"
#include "ctree.h"
#include "disk-io.h"

void print_leaf(struct leaf *l)
{
	int i;
	int nr = l->header.nritems;
	struct item *item;
	struct extent_item *ei;
C
Chris Mason 已提交
14
	printf("leaf %Lu total ptrs %d free space %d\n", l->header.blocknr, nr,
C
Chris Mason 已提交
15 16 17 18
	       leaf_free_space(l));
	fflush(stdout);
	for (i = 0 ; i < nr ; i++) {
		item = l->items + i;
C
Chris Mason 已提交
19
		printf("\titem %d key (%Lu %u %Lu) itemoff %d itemsize %d\n",
C
Chris Mason 已提交
20 21 22 23
			i,
			item->key.objectid, item->key.flags, item->key.offset,
			item->offset, item->size);
		fflush(stdout);
24 25
		printf("\t\titem data %.*s\n", item->size,
			l->data+item->offset);
C
Chris Mason 已提交
26
		ei = (struct extent_item *)(l->data + item->offset);
27 28
		printf("\t\textent data refs %u owner %Lu\n", ei->refs,
			ei->owner);
C
Chris Mason 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
		fflush(stdout);
	}
}
void print_tree(struct ctree_root *root, struct tree_buffer *t)
{
	int i;
	int nr;
	struct node *c;

	if (!t)
		return;
	c = &t->node;
	nr = c->header.nritems;
	if (c->header.blocknr != t->blocknr)
		BUG();
	if (is_leaf(c->header.flags)) {
		print_leaf((struct leaf *)c);
		return;
	}
C
Chris Mason 已提交
48
	printf("node %Lu level %d total ptrs %d free spc %u\n", t->blocknr,
C
Chris Mason 已提交
49
	        node_level(c->header.flags), c->header.nritems,
C
Chris Mason 已提交
50
		(u32)NODEPTRS_PER_BLOCK - c->header.nritems);
C
Chris Mason 已提交
51 52
	fflush(stdout);
	for (i = 0; i < nr; i++) {
C
Chris Mason 已提交
53
		printf("\tkey %d (%Lu %u %Lu) block %Lu\n",
C
Chris Mason 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
		       i,
		       c->keys[i].objectid, c->keys[i].flags, c->keys[i].offset,
		       c->blockptrs[i]);
		fflush(stdout);
	}
	for (i = 0; i < nr; i++) {
		struct tree_buffer *next_buf = read_tree_block(root,
							    c->blockptrs[i]);
		struct node *next = &next_buf->node;
		if (is_leaf(next->header.flags) &&
		    node_level(c->header.flags) != 1)
			BUG();
		if (node_level(next->header.flags) !=
			node_level(c->header.flags) - 1)
			BUG();
		print_tree(root, next_buf);
		tree_block_release(root, next_buf);
	}

}