2 Trivial Database: human-readable summary code
3 Copyright (C) Rusty Russell 2010
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 3 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 #include "tdb1_private.h"
20 #define SUMMARY_FORMAT1 \
21 "Size of file/data: %u/%zu\n" \
22 "Number of records: %zu\n" \
23 "Smallest/average/largest keys: %zu/%zu/%zu\n" \
24 "Smallest/average/largest data: %zu/%zu/%zu\n" \
25 "Smallest/average/largest padding: %zu/%zu/%zu\n" \
26 "Number of dead records: %zu\n" \
27 "Smallest/average/largest dead records: %zu/%zu/%zu\n" \
28 "Number of free records: %zu\n" \
29 "Smallest/average/largest free records: %zu/%zu/%zu\n" \
30 "Number of hash chains: %zu\n" \
31 "Smallest/average/largest hash chains: %zu/%zu/%zu\n" \
32 "Number of uncoalesced records: %zu\n" \
33 "Smallest/average/largest uncoalesced runs: %zu/%zu/%zu\n" \
34 "Percentage keys/data/padding/free/dead/rechdrs&tailers/hashes: %.0f/%.0f/%.0f/%.0f/%.0f/%.0f/%.0f\n"
36 /* We don't use tally module, to keep upstream happy. */
38 size_t min
, max
, total
;
42 static void tally1_init(struct tally
*tally
)
46 tally
->min
= tally
->max
= 0;
49 static void tally1_add(struct tally
*tally
, size_t len
)
52 tally
->max
= tally
->min
= len
;
53 else if (len
> tally
->max
)
55 else if (len
< tally
->min
)
61 static size_t tally1_mean(const struct tally
*tally
)
65 return tally
->total
/ tally
->num
;
68 static size_t get_hash_length(struct tdb_context
*tdb
, unsigned int i
)
73 if (tdb1_ofs_read(tdb
, TDB1_HASH_TOP(i
), &rec_ptr
) == -1)
76 /* keep looking until we find the right record */
80 if (tdb1_rec_read(tdb
, rec_ptr
, &r
) == -1)
87 char *tdb1_summary(struct tdb_context
*tdb
)
89 tdb1_off_t off
, rec_off
;
90 struct tally freet
, keys
, data
, dead
, extra
, hash
, uncoal
;
91 struct tdb1_record rec
;
95 struct tdb1_record recovery
;
97 /* We may have a write lock already, so don't lock. */
98 if (tdb
->file
->allrecord_lock
.count
!= 0) {
101 if (tdb_lockall_read(tdb
) != TDB_SUCCESS
)
106 if (tdb1_recovery_area(tdb
, tdb
->tdb1
.io
, &rec_off
, &recovery
) != 0) {
116 tally1_init(&uncoal
);
118 for (off
= TDB1_DATA_START(tdb
->tdb1
.header
.hash_size
);
119 off
< tdb
->file
->map_size
- 1;
120 off
+= sizeof(rec
) + rec
.rec_len
) {
121 if (tdb
->tdb1
.io
->tdb1_read(tdb
, off
, &rec
, sizeof(rec
),
122 TDB1_DOCONV()) == -1)
126 tally1_add(&keys
, rec
.key_len
);
127 tally1_add(&data
, rec
.data_len
);
128 tally1_add(&extra
, rec
.rec_len
- (rec
.key_len
131 tally1_add(&uncoal
, unc
- 1);
134 case TDB1_FREE_MAGIC
:
135 tally1_add(&freet
, rec
.rec_len
);
138 /* If we crash after ftruncate, we can get zeroes or fill. */
139 case TDB1_RECOVERY_INVALID_MAGIC
:
142 /* If it's a valid recovery, we can trust rec_len. */
143 if (off
!= rec_off
) {
144 rec
.rec_len
= tdb1_dead_space(tdb
, off
)
148 case TDB1_DEAD_MAGIC
:
149 tally1_add(&dead
, rec
.rec_len
);
152 tdb
->last_error
= tdb_logerr(tdb
, TDB_ERR_CORRUPT
,
154 "Unexpected record magic 0x%x"
161 tally1_add(&uncoal
, unc
- 1);
163 for (off
= 0; off
< tdb
->tdb1
.header
.hash_size
; off
++)
164 tally1_add(&hash
, get_hash_length(tdb
, off
));
166 /* 20 is max length of a %zu. */
167 len
= strlen(SUMMARY_FORMAT1
) + 35*20 + 1;
168 ret
= (char *)malloc(len
);
172 snprintf(ret
, len
, SUMMARY_FORMAT1
,
173 (tdb1_len_t
)tdb
->file
->map_size
, keys
.total
+data
.total
,
175 keys
.min
, tally1_mean(&keys
), keys
.max
,
176 data
.min
, tally1_mean(&data
), data
.max
,
177 extra
.min
, tally1_mean(&extra
), extra
.max
,
179 dead
.min
, tally1_mean(&dead
), dead
.max
,
181 freet
.min
, tally1_mean(&freet
), freet
.max
,
183 hash
.min
, tally1_mean(&hash
), hash
.max
,
185 uncoal
.min
, tally1_mean(&uncoal
), uncoal
.max
,
186 keys
.total
* 100.0 / tdb
->file
->map_size
,
187 data
.total
* 100.0 / tdb
->file
->map_size
,
188 extra
.total
* 100.0 / tdb
->file
->map_size
,
189 freet
.total
* 100.0 / tdb
->file
->map_size
,
190 dead
.total
* 100.0 / tdb
->file
->map_size
,
191 (keys
.num
+ freet
.num
+ dead
.num
)
192 * (sizeof(struct tdb1_record
) + sizeof(uint32_t))
193 * 100.0 / tdb
->file
->map_size
,
194 tdb
->tdb1
.header
.hash_size
* sizeof(tdb1_off_t
)
195 * 100.0 / (tdb1_len_t
)tdb
->file
->map_size
);
199 tdb_unlockall_read(tdb
);