aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/venti/fmtisect.c
blob: 77c929677a9b65de321682ca63d9e60e660c2cc5 (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
#include "stdinc.h"
#include "dat.h"
#include "fns.h"

void
usage(void)
{
	fprint(2, "usage: fmtisect [-Z] [-b blocksize] name file\n");
	threadexitsall(0);
}

void
threadmain(int argc, char *argv[])
{
	ISect *is;
	Part *part;
	char *file, *name;
	int blocksize, setsize, zero;

	fmtinstall('V', vtscorefmt);
	statsinit();

	blocksize = 8 * 1024;
	setsize = 64 * 1024;
	zero = 1;
	ARGBEGIN{
	case 'b':
		blocksize = unittoull(ARGF());
		if(blocksize == ~0)
			usage();
		if(blocksize > MaxDiskBlock){
			fprint(2, "block size too large, max %d\n", MaxDiskBlock);
			threadexitsall("usage");
		}
		break;
	case 'Z':
		zero = 0;
		break;
	default:
		usage();
		break;
	}ARGEND

	if(argc != 2)
		usage();

	name = argv[0];
	file = argv[1];

	if(nameok(name) < 0)
		sysfatal("illegal name %s", name);

	part = initpart(file, 0);
	if(part == nil)
		sysfatal("can't open partition %s: %r", file);

	if(zero)
		zeropart(part, blocksize);

	fprint(2, "configuring index section %s with space for index config bytes=%d\n", name, setsize);
	is = newisect(part, name, blocksize, setsize);
	if(is == nil)
		sysfatal("can't initialize new index: %r");

	if(wbisect(is) < 0)
		fprint(2, "can't write back index section header for %s: %r\n", file);

	threadexitsall(0);
}