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
|
/*-
* Copyright (c) 2014-2016 MongoDB, Inc.
* Copyright (c) 2008-2014 WiredTiger, Inc.
* All rights reserved.
*
* See the file LICENSE for redistribution information.
*/
#include "util.h"
static int usage(void);
int
util_verify(WT_SESSION *session, int argc, char *argv[])
{
WT_DECL_RET;
size_t size;
int ch;
bool dump_address, dump_blocks, dump_layout, dump_pages;
char *config, *dump_offsets, *uri;
dump_address = dump_blocks = dump_layout = dump_pages = false;
config = dump_offsets = uri = NULL;
while ((ch = __wt_getopt(progname, argc, argv, "d:")) != EOF)
switch (ch) {
case 'd':
if (strcmp(__wt_optarg, "dump_address") == 0)
dump_address = true;
else if (strcmp(__wt_optarg, "dump_blocks") == 0)
dump_blocks = true;
else if (strcmp(__wt_optarg, "dump_layout") == 0)
dump_layout = true;
else if (
WT_PREFIX_MATCH(__wt_optarg, "dump_offsets=")) {
if (dump_offsets != NULL) {
fprintf(stderr,
"%s: only a single 'dump_offsets' "
"argument supported\n", progname);
return (usage());
}
dump_offsets =
__wt_optarg + strlen("dump_offsets=");
} else if (strcmp(__wt_optarg, "dump_pages") == 0)
dump_pages = true;
else
return (usage());
break;
case '?':
default:
return (usage());
}
argc -= __wt_optind;
argv += __wt_optind;
/* The remaining argument is the table name. */
if (argc != 1)
return (usage());
if ((uri = util_uri(session, *argv, "table")) == NULL)
return (1);
/* Build the configuration string as necessary. */
if (dump_address ||
dump_blocks || dump_layout || dump_offsets != NULL || dump_pages) {
size =
strlen("dump_address,") +
strlen("dump_blocks,") +
strlen("dump_layout,") +
strlen("dump_pages,") +
strlen("dump_offsets[],") +
(dump_offsets == NULL ? 0 : strlen(dump_offsets)) + 20;
if ((config = malloc(size)) == NULL) {
ret = util_err(session, errno, NULL);
goto err;
}
if ((ret = __wt_snprintf(config, size,
"%s%s%s%s%s%s%s",
dump_address ? "dump_address," : "",
dump_blocks ? "dump_blocks," : "",
dump_layout ? "dump_layout," : "",
dump_offsets != NULL ? "dump_offsets=[" : "",
dump_offsets != NULL ? dump_offsets : "",
dump_offsets != NULL ? "]," : "",
dump_pages ? "dump_pages," : "")) != 0) {
(void)util_err(session, ret, NULL);
goto err;
}
}
if ((ret = session->verify(session, uri, config)) != 0)
(void)util_err(session, ret, "session.verify: %s", uri);
else {
/*
* Verbose configures a progress counter, move to the next
* line.
*/
if (verbose)
printf("\n");
}
err: free(config);
free(uri);
return (ret);
}
static int
usage(void)
{
(void)fprintf(stderr,
"usage: %s %s "
"verify %s\n",
progname, usage_prefix,
"[-d dump_address | dump_blocks | dump_layout | "
"dump_offsets=#,# | dump_pages] uri");
return (1);
}
|