openldap/libraries/libmdb/mdb_stat.c

66 lines
1.5 KiB
C
Raw Normal View History

/* mdb_stat.c - memory-mapped database status tool */
/*
* Copyright 2011 Howard Chu, Symas Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "mdb.h"
int main(int argc,char * argv[])
{
2011-06-29 15:12:08 -04:00
int rc;
MDB_env *env;
2011-08-03 04:41:54 -04:00
MDB_txn *txn;
MDB_dbi dbi;
2011-07-03 07:22:10 -04:00
MDB_stat mst;
char *envname = argv[1];
char *subname = NULL;
2011-08-12 00:14:29 -04:00
rc = mdb_env_create(&env);
2011-08-11 06:23:22 -04:00
if (argc > 2) {
2011-08-12 00:14:29 -04:00
mdb_env_set_maxdbs(env, 4);
2011-08-11 06:23:22 -04:00
subname = argv[2];
}
2011-08-12 00:14:29 -04:00
rc = mdb_env_open(env, envname, MDB_RDONLY, 0);
if (rc) {
2011-08-12 00:14:29 -04:00
printf("mdb_env_open failed, error %d\n", rc);
exit(1);
}
2011-09-20 15:57:05 -04:00
rc = mdb_txn_begin(env, NULL, 1, &txn);
2011-08-03 04:41:54 -04:00
if (rc) {
printf("mdb_txn_begin failed, error %d\n", rc);
exit(1);
}
rc = mdb_open(txn, subname, 0, &dbi);
if (rc) {
printf("mdb_open failed, error %d\n", rc);
2012-08-24 08:23:55 -04:00
mdb_txn_abort(txn);
exit(1);
}
2011-08-03 04:41:54 -04:00
rc = mdb_stat(txn, dbi, &mst);
2011-07-03 07:22:10 -04:00
printf("Page size: %u\n", mst.ms_psize);
printf("Tree depth: %u\n", mst.ms_depth);
2011-09-10 14:01:07 -04:00
printf("Branch pages: %zu\n", mst.ms_branch_pages);
printf("Leaf pages: %zu\n", mst.ms_leaf_pages);
printf("Overflow pages: %zu\n", mst.ms_overflow_pages);
printf("Entries: %zu\n", mst.ms_entries);
mdb_close(env, dbi);
2011-08-03 04:41:54 -04:00
mdb_txn_abort(txn);
2011-08-12 00:14:29 -04:00
mdb_env_close(env);
return 0;
}