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

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_dump.c,v 11.41 2001/01/18 18:36:57 bostic Exp $";
  13. #endif
  14. #ifndef NO_SYSTEM_INCLUDES
  15. #include <sys/types.h>
  16. #include <stdio.h>
  17. #include <stdlib.h>
  18. #include <string.h>
  19. #include <unistd.h>
  20. #endif
  21. #include "db_int.h"
  22. #include "db_page.h"
  23. #include "db_shash.h"
  24. #include "btree.h"
  25. #include "hash.h"
  26. #include "lock.h"
  27. void  configure __P((char *));
  28. int  db_init __P((char *));
  29. int  dump __P((DB *, int, int));
  30. int  dump_sub __P((DB *, char *, int, int));
  31. int  is_sub __P((DB *, int *));
  32. int  main __P((int, char *[]));
  33. int  show_subs __P((DB *));
  34. void  usage __P((void));
  35. void  version_check __P((void));
  36. DB_ENV *dbenv;
  37. const char
  38. *progname = "db_dump"; /* Program name. */
  39. int
  40. main(argc, argv)
  41. int argc;
  42. char *argv[];
  43. {
  44. extern char *optarg;
  45. extern int optind;
  46. DB *dbp;
  47. int ch, d_close;
  48. int e_close, exitval;
  49. int lflag, nflag, pflag, ret, rflag, Rflag, subs, keyflag;
  50. char *dopt, *home, *subname;
  51. version_check();
  52. dbp = NULL;
  53. d_close = e_close = exitval = lflag = nflag = pflag = rflag = Rflag = 0;
  54. keyflag = 0;
  55. dopt = home = subname = NULL;
  56. while ((ch = getopt(argc, argv, "d:f:h:klNprRs:V")) != EOF)
  57. switch (ch) {
  58. case 'd':
  59. dopt = optarg;
  60. break;
  61. case 'f':
  62. if (freopen(optarg, "w", stdout) == NULL) {
  63. fprintf(stderr, "%s: %s: reopen: %sn",
  64.     progname, optarg, strerror(errno));
  65. exit (1);
  66. }
  67. break;
  68. case 'h':
  69. home = optarg;
  70. break;
  71. case 'k':
  72. keyflag = 1;
  73. break;
  74. case 'l':
  75. lflag = 1;
  76. break;
  77. case 'N':
  78. nflag = 1;
  79. if ((ret = db_env_set_panicstate(0)) != 0) {
  80. fprintf(stderr,
  81.     "%s: db_env_set_panicstate: %sn",
  82.     progname, db_strerror(ret));
  83. return (1);
  84. }
  85. break;
  86. case 'p':
  87. pflag = 1;
  88. break;
  89. case 's':
  90. subname = optarg;
  91. break;
  92. case 'R':
  93. Rflag = 1;
  94. /* DB_AGGRESSIVE requires DB_SALVAGE */
  95. /* FALLTHROUGH */
  96. case 'r':
  97. rflag = 1;
  98. break;
  99. case 'V':
  100. printf("%sn", db_version(NULL, NULL, NULL));
  101. exit(0);
  102. case '?':
  103. default:
  104. usage();
  105. }
  106. argc -= optind;
  107. argv += optind;
  108. if (argc != 1)
  109. usage();
  110. if (dopt != NULL && pflag) {
  111. fprintf(stderr,
  112.     "%s: the -d and -p options may not both be specifiedn",
  113.     progname);
  114. exit (1);
  115. }
  116. if (lflag && subname != NULL) {
  117. fprintf(stderr,
  118.     "%s: the -l and -s options may not both be specifiedn",
  119.     progname);
  120. exit (1);
  121. }
  122. if (keyflag && rflag) {
  123. fprintf(stderr, "%s: %s",
  124.     "the -k and -r or -R options may not both be specifiedn",
  125.     progname);
  126. exit(1);
  127. }
  128. if (subname != NULL && rflag) {
  129. fprintf(stderr, "%s: %s",
  130.     "the -s and -r or R options may not both be specifiedn",
  131.     progname);
  132. exit(1);
  133. }
  134. /* Handle possible interruptions. */
  135. __db_util_siginit();
  136. /*
  137.  * Create an environment object and initialize it for error
  138.  * reporting.
  139.  */
  140. if ((ret = db_env_create(&dbenv, 0)) != 0) {
  141. fprintf(stderr,
  142.     "%s: db_env_create: %sn", progname, db_strerror(ret));
  143. goto err;
  144. }
  145. e_close = 1;
  146. dbenv->set_errfile(dbenv, stderr);
  147. dbenv->set_errpfx(dbenv, progname);
  148. if (nflag && (ret = dbenv->set_mutexlocks(dbenv, 0)) != 0) {
  149. dbenv->err(dbenv, ret, "set_mutexlocks");
  150. goto err;
  151. }
  152. /* Initialize the environment. */
  153. if (db_init(home) != 0)
  154. goto err;
  155. /* Create the DB object and open the file. */
  156. if ((ret = db_create(&dbp, dbenv, 0)) != 0) {
  157. dbenv->err(dbenv, ret, "db_create");
  158. goto err;
  159. }
  160. d_close = 1;
  161. /*
  162.  * If we're salvaging, don't do an open;  it might not be safe.
  163.  * Dispatch now into the salvager.
  164.  */
  165. if (rflag) {
  166. if ((ret = dbp->verify(dbp, argv[0], NULL, stdout,
  167.     DB_SALVAGE | (Rflag ? DB_AGGRESSIVE : 0))) != 0)
  168. goto err;
  169. exitval = 0;
  170. goto done;
  171. }
  172. if ((ret = dbp->open(dbp,
  173.     argv[0], subname, DB_UNKNOWN, DB_RDONLY, 0)) != 0) {
  174. dbp->err(dbp, ret, "open: %s", argv[0]);
  175. goto err;
  176. }
  177. if (dopt != NULL) {
  178. if (__db_dump(dbp, dopt, NULL)) {
  179. dbp->err(dbp, ret, "__db_dump: %s", argv[0]);
  180. goto err;
  181. }
  182. } else if (lflag) {
  183. if (is_sub(dbp, &subs))
  184. goto err;
  185. if (subs == 0) {
  186. dbp->errx(dbp,
  187.     "%s: does not contain multiple databases", argv[0]);
  188. goto err;
  189. }
  190. if (show_subs(dbp))
  191. goto err;
  192. } else {
  193. subs = 0;
  194. if (subname == NULL && is_sub(dbp, &subs))
  195. goto err;
  196. if (subs) {
  197. if (dump_sub(dbp, argv[0], pflag, keyflag))
  198. goto err;
  199. } else
  200. if (__db_prheader(dbp, NULL, pflag, keyflag, stdout,
  201.     __db_verify_callback, NULL, 0) ||
  202.     dump(dbp, pflag, keyflag))
  203. goto err;
  204. }
  205. if (0) {
  206. err: exitval = 1;
  207. }
  208. done: if (d_close && (ret = dbp->close(dbp, 0)) != 0) {
  209. exitval = 1;
  210. dbp->err(dbp, ret, "close");
  211. }
  212. if (e_close && (ret = dbenv->close(dbenv, 0)) != 0) {
  213. exitval = 1;
  214. fprintf(stderr,
  215.     "%s: dbenv->close: %sn", progname, db_strerror(ret));
  216. }
  217. /* Resend any caught signal. */
  218. __db_util_sigresend();
  219. return (exitval);
  220. }
  221. /*
  222.  * db_init --
  223.  * Initialize the environment.
  224.  */
  225. int
  226. db_init(home)
  227. char *home;
  228. {
  229. int ret;
  230. /*
  231.  * Try and use the underlying environment when opening a database.  We
  232.  * wish to use the buffer pool so our information is as up-to-date as
  233.  * possible, even if the mpool cache hasn't been flushed;  we wish to
  234.  * use the locking system, if present, so that we are safe to use with
  235.  * transactions.  (We don't need to use transactions explicitly, as
  236.  * we're read-only.)
  237.  *
  238.  * Note that in CDB, too, this will configure our environment
  239.  * appropriately, and our cursors will (correctly) do locking as CDB
  240.  * read cursors.
  241.  */
  242. if (dbenv->open(dbenv, home, DB_JOINENV | DB_USE_ENVIRON, 0) == 0)
  243. return (0);
  244. /*
  245.  * An environment is required because we may be trying to look at
  246.  * databases in directories other than the current one.  We could
  247.  * avoid using an environment iff the -h option wasn't specified,
  248.  * but that seems like more work than it's worth.
  249.  *
  250.  * No environment exists (or, at least no environment that includes
  251.  * an mpool region exists).  Create one, but make it private so that
  252.  * no files are actually created.
  253.  */
  254. if ((ret = dbenv->open(dbenv, home,
  255.     DB_CREATE | DB_INIT_MPOOL | DB_PRIVATE | DB_USE_ENVIRON, 0)) == 0)
  256. return (0);
  257. /* An environment is required. */
  258. dbenv->err(dbenv, ret, "open");
  259. return (1);
  260. }
  261. /*
  262.  * is_sub --
  263.  * Return if the database contains subdatabases.
  264.  */
  265. int
  266. is_sub(dbp, yesno)
  267. DB *dbp;
  268. int *yesno;
  269. {
  270. DB_BTREE_STAT *btsp;
  271. DB_HASH_STAT *hsp;
  272. int ret;
  273. switch (dbp->type) {
  274. case DB_BTREE:
  275. case DB_RECNO:
  276. if ((ret = dbp->stat(dbp, &btsp, NULL, 0)) != 0) {
  277. dbp->err(dbp, ret, "DB->stat");
  278. return (ret);
  279. }
  280. *yesno = btsp->bt_metaflags & BTM_SUBDB ? 1 : 0;
  281. break;
  282. case DB_HASH:
  283. if ((ret = dbp->stat(dbp, &hsp, NULL, 0)) != 0) {
  284. dbp->err(dbp, ret, "DB->stat");
  285. return (ret);
  286. }
  287. *yesno = hsp->hash_metaflags & DB_HASH_SUBDB ? 1 : 0;
  288. break;
  289. case DB_QUEUE:
  290. break;
  291. default:
  292. dbp->errx(dbp, "unknown database type");
  293. return (1);
  294. }
  295. return (0);
  296. }
  297. /*
  298.  * dump_sub --
  299.  * Dump out the records for a DB containing subdatabases.
  300.  */
  301. int
  302. dump_sub(parent_dbp, parent_name, pflag, keyflag)
  303. DB *parent_dbp;
  304. char *parent_name;
  305. int pflag, keyflag;
  306. {
  307. DB *dbp;
  308. DBC *dbcp;
  309. DBT key, data;
  310. int ret;
  311. char *subdb;
  312. /*
  313.  * Get a cursor and step through the database, dumping out each
  314.  * subdatabase.
  315.  */
  316. if ((ret = parent_dbp->cursor(parent_dbp, NULL, &dbcp, 0)) != 0) {
  317. dbenv->err(dbenv, ret, "DB->cursor");
  318. return (1);
  319. }
  320. memset(&key, 0, sizeof(key));
  321. memset(&data, 0, sizeof(data));
  322. while ((ret = dbcp->c_get(dbcp, &key, &data, DB_NEXT)) == 0) {
  323. /* Nul terminate the subdatabase name. */
  324. if ((subdb = malloc(key.size + 1)) == NULL) {
  325. dbenv->err(dbenv, ENOMEM, NULL);
  326. return (1);
  327. }
  328. memcpy(subdb, key.data, key.size);
  329. subdb[key.size] = '';
  330. /* Create the DB object and open the file. */
  331. if ((ret = db_create(&dbp, dbenv, 0)) != 0) {
  332. dbenv->err(dbenv, ret, "db_create");
  333. free(subdb);
  334. return (1);
  335. }
  336. if ((ret = dbp->open(dbp,
  337.     parent_name, subdb, DB_UNKNOWN, DB_RDONLY, 0)) != 0)
  338. dbp->err(dbp, ret,
  339.     "DB->open: %s:%s", parent_name, subdb);
  340. if (ret == 0 &&
  341.     (__db_prheader(dbp, subdb, pflag, keyflag, stdout,
  342.     __db_verify_callback, NULL, 0) ||
  343.     dump(dbp, pflag, keyflag)))
  344. ret = 1;
  345. (void)dbp->close(dbp, 0);
  346. free(subdb);
  347. if (ret != 0)
  348. return (1);
  349. }
  350. if (ret != DB_NOTFOUND) {
  351. dbp->err(dbp, ret, "DBcursor->get");
  352. return (1);
  353. }
  354. if ((ret = dbcp->c_close(dbcp)) != 0) {
  355. dbp->err(dbp, ret, "DBcursor->close");
  356. return (1);
  357. }
  358. return (0);
  359. }
  360. /*
  361.  * show_subs --
  362.  * Display the subdatabases for a database.
  363.  */
  364. int
  365. show_subs(dbp)
  366. DB *dbp;
  367. {
  368. DBC *dbcp;
  369. DBT key, data;
  370. int ret;
  371. /*
  372.  * Get a cursor and step through the database, printing out the key
  373.  * of each key/data pair.
  374.  */
  375. if ((ret = dbp->cursor(dbp, NULL, &dbcp, 0)) != 0) {
  376. dbp->err(dbp, ret, "DB->cursor");
  377. return (1);
  378. }
  379. memset(&key, 0, sizeof(key));
  380. memset(&data, 0, sizeof(data));
  381. while ((ret = dbcp->c_get(dbcp, &key, &data, DB_NEXT)) == 0) {
  382. if ((ret = __db_prdbt(&key, 1, NULL, stdout,
  383.     __db_verify_callback, 0, NULL)) != 0) {
  384. dbp->errx(dbp, NULL);
  385. return (1);
  386. }
  387. }
  388. if (ret != DB_NOTFOUND) {
  389. dbp->err(dbp, ret, "DBcursor->get");
  390. return (1);
  391. }
  392. if ((ret = dbcp->c_close(dbcp)) != 0) {
  393. dbp->err(dbp, ret, "DBcursor->close");
  394. return (1);
  395. }
  396. return (0);
  397. }
  398. /*
  399.  * dump --
  400.  * Dump out the records for a DB.
  401.  */
  402. int
  403. dump(dbp, pflag, keyflag)
  404. DB *dbp;
  405. int pflag, keyflag;
  406. {
  407. DBC *dbcp;
  408. DBT key, data;
  409. int ret, is_recno;
  410. /*
  411.  * Get a cursor and step through the database, printing out each
  412.  * key/data pair.
  413.  */
  414. if ((ret = dbp->cursor(dbp, NULL, &dbcp, 0)) != 0) {
  415. dbp->err(dbp, ret, "DB->cursor");
  416. return (1);
  417. }
  418. memset(&key, 0, sizeof(key));
  419. memset(&data, 0, sizeof(data));
  420. is_recno = (dbp->type == DB_RECNO || dbp->type == DB_QUEUE);
  421. keyflag = is_recno ? keyflag : 1;
  422. while ((ret = dbcp->c_get(dbcp, &key, &data, DB_NEXT)) == 0)
  423. if ((keyflag && (ret = __db_prdbt(&key,
  424.     pflag, " ", stdout, __db_verify_callback,
  425.     is_recno, NULL)) != 0) || (ret =
  426.     __db_prdbt(&data, pflag, " ", stdout,
  427. __db_verify_callback, 0, NULL)) != 0) {
  428. dbp->errx(dbp, NULL);
  429. return (1);
  430. }
  431. if (ret != DB_NOTFOUND) {
  432. dbp->err(dbp, ret, "DBcursor->get");
  433. return (1);
  434. }
  435. if ((ret = dbcp->c_close(dbcp)) != 0) {
  436. dbp->err(dbp, ret, "DBcursor->close");
  437. return (1);
  438. }
  439. (void)__db_prfooter(stdout, __db_verify_callback);
  440. return (0);
  441. }
  442. /*
  443.  * usage --
  444.  * Display the usage message.
  445.  */
  446. void
  447. usage()
  448. {
  449. (void)fprintf(stderr, "usage: %sn",
  450. "db_dump [-klNprRV] [-d ahr] [-f output] [-h home] [-s database] db_file");
  451. exit(1);
  452. }
  453. void
  454. version_check()
  455. {
  456. int v_major, v_minor, v_patch;
  457. /* Make sure we're loaded with the right version of the DB library. */
  458. (void)db_version(&v_major, &v_minor, &v_patch);
  459. if (v_major != DB_VERSION_MAJOR ||
  460.     v_minor != DB_VERSION_MINOR || v_patch != DB_VERSION_PATCH) {
  461. fprintf(stderr,
  462. "%s: version %d.%d.%d doesn't match library version %d.%d.%dn",
  463.     progname, DB_VERSION_MAJOR, DB_VERSION_MINOR,
  464.     DB_VERSION_PATCH, v_major, v_minor, v_patch);
  465. exit (1);
  466. }
  467. }