summaryrefslogtreecommitdiff
path: root/src/btree/bt_misc.c
blob: c0f58002522952f554f8bf927ce2b8a0570c0fb1 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*-
 * See the file LICENSE for redistribution information.
 *
 * Copyright (c) 2008-2011 WiredTiger, Inc.
 *	All rights reserved.
 *
 * $Id$
 */

#include "wt_internal.h"

/*
 * __wt_bt_build_verify --
 *	Verify the Btree build itself.
 */
int
__wt_bt_build_verify(void)
{
	static const struct {
		char *name;
		u_int size, expected;
	} size_check[] = {
		{ "WT_COL", sizeof(WT_COL), WT_COL_SIZE },
		{ "WT_ITEM", sizeof(WT_ITEM), WT_ITEM_SIZE },
		{ "WT_OFF", sizeof(WT_OFF), WT_OFF_SIZE },
		{ "WT_OVFL", sizeof(WT_OVFL), WT_OVFL_SIZE },
		{ "WT_PAGE", sizeof(WT_PAGE), WT_PAGE_SIZE },
		{ "WT_PAGE_DESC", sizeof(WT_PAGE_DESC), WT_PAGE_DESC_SIZE },
		{ "WT_PAGE_DISK", sizeof(WT_PAGE_DISK), WT_PAGE_DISK_SIZE },
		{ "WT_ROW", sizeof(WT_ROW), WT_ROW_SIZE }
	};
	static const struct {
		char *name;
		u_int size, align;
	} align_check[] = {
		{ "WT_OFF", sizeof(WT_OFF), sizeof(uint32_t) },
		{ "WT_OVFL", sizeof(WT_OVFL), sizeof(uint32_t) },
		{ "WT_PAGE_DISK", sizeof(WT_PAGE_DISK), sizeof(uint32_t) },
		{ "WT_TOC_UPDATE", sizeof(WT_TOC_UPDATE), sizeof(uint32_t) }
	};
	u_int i;

	/*
	 * The compiler had better not have padded our structures -- make
	 * sure the page header structure is exactly what we expect.
	 */
	for (i = 0; i < WT_ELEMENTS(size_check); ++i) {
		if (size_check[i].size == size_check[i].expected)
			continue;
		__wt_api_env_errx(NULL,
		    "WiredTiger build failed, the %s header structure is not "
		    "the correct size (expected %u, got %u)",
		    size_check[i].name,
		    size_check[i].expected, size_check[i].size);
		return (WT_ERROR);
	}

	/* There are also structures that must be aligned correctly. */
	for (i = 0; i < WT_ELEMENTS(align_check); ++i) {
		if (WT_ALIGN(align_check[i].size,
		    align_check[i].align) == align_check[i].size)
			continue;
		__wt_api_env_errx(NULL,
		    "Build verification failed, the %s structure is not"
		    " correctly aligned", align_check[i].name);
		return (WT_ERROR);
	}

	/*
	 * We mix-and-match 32-bit unsigned values and size_t's, mostly because
	 * we allocate and handle 32-bit objects, and lots of the underlying C
	 * library expects size_t values for the length of memory objects.  We
	 * check, just to be sure.
	 */
	if (sizeof(size_t) < sizeof(uint32_t)) {
		__wt_api_env_errx(NULL, "%s",
		    "Build verification failed, a size_t is smaller than "
		    "4-bytes");
		return (WT_ERROR);
	}

	return (0);
}

/*
 * __wt_set_ff_and_sa_from_offset --
 *	Set first-free and space-available values from an address positioned
 *	one past the last used byte on the page.
 */
inline void
__wt_set_ff_and_sa_from_offset(WT_PAGE *page,
    void *p, uint8_t **first_freep, uint32_t *space_availp)
{
	*first_freep = (uint8_t *)p;
	*space_availp =
	    page->size - (uint32_t)((uint8_t *)p - (uint8_t *)page->dsk);
}

/*
 * __wt_page_write_gen_check --
 *	Confirm the page's write generation number is correct.
 */
inline int
__wt_page_write_gen_check(WT_PAGE *page, uint32_t write_gen)
{
	return (page->write_gen == write_gen ? 0 : WT_RESTART);
}

/*
 * __wt_page_type_string --
 *	Return a string representing the page type.
 */
const char *
__wt_page_type_string(WT_PAGE_DISK *dsk)
{
	switch (dsk->type) {
	case WT_PAGE_INVALID:
		return ("invalid");
	case WT_PAGE_COL_FIX:
		return ("column-store fixed-length leaf");
	case WT_PAGE_COL_INT:
		return ("column-store internal");
	case WT_PAGE_COL_RLE:
		return ("column-store fixed-length run-length encoded leaf");
	case WT_PAGE_COL_VAR:
		return ("column-store variable-length leaf");
	case WT_PAGE_DUP_INT:
		return ("duplicate tree internal");
	case WT_PAGE_DUP_LEAF:
		return ("duplicate tree leaf");
	case WT_PAGE_OVFL:
		return ("overflow");
	case WT_PAGE_ROW_INT:
		return ("row-store internal");
	case WT_PAGE_ROW_LEAF:
		return ("row-store leaf");
	default:
		break;
	}
	return ("unknown");
}

/*
 * __wt_item_type_string --
 *	Return a string representing the item type.
 */
const char *
__wt_item_type_string(WT_ITEM *item)
{
	switch (WT_ITEM_TYPE(item)) {
	case WT_ITEM_KEY:
		return ("key");
	case WT_ITEM_KEY_OVFL:
		return ("key-overflow");
	case WT_ITEM_KEY_DUP:
		return ("key-duplicate");
	case WT_ITEM_KEY_DUP_OVFL:
		return ("key-duplicate-overflow");
	case WT_ITEM_DATA:
		return ("data");
	case WT_ITEM_DATA_OVFL:
		return ("data-overflow");
	case WT_ITEM_DATA_DUP:
		return ("data-duplicate");
	case WT_ITEM_DATA_DUP_OVFL:
		return ("data-duplicate-overflow");
	case WT_ITEM_DEL:
		return ("deleted");
	case WT_ITEM_OFF:
		return ("off-page");
	default:
		break;
	}
	return ("unknown");
}