mp_stat.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:13k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  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.51 2002/08/06 06:13:47 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. #include "db_int.h"
  18. #include "dbinc/db_page.h"
  19. #include "dbinc/db_shash.h"
  20. #include "dbinc/db_am.h"
  21. #include "dbinc/mp.h"
  22. static void __memp_dumpcache __P((DB_ENV *,
  23. DB_MPOOL *, REGINFO *, size_t *, FILE *, u_int32_t));
  24. static void __memp_pbh __P((DB_MPOOL *, BH *, size_t *, FILE *));
  25. static void __memp_stat_wait __P((REGINFO *, MPOOL *, DB_MPOOL_STAT *, int));
  26. /*
  27.  * __memp_stat --
  28.  * Display MPOOL statistics.
  29.  *
  30.  * PUBLIC: int __memp_stat
  31.  * PUBLIC:     __P((DB_ENV *, DB_MPOOL_STAT **, DB_MPOOL_FSTAT ***, u_int32_t));
  32.  */
  33. int
  34. __memp_stat(dbenv, gspp, fspp, flags)
  35. DB_ENV *dbenv;
  36. DB_MPOOL_STAT **gspp;
  37. DB_MPOOL_FSTAT ***fspp;
  38. u_int32_t flags;
  39. {
  40. DB_MPOOL *dbmp;
  41. DB_MPOOL_FSTAT **tfsp, *tstruct;
  42. DB_MPOOL_STAT *sp;
  43. MPOOL *c_mp, *mp;
  44. MPOOLFILE *mfp;
  45. size_t len, nlen, pagesize;
  46. u_int32_t pages, i;
  47. int ret;
  48. char *name, *tname;
  49. PANIC_CHECK(dbenv);
  50. ENV_REQUIRES_CONFIG(dbenv,
  51.     dbenv->mp_handle, "memp_stat", DB_INIT_MPOOL);
  52. if ((ret = __db_fchk(dbenv,
  53.     "DB_ENV->memp_stat", flags, DB_STAT_CLEAR)) != 0)
  54. return (ret);
  55. dbmp = dbenv->mp_handle;
  56. mp = dbmp->reginfo[0].primary;
  57. /* Global statistics. */
  58. if (gspp != NULL) {
  59. *gspp = NULL;
  60. if ((ret = __os_umalloc(dbenv, sizeof(**gspp), gspp)) != 0)
  61. return (ret);
  62. memset(*gspp, 0, sizeof(**gspp));
  63. sp = *gspp;
  64. /*
  65.  * Initialization and information that is not maintained on
  66.  * a per-cache basis.
  67.  */
  68. c_mp = dbmp->reginfo[0].primary;
  69. sp->st_gbytes = c_mp->stat.st_gbytes;
  70. sp->st_bytes = c_mp->stat.st_bytes;
  71. sp->st_ncache = dbmp->nreg;
  72. sp->st_regsize = dbmp->reginfo[0].rp->size;
  73. /* Walk the cache list and accumulate the global information. */
  74. for (i = 0; i < mp->nreg; ++i) {
  75. c_mp = dbmp->reginfo[i].primary;
  76. sp->st_map += c_mp->stat.st_map;
  77. sp->st_cache_hit += c_mp->stat.st_cache_hit;
  78. sp->st_cache_miss += c_mp->stat.st_cache_miss;
  79. sp->st_page_create += c_mp->stat.st_page_create;
  80. sp->st_page_in += c_mp->stat.st_page_in;
  81. sp->st_page_out += c_mp->stat.st_page_out;
  82. sp->st_ro_evict += c_mp->stat.st_ro_evict;
  83. sp->st_rw_evict += c_mp->stat.st_rw_evict;
  84. sp->st_page_trickle += c_mp->stat.st_page_trickle;
  85. sp->st_pages += c_mp->stat.st_pages;
  86. /*
  87.  * st_page_dirty calculated by __memp_stat_hash
  88.  * st_page_clean calculated here
  89.  */
  90. __memp_stat_hash(
  91.     &dbmp->reginfo[i], c_mp, &sp->st_page_dirty);
  92. sp->st_page_clean = sp->st_pages - sp->st_page_dirty;
  93. sp->st_hash_buckets += c_mp->stat.st_hash_buckets;
  94. sp->st_hash_searches += c_mp->stat.st_hash_searches;
  95. sp->st_hash_longest += c_mp->stat.st_hash_longest;
  96. sp->st_hash_examined += c_mp->stat.st_hash_examined;
  97. /*
  98.  * st_hash_nowait calculated by __memp_stat_wait
  99.  * st_hash_wait
  100.  */
  101. __memp_stat_wait(&dbmp->reginfo[i], c_mp, sp, flags);
  102. sp->st_region_nowait +=
  103.     dbmp->reginfo[i].rp->mutex.mutex_set_nowait;
  104. sp->st_region_wait +=
  105.     dbmp->reginfo[i].rp->mutex.mutex_set_wait;
  106. sp->st_alloc += c_mp->stat.st_alloc;
  107. sp->st_alloc_buckets += c_mp->stat.st_alloc_buckets;
  108. if (sp->st_alloc_max_buckets <
  109.     c_mp->stat.st_alloc_max_buckets)
  110. sp->st_alloc_max_buckets =
  111.     c_mp->stat.st_alloc_max_buckets;
  112. sp->st_alloc_pages += c_mp->stat.st_alloc_pages;
  113. if (sp->st_alloc_max_pages <
  114.     c_mp->stat.st_alloc_max_pages)
  115. sp->st_alloc_max_pages =
  116.     c_mp->stat.st_alloc_max_pages;
  117. if (LF_ISSET(DB_STAT_CLEAR)) {
  118. dbmp->reginfo[i].rp->mutex.mutex_set_wait = 0;
  119. dbmp->reginfo[i].rp->mutex.mutex_set_nowait = 0;
  120. pages = c_mp->stat.st_pages;
  121. memset(&c_mp->stat, 0, sizeof(c_mp->stat));
  122. c_mp->stat.st_hash_buckets = c_mp->htab_buckets;
  123. c_mp->stat.st_pages = pages;
  124. }
  125. }
  126. /*
  127.  * We have duplicate statistics fields in per-file structures
  128.  * and the cache.  The counters are only incremented in the
  129.  * per-file structures, except if a file is flushed from the
  130.  * mpool, at which time we copy its information into the cache
  131.  * statistics.  We added the cache information above, now we
  132.  * add the per-file information.
  133.  */
  134. R_LOCK(dbenv, dbmp->reginfo);
  135. for (mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  136.     mfp != NULL; mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile)) {
  137. sp->st_map += mfp->stat.st_map;
  138. sp->st_cache_hit += mfp->stat.st_cache_hit;
  139. sp->st_cache_miss += mfp->stat.st_cache_miss;
  140. sp->st_page_create += mfp->stat.st_page_create;
  141. sp->st_page_in += mfp->stat.st_page_in;
  142. sp->st_page_out += mfp->stat.st_page_out;
  143. if (fspp == NULL && LF_ISSET(DB_STAT_CLEAR)) {
  144. pagesize = mfp->stat.st_pagesize;
  145. memset(&mfp->stat, 0, sizeof(mfp->stat));
  146. mfp->stat.st_pagesize = pagesize;
  147. }
  148. }
  149. R_UNLOCK(dbenv, dbmp->reginfo);
  150. }
  151. /* Per-file statistics. */
  152. if (fspp != NULL) {
  153. *fspp = NULL;
  154. /* Count the MPOOLFILE structures. */
  155. R_LOCK(dbenv, dbmp->reginfo);
  156. for (i = 0, len = 0,
  157.     mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  158.     mfp != NULL;
  159.     ++i, mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile))
  160. len += sizeof(DB_MPOOL_FSTAT *) +
  161.     sizeof(DB_MPOOL_FSTAT) +
  162.     strlen(__memp_fns(dbmp, mfp)) + 1;
  163. len += sizeof(DB_MPOOL_FSTAT *); /* Trailing NULL */
  164. R_UNLOCK(dbenv, dbmp->reginfo);
  165. if (i == 0)
  166. return (0);
  167. /* Allocate space */
  168. if ((ret = __os_umalloc(dbenv, len, fspp)) != 0)
  169. return (ret);
  170. /*
  171.  * Build each individual entry.  We assume that an array of
  172.  * pointers are aligned correctly to be followed by an array
  173.  * of structures, which should be safe (in this particular
  174.  * case, the first element of the structure is a pointer, so
  175.  * we're doubly safe).  The array is followed by space for
  176.  * the text file names.
  177.  *
  178.  * Add 1 to i because we need to skip over the NULL.
  179.  */
  180. tfsp = *fspp;
  181. tstruct = (DB_MPOOL_FSTAT *)(tfsp + i + 1);
  182. tname = (char *)(tstruct + i);
  183. /*
  184.  * Files may have been opened since we counted, don't walk
  185.  * off the end of the allocated space.
  186.  */
  187. R_LOCK(dbenv, dbmp->reginfo);
  188. for (mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  189.     mfp != NULL && i-- > 0;
  190.     ++tfsp, ++tstruct, tname += nlen,
  191.     mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile)) {
  192. name = __memp_fns(dbmp, mfp);
  193. nlen = strlen(name) + 1;
  194. *tfsp = tstruct;
  195. *tstruct = mfp->stat;
  196. if (LF_ISSET(DB_STAT_CLEAR)) {
  197. pagesize = mfp->stat.st_pagesize;
  198. memset(&mfp->stat, 0, sizeof(mfp->stat));
  199. mfp->stat.st_pagesize = pagesize;
  200. }
  201. tstruct->file_name = tname;
  202. memcpy(tname, name, nlen);
  203. }
  204. R_UNLOCK(dbenv, dbmp->reginfo);
  205. *tfsp = NULL;
  206. }
  207. return (0);
  208. }
  209. #define FMAP_ENTRIES 200 /* Files we map. */
  210. #define MPOOL_DUMP_HASH 0x01 /* Debug hash chains. */
  211. #define MPOOL_DUMP_MEM 0x04 /* Debug region memory. */
  212. #define MPOOL_DUMP_ALL 0x07 /* Debug all. */
  213. /*
  214.  * __memp_dump_region --
  215.  * Display MPOOL structures.
  216.  *
  217.  * PUBLIC: int __memp_dump_region __P((DB_ENV *, char *, FILE *));
  218.  */
  219. int
  220. __memp_dump_region(dbenv, area, fp)
  221. DB_ENV *dbenv;
  222. char *area;
  223. FILE *fp;
  224. {
  225. static const FN fn[] = {
  226. { MP_CAN_MMAP, "mmapped" },
  227. { MP_DEADFILE, "dead" },
  228. { MP_DIRECT, "no buffer" },
  229. { MP_EXTENT, "extent" },
  230. { MP_TEMP, "temporary" },
  231. { MP_UNLINK, "unlink" },
  232. { 0, NULL }
  233. };
  234. DB_MPOOL *dbmp;
  235. DB_MPOOLFILE *dbmfp;
  236. MPOOL *mp;
  237. MPOOLFILE *mfp;
  238. size_t fmap[FMAP_ENTRIES + 1];
  239. u_int32_t i, flags;
  240. int cnt;
  241. u_int8_t *p;
  242. PANIC_CHECK(dbenv);
  243. ENV_REQUIRES_CONFIG(dbenv,
  244.     dbenv->mp_handle, "memp_dump_region", DB_INIT_MPOOL);
  245. dbmp = dbenv->mp_handle;
  246. /* Make it easy to call from the debugger. */
  247. if (fp == NULL)
  248. fp = stderr;
  249. for (flags = 0; *area != ''; ++area)
  250. switch (*area) {
  251. case 'A':
  252. LF_SET(MPOOL_DUMP_ALL);
  253. break;
  254. case 'h':
  255. LF_SET(MPOOL_DUMP_HASH);
  256. break;
  257. case 'm':
  258. LF_SET(MPOOL_DUMP_MEM);
  259. break;
  260. }
  261. mp = dbmp->reginfo[0].primary;
  262. /* Display MPOOL structures. */
  263. (void)fprintf(fp, "%snPool (region addr 0x%lx)n",
  264.     DB_LINE, P_TO_ULONG(dbmp->reginfo[0].addr));
  265. /* Display the MPOOLFILE structures. */
  266. R_LOCK(dbenv, dbmp->reginfo);
  267. for (cnt = 0, mfp = SH_TAILQ_FIRST(&mp->mpfq, __mpoolfile);
  268.     mfp != NULL; mfp = SH_TAILQ_NEXT(mfp, q, __mpoolfile), ++cnt) {
  269. (void)fprintf(fp, "File #%d: %s: pagesize %lun", cnt + 1,
  270.     __memp_fns(dbmp, mfp), (u_long)mfp->stat.st_pagesize);
  271. (void)fprintf(fp, "t type %ld; ref %lu; blocks %lu; last %lu;",
  272.     (long)mfp->ftype, (u_long)mfp->mpf_cnt,
  273.     (u_long)mfp->block_cnt, (u_long)mfp->last_pgno);
  274. __db_prflags(mfp->flags, fn, fp);
  275. (void)fprintf(fp, "nt UID: ");
  276. p = R_ADDR(dbmp->reginfo, mfp->fileid_off);
  277. for (i = 0; i < DB_FILE_ID_LEN; ++i, ++p) {
  278. (void)fprintf(fp, "%x", (u_int)*p);
  279. if (i < DB_FILE_ID_LEN - 1)
  280. (void)fprintf(fp, " ");
  281. }
  282. (void)fprintf(fp, "n");
  283. if (cnt < FMAP_ENTRIES)
  284. fmap[cnt] = R_OFFSET(dbmp->reginfo, mfp);
  285. }
  286. R_UNLOCK(dbenv, dbmp->reginfo);
  287. MUTEX_THREAD_LOCK(dbenv, dbmp->mutexp);
  288. for (dbmfp = TAILQ_FIRST(&dbmp->dbmfq);
  289.     dbmfp != NULL; dbmfp = TAILQ_NEXT(dbmfp, q), ++cnt) {
  290. (void)fprintf(fp, "File #%d: %s: per-process, %sn",
  291.     cnt + 1, __memp_fn(dbmfp),
  292.     F_ISSET(dbmfp, MP_READONLY) ? "readonly" : "read/write");
  293.     if (cnt < FMAP_ENTRIES)
  294. fmap[cnt] = R_OFFSET(dbmp->reginfo, mfp);
  295. }
  296. MUTEX_THREAD_UNLOCK(dbenv, dbmp->mutexp);
  297. if (cnt < FMAP_ENTRIES)
  298. fmap[cnt] = INVALID_ROFF;
  299. else
  300. fmap[FMAP_ENTRIES] = INVALID_ROFF;
  301. /* Dump the memory pools. */
  302. for (i = 0; i < mp->nreg; ++i) {
  303. (void)fprintf(fp, "%snCache #%d:n", DB_LINE, i + 1);
  304. __memp_dumpcache(
  305.     dbenv, dbmp, &dbmp->reginfo[i], fmap, fp, flags);
  306. }
  307. /* Flush in case we're debugging. */
  308. (void)fflush(fp);
  309. return (0);
  310. }
  311. /*
  312.  * __memp_dumpcache --
  313.  * Display statistics for a cache.
  314.  */
  315. static void
  316. __memp_dumpcache(dbenv, dbmp, reginfo, fmap, fp, flags)
  317. DB_ENV *dbenv;
  318. DB_MPOOL *dbmp;
  319. REGINFO *reginfo;
  320. size_t *fmap;
  321. FILE *fp;
  322. u_int32_t flags;
  323. {
  324. BH *bhp;
  325. DB_MPOOL_HASH *hp;
  326. MPOOL *c_mp;
  327. int bucket;
  328. c_mp = reginfo->primary;
  329. /* Display the hash table list of BH's. */
  330. if (LF_ISSET(MPOOL_DUMP_HASH)) {
  331. (void)fprintf(fp,
  332.     "%snBH hash table (%lu hash slots)nbucket (priority):n",
  333.     DB_LINE, (u_long)c_mp->htab_buckets);
  334. (void)fprintf(fp,
  335.     "tpageno, file, ref, address [LSN] priorityn");
  336. for (hp = R_ADDR(reginfo, c_mp->htab),
  337.     bucket = 0; bucket < c_mp->htab_buckets; ++hp, ++bucket) {
  338. MUTEX_LOCK(dbenv, &hp->hash_mutex);
  339. if ((bhp =
  340.     SH_TAILQ_FIRST(&hp->hash_bucket, __bh)) != NULL)
  341. (void)fprintf(fp, "%lu (%u):n",
  342.     (u_long)bucket, hp->hash_priority);
  343. for (; bhp != NULL; bhp = SH_TAILQ_NEXT(bhp, hq, __bh))
  344. __memp_pbh(dbmp, bhp, fmap, fp);
  345. MUTEX_UNLOCK(dbenv, &hp->hash_mutex);
  346. }
  347. }
  348. /* Dump the memory pool. */
  349. if (LF_ISSET(MPOOL_DUMP_MEM))
  350. __db_shalloc_dump(reginfo->addr, fp);
  351. }
  352. /*
  353.  * __memp_pbh --
  354.  * Display a BH structure.
  355.  */
  356. static void
  357. __memp_pbh(dbmp, bhp, fmap, fp)
  358. DB_MPOOL *dbmp;
  359. BH *bhp;
  360. size_t *fmap;
  361. FILE *fp;
  362. {
  363. static const FN fn[] = {
  364. { BH_CALLPGIN, "callpgin" },
  365. { BH_DIRTY, "dirty" },
  366. { BH_DIRTY_CREATE, "created" },
  367. { BH_DISCARD, "discard" },
  368. { BH_LOCKED, "locked" },
  369. { BH_TRASH, "trash" },
  370. { 0, NULL }
  371. };
  372. int i;
  373. for (i = 0; i < FMAP_ENTRIES; ++i)
  374. if (fmap[i] == INVALID_ROFF || fmap[i] == bhp->mf_offset)
  375. break;
  376. if (fmap[i] == INVALID_ROFF)
  377. (void)fprintf(fp, "t%5lu, %lu, %2lu, %8lu [%lu,%lu] %lu",
  378.     (u_long)bhp->pgno, (u_long)bhp->mf_offset,
  379.     (u_long)bhp->ref, (u_long)R_OFFSET(dbmp->reginfo, bhp),
  380.     (u_long)LSN(bhp->buf).file, (u_long)LSN(bhp->buf).offset,
  381.     (u_long)bhp->priority);
  382. else
  383. (void)fprintf(fp, "t%5lu,   #%d,  %2lu, %8lu [%lu,%lu] %lu",
  384.     (u_long)bhp->pgno, i + 1,
  385.     (u_long)bhp->ref, (u_long)R_OFFSET(dbmp->reginfo, bhp),
  386.     (u_long)LSN(bhp->buf).file, (u_long)LSN(bhp->buf).offset,
  387.     (u_long)bhp->priority);
  388. __db_prflags(bhp->flags, fn, fp);
  389. (void)fprintf(fp, "n");
  390. }
  391. /*
  392.  * __memp_stat_hash --
  393.  * Total hash bucket stats (other than mutex wait) into the region.
  394.  *
  395.  * PUBLIC: void __memp_stat_hash __P((REGINFO *, MPOOL *, u_int32_t *));
  396.  */
  397. void
  398. __memp_stat_hash(reginfo, mp, dirtyp)
  399. REGINFO *reginfo;
  400. MPOOL *mp;
  401. u_int32_t *dirtyp;
  402. {
  403. DB_MPOOL_HASH *hp;
  404. u_int32_t dirty;
  405. int i;
  406. hp = R_ADDR(reginfo, mp->htab);
  407. for (i = 0, dirty = 0; i < mp->htab_buckets; i++, hp++)
  408. dirty += hp->hash_page_dirty;
  409. *dirtyp = dirty;
  410. }
  411. /*
  412.  * __memp_stat_wait --
  413.  * Total hash bucket wait stats into the region.
  414.  */
  415. static void
  416. __memp_stat_wait(reginfo, mp, mstat, flags)
  417. REGINFO *reginfo;
  418. MPOOL *mp;
  419. DB_MPOOL_STAT *mstat;
  420. int flags;
  421. {
  422. DB_MPOOL_HASH *hp;
  423. DB_MUTEX *mutexp;
  424. int i;
  425. mstat->st_hash_max_wait = 0;
  426. hp = R_ADDR(reginfo, mp->htab);
  427. for (i = 0; i < mp->htab_buckets; i++, hp++) {
  428. mutexp = &hp->hash_mutex;
  429. mstat->st_hash_nowait += mutexp->mutex_set_nowait;
  430. mstat->st_hash_wait += mutexp->mutex_set_wait;
  431. if (mutexp->mutex_set_wait > mstat->st_hash_max_wait)
  432. mstat->st_hash_max_wait = mutexp->mutex_set_wait;
  433. if (LF_ISSET(DB_STAT_CLEAR)) {
  434. mutexp->mutex_set_wait = 0;
  435. mutexp->mutex_set_nowait = 0;
  436. }
  437. }
  438. }