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

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 copyright[] =
  10.     "Copyright (c) 1996-2000nSleepycat Software Inc.  All rights reserved.n";
  11. static const char revid[] =
  12.     "$Id: db_archive.c,v 11.18 2001/01/18 18:36:56 bostic Exp $";
  13. #endif
  14. #ifndef NO_SYSTEM_INCLUDES
  15. #include <sys/types.h>
  16. #include <stdlib.h>
  17. #include <stdio.h>
  18. #include <unistd.h>
  19. #endif
  20. #include "db_int.h"
  21. #include "common_ext.h"
  22. int  main __P((int, char *[]));
  23. void  usage __P((void));
  24. void  version_check __P((void));
  25. DB_ENV *dbenv;
  26. const char
  27. *progname = "db_archive"; /* Program name. */
  28. int
  29. main(argc, argv)
  30. int argc;
  31. char *argv[];
  32. {
  33. extern char *optarg;
  34. extern int optind;
  35. u_int32_t flags;
  36. int ch, e_close, exitval, ret, verbose;
  37. char **file, *home, **list;
  38. version_check();
  39. flags = 0;
  40. e_close = exitval = verbose = 0;
  41. home = NULL;
  42. while ((ch = getopt(argc, argv, "ah:lsVv")) != EOF)
  43. switch (ch) {
  44. case 'a':
  45. LF_SET(DB_ARCH_ABS);
  46. break;
  47. case 'h':
  48. home = optarg;
  49. break;
  50. case 'l':
  51. LF_SET(DB_ARCH_LOG);
  52. break;
  53. case 's':
  54. LF_SET(DB_ARCH_DATA);
  55. break;
  56. case 'V':
  57. printf("%sn", db_version(NULL, NULL, NULL));
  58. exit(0);
  59. case 'v':
  60. verbose = 1;
  61. break;
  62. case '?':
  63. default:
  64. usage();
  65. }
  66. argc -= optind;
  67. argv += optind;
  68. if (argc != 0)
  69. usage();
  70. /* Handle possible interruptions. */
  71. __db_util_siginit();
  72. /*
  73.  * Create an environment object and initialize it for error
  74.  * reporting.
  75.  */
  76. if ((ret = db_env_create(&dbenv, 0)) != 0) {
  77. fprintf(stderr,
  78.     "%s: db_env_create: %sn", progname, db_strerror(ret));
  79. goto shutdown;
  80. }
  81. e_close = 1;
  82. dbenv->set_errfile(dbenv, stderr);
  83. dbenv->set_errpfx(dbenv, progname);
  84. if (verbose)
  85. (void)dbenv->set_verbose(dbenv, DB_VERB_CHKPOINT, 1);
  86. /*
  87.  * If attaching to a pre-existing environment fails, create a
  88.  * private one and try again.
  89.  */
  90. if ((ret = dbenv->open(dbenv,
  91.     home, DB_JOINENV | DB_USE_ENVIRON, 0)) != 0 &&
  92.     (ret = dbenv->open(dbenv, home, DB_CREATE |
  93.     DB_INIT_LOG | DB_INIT_TXN | DB_PRIVATE | DB_USE_ENVIRON, 0)) != 0) {
  94. dbenv->err(dbenv, ret, "open");
  95. goto shutdown;
  96. }
  97. /* Get the list of names. */
  98. if ((ret = log_archive(dbenv, &list, flags, NULL)) != 0) {
  99. dbenv->err(dbenv, ret, "log_archive");
  100. goto shutdown;
  101. }
  102. /* Print the list of names. */
  103. if (list != NULL) {
  104. for (file = list; *file != NULL; ++file)
  105. printf("%sn", *file);
  106. __os_free(list, 0);
  107. }
  108. if (0) {
  109. shutdown: exitval = 1;
  110. }
  111. if (e_close && (ret = dbenv->close(dbenv, 0)) != 0) {
  112. exitval = 1;
  113. fprintf(stderr,
  114.     "%s: dbenv->close: %sn", progname, db_strerror(ret));
  115. }
  116. /* Resend any caught signal. */
  117. __db_util_sigresend();
  118. return (exitval);
  119. }
  120. void
  121. usage()
  122. {
  123. (void)fprintf(stderr, "usage: db_archive [-alsVv] [-h home]n");
  124. exit (1);
  125. }
  126. void
  127. version_check()
  128. {
  129. int v_major, v_minor, v_patch;
  130. /* Make sure we're loaded with the right version of the DB library. */
  131. (void)db_version(&v_major, &v_minor, &v_patch);
  132. if (v_major != DB_VERSION_MAJOR ||
  133.     v_minor != DB_VERSION_MINOR || v_patch != DB_VERSION_PATCH) {
  134. fprintf(stderr,
  135. "%s: version %d.%d.%d doesn't match library version %d.%d.%dn",
  136.     progname, DB_VERSION_MAJOR, DB_VERSION_MINOR,
  137.     DB_VERSION_PATCH, v_major, v_minor, v_patch);
  138. exit (1);
  139. }
  140. }