summaryrefslogtreecommitdiff
path: root/bdb/test/scr013/chk.stats
blob: 3a4046996680d56a4e18902883f5e9acdb714476 (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
#!/bin/sh -
#
# $Id: chk.stats,v 1.6 2002/08/19 18:35:18 bostic Exp $
#
# Check to make sure all of the stat structure members are included in
# all of the possible formats.

# Top-level directory.
d=../..

# Path names are from a top-level directory.
[ -f $d/README ] || {
	echo 'FAIL: cannot find source distribution directory.'
	exit 1
}

exitv=0
t=__tmp

# Extract the field names for a structure from the db.h file.
inc_fields()
{
	sed -e "/struct $1 {/,/^};$/p" \
	    -e d < $d/dbinc/db.in |
	sed -e 1d \
	    -e '$d' \
	    -e '/;/!d' \
	    -e 's/;.*//' \
	    -e 's/^[	 ].*[ \*]//'
}

cat << END_OF_IGNORE > IGNORE
bt_maxkey
bt_metaflags
hash_metaflags
qs_metaflags
qs_ndata
END_OF_IGNORE

# Check to make sure the elements of a structure from db.h appear in
# the other files.
inc()
{
	for i in `inc_fields $1`; do
		if egrep -w $i IGNORE > /dev/null; then
			echo "	$1: ignoring $i"
			continue
		fi
		for j in $2; do
			if egrep -w $i $d/$j > /dev/null; then
				:;
			else
				echo "	$1: $i not found in $j."
				exitv=1
			fi
		done
	done
}

inc	"__db_bt_stat" \
	"tcl/tcl_db.c db_stat/db_stat.c docs_src/db/db_stat.so"
inc	"__db_h_stat" \
	"tcl/tcl_db.c db_stat/db_stat.c docs_src/db/db_stat.so"
inc	"__db_qam_stat" \
	"tcl/tcl_db.c db_stat/db_stat.c docs_src/db/db_stat.so"
inc	__db_lock_stat \
	"tcl/tcl_lock.c db_stat/db_stat.c docs_src/lock/lock_stat.so"
inc	__db_log_stat \
	"tcl/tcl_log.c db_stat/db_stat.c docs_src/log/log_stat.so"
inc	__db_mpool_stat \
	"tcl/tcl_mp.c db_stat/db_stat.c docs_src/memp/memp_stat.so"
inc	__db_txn_stat \
	"tcl/tcl_txn.c db_stat/db_stat.c docs_src/txn/txn_stat.so"

# Check to make sure the elements from a man page appears in db.in.
man()
{
	for i in `cat $t`; do
		if egrep -w $i IGNORE > /dev/null; then
			echo "	$1: ignoring $i"
			continue
		fi
		if egrep -w $i $d/dbinc/db.in > /dev/null; then
			:;
		else
			echo "	$1: $i not found in db.h."
			exitv=1
		fi
	done
}

sed -e '/m4_stat(/!d' \
    -e 's/.*m4_stat(\([^)]*\)).*/\1/' < $d/docs_src/db/db_stat.so > $t
man "checking db_stat.so against db.h"

sed -e '/m4_stat(/!d' \
    -e 's/.*m4_stat(\([^)]*\)).*/\1/' \
    -e 's/.* //' < $d/docs_src/lock/lock_stat.so > $t
man "checking lock_stat.so against db.h"

sed -e '/m4_stat[12](/!d' \
    -e 's/.*m4_stat[12](\([^)]*\)).*/\1/' < $d/docs_src/log/log_stat.so > $t
man "checking log_stat.so against db.h"

sed -e '/m4_stat[123](/!d' \
    -e 's/.*m4_stat[123](\([^)]*\)).*/\1/' < $d/docs_src/memp/memp_stat.so > $t
man "checking memp_stat.so against db.h"

sed -e '/m4_stat(/!d' \
    -e 's/.*m4_stat(.*, \([^)]*\)).*/\1/' \
    -e 's/__[LR]B__//g' < $d/docs_src/txn/txn_stat.so > $t
man "checking txn_stat.so against db.h"

exit $exitv