mp_stat.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:10k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: mp_stat.c,v 11.21 2001/01/09 16:59:30 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <stdio.h>
  14. #include <string.h>
  15. #include <unistd.h>
  16. #endif
  17. #ifdef  HAVE_RPC
  18. #include "db_server.h"
  19. #endif
  20. #include "db_int.h"
  21. #include "db_page.h"
  22. #include "db_shash.h"
  23. #include "db_am.h"
  24. #include "mp.h"
  25. #ifdef HAVE_RPC
  26. #include "gen_client_ext.h"
  27. #include "rpc_client_ext.h"
  28. #endif
  29. static void __memp_dumpcache
  30. __P((DB_MPOOL *, REGINFO *, size_t *, FILE *, u_int32_t));
  31. static void __memp_pbh __P((DB_MPOOL *, BH *, size_t *, FILE *));
  32. /*
  33.  * memp_stat --
  34.  * Display MPOOL statistics.
  35.  */
  36. int
  37. memp_stat(dbenv, gspp, fspp, db_malloc)
  38. DB_ENV *dbenv;
  39. DB_MPOOL_STAT **gspp;
  40. DB_MPOOL_FSTAT ***fspp;
  41. void *(*db_malloc) __P((size_t));
  42. {
  43. DB_MPOOL *dbmp;
  44. DB_MPOOL_FSTAT **tfsp, *tstruct;
  45. DB_MPOOL_STAT *sp;
  46. MPOOL *c_mp, *mp;
  47. MPOOLFILE *mfp;
  48. char *tname;
  49. size_t len, nlen;
  50. u_int32_t i;
  51. int ret;
  52. char *name;
  53. #ifdef HAVE_RPC
  54. if (F_ISSET(dbenv, DB_ENV_RPCCLIENT))
  55. return (__dbcl_memp_stat(dbenv, gspp, fspp, db_malloc));
  56. #endif
  57. PANIC_CHECK(dbenv);
  58. ENV_REQUIRES_CONFIG(dbenv, dbenv->mp_handle, DB_INIT_MPOOL);
  59. dbmp = dbenv->mp_handle;
  60. sp = NULL;
  61. /* Global statistics. */
  62. mp = dbmp->reginfo[0].primary;
  63. if (gspp != NULL) {
  64. *gspp = NULL;
  65. if ((ret = __os_calloc(dbenv, 1, sizeof(**gspp), gspp)) != 0)
  66. return (ret);
  67. sp = *gspp;
  68. /*
  69.  * Initialization and information that is not maintained on
  70.  * a per-cache basis.
  71.  */
  72. sp->st_hash_longest = 0;
  73. sp->st_region_wait = dbmp->reginfo[0].rp->mutex.mutex_set_wait;
  74. sp->st_region_nowait =
  75.     dbmp->reginfo[0].rp->mutex.mutex_set_nowait;
  76. sp->st_gbytes = dbenv->mp_gbytes;
  77. sp->st_bytes = dbenv->mp_bytes;
  78. sp->st_ncache = dbmp->nreg;
  79. sp->st_regsize = dbmp->reginfo[0].rp->size;
  80. R_LOCK(dbenv, dbmp->reginfo);
  81. /* Walk the cache list and accumulate the global information. */
  82. for (i = 0; i < mp->nreg; ++i) {
  83. c_mp = dbmp->reginfo[i].primary;
  84. sp->st_cache_hit += c_mp->stat.st_cache_hit;
  85. sp->st_cache_miss += c_mp->stat.st_cache_miss;
  86. sp->st_map += c_mp->stat.st_map;
  87. sp->st_page_create += c_mp->stat.st_page_create;
  88. sp->st_page_in += c_mp->stat.st_page_in;
  89. sp->st_page_out += c_mp->stat.st_page_out;
  90. sp->st_ro_evict += c_mp->stat.st_ro_evict;
  91. sp->st_rw_evict += c_mp->stat.st_rw_evict;
  92. sp->st_hash_buckets += c_mp->stat.st_hash_buckets;
  93. sp->st_hash_searches += c_mp->stat.st_hash_searches;
  94. if (c_mp->stat.st_hash_longest > sp->st_hash_longest)
  95. sp->st_hash_longest =
  96.     c_mp->stat.st_hash_longest;
  97. sp->st_hash_examined += c_mp->stat.st_hash_examined;
  98. sp->st_page_clean += c_mp->stat.st_page_clean;
  99. sp->st_page_dirty += c_mp->stat.st_page_dirty;
  100. sp->st_page_trickle += c_mp->stat.st_page_trickle;
  101. sp->st_region_wait += c_mp->stat.st_region_wait;
  102. sp->st_region_nowait += c_mp->stat.st_region_nowait;
  103. }
  104. /*
  105.  * We have duplicate statistics fields in the cache and
  106.  * per-file structures.  The counters are only incremented
  107.  * in the per-file structures, though.  The intent is that
  108.  * if we ever flush files from the pool we can save their
  109.  * last known totals in the cache structure.
  110.  */
  111. for (mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  112.     mfp != NULL; mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile)) {
  113. sp->st_cache_hit += mfp->stat.st_cache_hit;
  114. sp->st_cache_miss += mfp->stat.st_cache_miss;
  115. sp->st_map += mfp->stat.st_map;
  116. sp->st_page_create += mfp->stat.st_page_create;
  117. sp->st_page_in += mfp->stat.st_page_in;
  118. sp->st_page_out += mfp->stat.st_page_out;
  119. }
  120. R_UNLOCK(dbenv, dbmp->reginfo);
  121. }
  122. /* Per-file statistics. */
  123. if (fspp != NULL) {
  124. *fspp = NULL;
  125. R_LOCK(dbenv, dbmp->reginfo);
  126. /* Count the MPOOLFILE structures. */
  127. for (i = 0, len = 0,
  128.     mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  129.     mfp != NULL;
  130.     ++i, mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile))
  131. len += sizeof(DB_MPOOL_FSTAT *) +
  132.     sizeof(DB_MPOOL_FSTAT) +
  133.     strlen(__memp_fns(dbmp, mfp)) + 1;
  134. len += sizeof(DB_MPOOL_FSTAT *); /* Trailing NULL */
  135. R_UNLOCK(dbenv, dbmp->reginfo);
  136. if (len == 0)
  137. return (0);
  138. /* Allocate space */
  139. if ((ret = __os_malloc(dbenv, len, db_malloc, fspp)) != 0)
  140. return (ret);
  141. R_LOCK(dbenv, dbmp->reginfo);
  142. /*
  143.  * Build each individual entry.  We assume that an array of
  144.  * pointers are aligned correctly to be followed by an array
  145.  * of structures, which should be safe (in this particular
  146.  * case, the first element of the structure is a pointer, so
  147.  * we're doubly safe).  The array is followed by space for
  148.  * the text file names.
  149.  *
  150.  * Add 1 to i because we need to skip over the NULL.
  151.  */
  152. tfsp = *fspp;
  153. tstruct = (DB_MPOOL_FSTAT *)(tfsp + i + 1);
  154. tname = (char *)(tstruct + i);
  155. for (mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  156.     mfp != NULL;
  157.     ++tfsp, ++tstruct, tname += nlen,
  158.     mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile)) {
  159. name = __memp_fns(dbmp, mfp);
  160. nlen = strlen(name) + 1;
  161. *tfsp = tstruct;
  162. *tstruct = mfp->stat;
  163. tstruct->file_name = tname;
  164. memcpy(tname, name, nlen);
  165. }
  166. *tfsp = NULL;
  167. R_UNLOCK(dbenv, dbmp->reginfo);
  168. }
  169. return (0);
  170. }
  171. #define FMAP_ENTRIES 200 /* Files we map. */
  172. #define MPOOL_DUMP_HASH 0x01 /* Debug hash chains. */
  173. #define MPOOL_DUMP_LRU 0x02 /* Debug LRU chains. */
  174. #define MPOOL_DUMP_MEM 0x04 /* Debug region memory. */
  175. #define MPOOL_DUMP_ALL 0x07 /* Debug all. */
  176. /*
  177.  * __memp_dump_region --
  178.  * Display MPOOL structures.
  179.  *
  180.  * PUBLIC: void __memp_dump_region __P((DB_ENV *, char *, FILE *));
  181.  */
  182. void
  183. __memp_dump_region(dbenv, area, fp)
  184. DB_ENV *dbenv;
  185. char *area;
  186. FILE *fp;
  187. {
  188. DB_MPOOL *dbmp;
  189. DB_MPOOLFILE *dbmfp;
  190. MPOOL *mp;
  191. MPOOLFILE *mfp;
  192. size_t fmap[FMAP_ENTRIES + 1];
  193. u_int32_t i, flags;
  194. int cnt;
  195. u_int8_t *p;
  196. dbmp = dbenv->mp_handle;
  197. /* Make it easy to call from the debugger. */
  198. if (fp == NULL)
  199. fp = stderr;
  200. for (flags = 0; *area != ''; ++area)
  201. switch (*area) {
  202. case 'A':
  203. LF_SET(MPOOL_DUMP_ALL);
  204. break;
  205. case 'h':
  206. LF_SET(MPOOL_DUMP_HASH);
  207. break;
  208. case 'l':
  209. LF_SET(MPOOL_DUMP_LRU);
  210. break;
  211. case 'm':
  212. LF_SET(MPOOL_DUMP_MEM);
  213. break;
  214. }
  215. R_LOCK(dbenv, dbmp->reginfo);
  216. mp = dbmp->reginfo[0].primary;
  217. /* Display MPOOL structures. */
  218. (void)fprintf(fp, "%snPool (region addr 0x%lx)n",
  219.     DB_LINE, (u_long)dbmp->reginfo[0].addr);
  220. /* Display the MPOOLFILE structures. */
  221. cnt = 0;
  222. for (mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  223.     mfp != NULL; mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile), ++cnt) {
  224. (void)fprintf(fp, "File #%d: %s: type %ld, %snt [UID: ",
  225.     cnt + 1, __memp_fns(dbmp, mfp), (long)mfp->ftype,
  226.     F_ISSET(mfp, MP_CAN_MMAP) ? "mmap" : "read/write");
  227. p = R_ADDR(dbmp->reginfo, mfp->fileid_off);
  228. for (i = 0; i < DB_FILE_ID_LEN; ++i) {
  229. (void)fprintf(fp, "%x", *p++);
  230. if (i < DB_FILE_ID_LEN - 1)
  231. (void)fprintf(fp, " ");
  232. }
  233. (void)fprintf(fp, "]n");
  234. if (cnt < FMAP_ENTRIES)
  235. fmap[cnt] = R_OFFSET(dbmp->reginfo, mfp);
  236. }
  237. for (dbmfp = TAILQ_FIRST(&dbmp->dbmfq);
  238.     dbmfp != NULL; dbmfp = TAILQ_NEXT(dbmfp, q), ++cnt) {
  239. (void)fprintf(fp, "File #%d: %s: per-process, %sn",
  240.     cnt + 1, __memp_fn(dbmfp),
  241.     F_ISSET(dbmfp, MP_READONLY) ? "readonly" : "read/write");
  242.     if (cnt < FMAP_ENTRIES)
  243. fmap[cnt] = R_OFFSET(dbmp->reginfo, mfp);
  244. }
  245. if (cnt < FMAP_ENTRIES)
  246. fmap[cnt] = INVALID_ROFF;
  247. else
  248. fmap[FMAP_ENTRIES] = INVALID_ROFF;
  249. /* Dump the memory pools. */
  250. for (i = 0; i < mp->nreg; ++i) {
  251. (void)fprintf(fp, "%snCache #%d:n", DB_LINE, i + 1);
  252. __memp_dumpcache(dbmp, &dbmp->reginfo[i], fmap, fp, flags);
  253. }
  254. R_UNLOCK(dbenv, dbmp->reginfo);
  255. /* Flush in case we're debugging. */
  256. (void)fflush(fp);
  257. }
  258. /*
  259.  * __memp_dumpcache --
  260.  * Display statistics for a cache.
  261.  */
  262. static void
  263. __memp_dumpcache(dbmp, reginfo, fmap, fp, flags)
  264. DB_MPOOL *dbmp;
  265. REGINFO *reginfo;
  266. size_t *fmap;
  267. FILE *fp;
  268. u_int32_t flags;
  269. {
  270. BH *bhp;
  271. DB_HASHTAB *dbht;
  272. MPOOL *c_mp;
  273. int bucket;
  274. c_mp = reginfo->primary;
  275. /* Display the hash table list of BH's. */
  276. if (LF_ISSET(MPOOL_DUMP_HASH)) {
  277. (void)fprintf(fp,
  278.     "%snBH hash table (%lu hash slots)npageno, file, ref, addressn",
  279.     DB_LINE, (u_long)c_mp->htab_buckets);
  280. for (dbht = R_ADDR(reginfo, c_mp->htab),
  281.     bucket = 0; bucket < c_mp->htab_buckets; ++dbht, ++bucket) {
  282. if (SH_TAILQ_FIRST(dbht, __bh) != NULL)
  283. (void)fprintf(fp, "%lu:n", (u_long)bucket);
  284. for (bhp = SH_TAILQ_FIRST(dbht, __bh);
  285.     bhp != NULL; bhp = SH_TAILQ_NEXT(bhp, hq, __bh))
  286. __memp_pbh(dbmp, bhp, fmap, fp);
  287. }
  288. }
  289. /* Display the LRU list of BH's. */
  290. if (LF_ISSET(MPOOL_DUMP_LRU)) {
  291. (void)fprintf(fp, "%snBH LRU listn", DB_LINE);
  292. (void)fprintf(fp, "pageno, file, ref, addressn");
  293. for (bhp = SH_TAILQ_FIRST(&c_mp->bhq, __bh);
  294.     bhp != NULL; bhp = SH_TAILQ_NEXT(bhp, q, __bh))
  295. __memp_pbh(dbmp, bhp, fmap, fp);
  296. }
  297. /* Dump the memory pool. */
  298. if (LF_ISSET(MPOOL_DUMP_MEM))
  299. __db_shalloc_dump(reginfo->addr, fp);
  300. }
  301. /*
  302.  * __memp_pbh --
  303.  * Display a BH structure.
  304.  */
  305. static void
  306. __memp_pbh(dbmp, bhp, fmap, fp)
  307. DB_MPOOL *dbmp;
  308. BH *bhp;
  309. size_t *fmap;
  310. FILE *fp;
  311. {
  312. static const FN fn[] = {
  313. { BH_CALLPGIN, "callpgin" },
  314. { BH_DIRTY, "dirty" },
  315. { BH_DISCARD, "discard" },
  316. { BH_LOCKED, "locked" },
  317. { BH_SYNC, "sync" },
  318. { BH_SYNC_LOGFLSH, "sync:logflush" },
  319. { BH_TRASH, "trash" },
  320. { 0, NULL }
  321. };
  322. int i;
  323. for (i = 0; i < FMAP_ENTRIES; ++i)
  324. if (fmap[i] == INVALID_ROFF || fmap[i] == bhp->mf_offset)
  325. break;
  326. if (fmap[i] == INVALID_ROFF)
  327. (void)fprintf(fp, "  %4lu, %lu, %2lu, %lu",
  328.     (u_long)bhp->pgno, (u_long)bhp->mf_offset,
  329.     (u_long)bhp->ref, (u_long)R_OFFSET(dbmp->reginfo, bhp));
  330. else
  331. (void)fprintf(fp, "  %4lu,   #%d,  %2lu, %lu",
  332.     (u_long)bhp->pgno, i + 1,
  333.     (u_long)bhp->ref, (u_long)R_OFFSET(dbmp->reginfo, bhp));
  334. __db_prflags(bhp->flags, fn, fp);
  335. (void)fprintf(fp, "n");
  336. }