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

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: txn_stat.c,v 11.15 2002/04/26 23:00:36 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <string.h>
  14. #endif
  15. #include "db_int.h"
  16. #include "dbinc/txn.h"
  17. /*
  18.  * __txn_stat --
  19.  *
  20.  * PUBLIC: int __txn_stat __P((DB_ENV *, DB_TXN_STAT **, u_int32_t));
  21.  */
  22. int
  23. __txn_stat(dbenv, statp, flags)
  24. DB_ENV *dbenv;
  25. DB_TXN_STAT **statp;
  26. u_int32_t flags;
  27. {
  28. DB_TXNMGR *mgr;
  29. DB_TXNREGION *region;
  30. DB_TXN_STAT *stats;
  31. TXN_DETAIL *txnp;
  32. size_t nbytes;
  33. u_int32_t ndx;
  34. int ret;
  35. PANIC_CHECK(dbenv);
  36. ENV_REQUIRES_CONFIG(dbenv, dbenv->tx_handle, "txn_stat", DB_INIT_TXN);
  37. *statp = NULL;
  38. if ((ret = __db_fchk(dbenv,
  39.     "DB_ENV->txn_stat", flags, DB_STAT_CLEAR)) != 0)
  40. return (ret);
  41. mgr = dbenv->tx_handle;
  42. region = mgr->reginfo.primary;
  43. /*
  44.  * Allocate for the maximum active transactions -- the DB_TXN_ACTIVE
  45.  * struct is small and the maximum number of active transactions is
  46.  * not going to be that large.  Don't have to lock anything to look
  47.  * at the region's maximum active transactions value, it's read-only
  48.  * and never changes after the region is created.
  49.  */
  50. nbytes = sizeof(DB_TXN_STAT) + sizeof(DB_TXN_ACTIVE) * region->maxtxns;
  51. if ((ret = __os_umalloc(dbenv, nbytes, &stats)) != 0)
  52. return (ret);
  53. R_LOCK(dbenv, &mgr->reginfo);
  54. memcpy(stats, &region->stat, sizeof(*stats));
  55. stats->st_last_txnid = region->last_txnid;
  56. stats->st_last_ckp = region->last_ckp;
  57. stats->st_time_ckp = region->time_ckp;
  58. stats->st_txnarray = (DB_TXN_ACTIVE *)&stats[1];
  59. ndx = 0;
  60. for (txnp = SH_TAILQ_FIRST(&region->active_txn, __txn_detail);
  61.     txnp != NULL;
  62.     txnp = SH_TAILQ_NEXT(txnp, links, __txn_detail)) {
  63. stats->st_txnarray[ndx].txnid = txnp->txnid;
  64. if (txnp->parent == INVALID_ROFF)
  65. stats->st_txnarray[ndx].parentid = TXN_INVALID;
  66. else
  67. stats->st_txnarray[ndx].parentid =
  68.     ((TXN_DETAIL *)R_ADDR(&mgr->reginfo,
  69.     txnp->parent))->txnid;
  70. stats->st_txnarray[ndx].lsn = txnp->begin_lsn;
  71. ndx++;
  72. }
  73. stats->st_region_wait = mgr->reginfo.rp->mutex.mutex_set_wait;
  74. stats->st_region_nowait = mgr->reginfo.rp->mutex.mutex_set_nowait;
  75. stats->st_regsize = mgr->reginfo.rp->size;
  76. if (LF_ISSET(DB_STAT_CLEAR)) {
  77. mgr->reginfo.rp->mutex.mutex_set_wait = 0;
  78. mgr->reginfo.rp->mutex.mutex_set_nowait = 0;
  79. memset(&region->stat, 0, sizeof(region->stat));
  80. region->stat.st_maxtxns = region->maxtxns;
  81. region->stat.st_maxnactive =
  82.     region->stat.st_nactive = stats->st_nactive;
  83. }
  84. R_UNLOCK(dbenv, &mgr->reginfo);
  85. *statp = stats;
  86. return (0);
  87. }