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

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 copyright[] =
  10.     "Copyright (c) 1996-2002nSleepycat Software Inc.  All rights reserved.n";
  11. static const char revid[] =
  12.     "$Id: db_checkpoint.c,v 11.46 2002/08/08 03:50:31 bostic Exp $";
  13. #endif
  14. #ifndef NO_SYSTEM_INCLUDES
  15. #include <sys/types.h>
  16. #if TIME_WITH_SYS_TIME
  17. #include <sys/time.h>
  18. #include <time.h>
  19. #else
  20. #if HAVE_SYS_TIME_H
  21. #include <sys/time.h>
  22. #else
  23. #include <time.h>
  24. #endif
  25. #endif
  26. #include <limits.h>
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #include <unistd.h>
  31. #endif
  32. #include "db_int.h"
  33. #include "dbinc/db_page.h"
  34. #include "dbinc/db_am.h"
  35. int  main __P((int, char *[]));
  36. int  usage __P((void));
  37. int  version_check __P((const char *));
  38. int
  39. main(argc, argv)
  40. int argc;
  41. char *argv[];
  42. {
  43. extern char *optarg;
  44. extern int optind;
  45. DB_ENV *dbenv;
  46. const char *progname = "db_checkpoint";
  47. time_t now;
  48. long argval;
  49. u_int32_t flags, kbytes, minutes, seconds;
  50. int ch, e_close, exitval, once, ret, verbose;
  51. char *home, *logfile, *passwd;
  52. if ((ret = version_check(progname)) != 0)
  53. return (ret);
  54. /*
  55.  * !!!
  56.  * Don't allow a fully unsigned 32-bit number, some compilers get
  57.  * upset and require it to be specified in hexadecimal and so on.
  58.  */
  59. #define MAX_UINT32_T 2147483647
  60. kbytes = minutes = 0;
  61. e_close = exitval = once = verbose = 0;
  62. flags = 0;
  63. home = logfile = passwd = NULL;
  64. while ((ch = getopt(argc, argv, "1h:k:L:P:p:Vv")) != EOF)
  65. switch (ch) {
  66. case '1':
  67. once = 1;
  68. flags = DB_FORCE;
  69. break;
  70. case 'h':
  71. home = optarg;
  72. break;
  73. case 'k':
  74. if (__db_getlong(NULL, progname,
  75.     optarg, 1, (long)MAX_UINT32_T, &argval))
  76. return (EXIT_FAILURE);
  77. kbytes = argval;
  78. break;
  79. case 'L':
  80. logfile = optarg;
  81. break;
  82. case 'P':
  83. passwd = strdup(optarg);
  84. memset(optarg, 0, strlen(optarg));
  85. if (passwd == NULL) {
  86. fprintf(stderr, "%s: strdup: %sn",
  87.     progname, strerror(errno));
  88. return (EXIT_FAILURE);
  89. }
  90. break;
  91. case 'p':
  92. if (__db_getlong(NULL, progname,
  93.     optarg, 1, (long)MAX_UINT32_T, &argval))
  94. return (EXIT_FAILURE);
  95. minutes = argval;
  96. break;
  97. case 'V':
  98. printf("%sn", db_version(NULL, NULL, NULL));
  99. return (EXIT_SUCCESS);
  100. case 'v':
  101. verbose = 1;
  102. break;
  103. case '?':
  104. default:
  105. return (usage());
  106. }
  107. argc -= optind;
  108. argv += optind;
  109. if (argc != 0)
  110. return (usage());
  111. if (once == 0 && kbytes == 0 && minutes == 0) {
  112. (void)fprintf(stderr,
  113.     "%s: at least one of -1, -k and -p must be specifiedn",
  114.     progname);
  115. return (EXIT_FAILURE);
  116. }
  117. /* Handle possible interruptions. */
  118. __db_util_siginit();
  119. /* Log our process ID. */
  120. if (logfile != NULL && __db_util_logset(progname, logfile))
  121. goto shutdown;
  122. /*
  123.  * Create an environment object and initialize it for error
  124.  * reporting.
  125.  */
  126. if ((ret = db_env_create(&dbenv, 0)) != 0) {
  127. fprintf(stderr,
  128.     "%s: db_env_create: %sn", progname, db_strerror(ret));
  129. goto shutdown;
  130. }
  131. e_close = 1;
  132. dbenv->set_errfile(dbenv, stderr);
  133. dbenv->set_errpfx(dbenv, progname);
  134. if (passwd != NULL && (ret = dbenv->set_encrypt(dbenv,
  135.     passwd, DB_ENCRYPT_AES)) != 0) {
  136. dbenv->err(dbenv, ret, "set_passwd");
  137. goto shutdown;
  138. }
  139. /* Initialize the environment. */
  140. if ((ret = dbenv->open(dbenv,
  141.     home, DB_JOINENV | DB_USE_ENVIRON, 0)) != 0) {
  142. dbenv->err(dbenv, ret, "open");
  143. goto shutdown;
  144. }
  145. /* Register the standard pgin/pgout functions, in case we do I/O. */
  146. if ((ret = dbenv->memp_register(
  147.     dbenv, DB_FTYPE_SET, __db_pgin, __db_pgout)) != 0) {
  148. dbenv->err(dbenv, ret,
  149.     "DB_ENV->memp_register: failed to register access method functions");
  150. goto shutdown;
  151. }
  152. /*
  153.  * If we have only a time delay, then we'll sleep the right amount
  154.  * to wake up when a checkpoint is necessary.  If we have a "kbytes"
  155.  * field set, then we'll check every 30 seconds.
  156.  */
  157. seconds = kbytes != 0 ? 30 : minutes * 60;
  158. while (!__db_util_interrupted()) {
  159. if (verbose) {
  160. (void)time(&now);
  161. dbenv->errx(dbenv, "checkpoint: %s", ctime(&now));
  162. }
  163. if ((ret = dbenv->txn_checkpoint(dbenv,
  164.     kbytes, minutes, flags)) != 0) {
  165. dbenv->err(dbenv, ret, "txn_checkpoint");
  166. goto shutdown;
  167. }
  168. if (once)
  169. break;
  170. (void)__os_sleep(dbenv, seconds, 0);
  171. }
  172. if (0) {
  173. shutdown: exitval = 1;
  174. }
  175. /* Clean up the logfile. */
  176. if (logfile != NULL)
  177. remove(logfile);
  178. /* Clean up the environment. */
  179. if (e_close && (ret = dbenv->close(dbenv, 0)) != 0) {
  180. exitval = 1;
  181. fprintf(stderr,
  182.     "%s: dbenv->close: %sn", progname, db_strerror(ret));
  183. }
  184. /* Resend any caught signal. */
  185. __db_util_sigresend();
  186. return (exitval == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
  187. }
  188. int
  189. usage()
  190. {
  191. (void)fprintf(stderr, "%snt%sn",
  192.     "usage: db_checkpoint [-1Vv]",
  193.     "[-h home] [-k kbytes] [-L file] [-P password] [-p min]");
  194. return (EXIT_FAILURE);
  195. }
  196. int
  197. version_check(progname)
  198. const char *progname;
  199. {
  200. int v_major, v_minor, v_patch;
  201. /* Make sure we're loaded with the right version of the DB library. */
  202. (void)db_version(&v_major, &v_minor, &v_patch);
  203. if (v_major != DB_VERSION_MAJOR ||
  204.     v_minor != DB_VERSION_MINOR || v_patch != DB_VERSION_PATCH) {
  205. fprintf(stderr,
  206. "%s: version %d.%d.%d doesn't match library version %d.%d.%dn",
  207.     progname, DB_VERSION_MAJOR, DB_VERSION_MINOR,
  208.     DB_VERSION_PATCH, v_major, v_minor, v_patch);
  209. return (EXIT_FAILURE);
  210. }
  211. return (0);
  212. }