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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: log_method.c,v 11.14 2000/11/30 00:58:40 ubell Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <stdlib.h>
  14. #include <string.h>
  15. #include <unistd.h>
  16. #endif
  17. #ifdef  HAVE_RPC
  18. #include "db_server.h"
  19. #endif
  20. #include "db_int.h"
  21. #include "log.h"
  22. #ifdef HAVE_RPC
  23. #include "gen_client_ext.h"
  24. #include "rpc_client_ext.h"
  25. #endif
  26. static int __log_set_lg_max __P((DB_ENV *, u_int32_t));
  27. static int __log_set_lg_bsize __P((DB_ENV *, u_int32_t));
  28. static int __log_set_lg_dir __P((DB_ENV *, const char *));
  29. /*
  30.  * __log_dbenv_create --
  31.  * Log specific initialization of the DB_ENV structure.
  32.  *
  33.  * PUBLIC: void __log_dbenv_create __P((DB_ENV *));
  34.  */
  35. void
  36. __log_dbenv_create(dbenv)
  37. DB_ENV *dbenv;
  38. {
  39. dbenv->lg_bsize = LG_BSIZE_DEFAULT;
  40. dbenv->set_lg_bsize = __log_set_lg_bsize;
  41. dbenv->lg_max = LG_MAX_DEFAULT;
  42. dbenv->set_lg_max = __log_set_lg_max;
  43. dbenv->set_lg_dir = __log_set_lg_dir;
  44. #ifdef HAVE_RPC
  45. /*
  46.  * If we have a client, overwrite what we just setup to
  47.  * point to client functions.
  48.  */
  49. if (F_ISSET(dbenv, DB_ENV_RPCCLIENT)) {
  50. dbenv->set_lg_bsize = __dbcl_set_lg_bsize;
  51. dbenv->set_lg_max = __dbcl_set_lg_max;
  52. dbenv->set_lg_dir = __dbcl_set_lg_dir;
  53. }
  54. #endif
  55. }
  56. /*
  57.  * __log_set_lg_bsize --
  58.  * Set the log buffer size.
  59.  */
  60. static int
  61. __log_set_lg_bsize(dbenv, lg_bsize)
  62. DB_ENV *dbenv;
  63. u_int32_t lg_bsize;
  64. {
  65. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_lg_bsize");
  66. /* Let's not be silly. */
  67. if (lg_bsize > dbenv->lg_max / 4) {
  68. __db_err(dbenv, "log buffer size must be <= log file size / 4");
  69. return (EINVAL);
  70. }
  71. dbenv->lg_bsize = lg_bsize;
  72. return (0);
  73. }
  74. /*
  75.  * __log_set_lg_max --
  76.  * Set the maximum log file size.
  77.  */
  78. static int
  79. __log_set_lg_max(dbenv, lg_max)
  80. DB_ENV *dbenv;
  81. u_int32_t lg_max;
  82. {
  83. ENV_ILLEGAL_AFTER_OPEN(dbenv, "set_lg_max");
  84. /* Let's not be silly. */
  85. if (lg_max < dbenv->lg_bsize * 4) {
  86. __db_err(dbenv, "log file size must be >= log buffer size * 4");
  87. return (EINVAL);
  88. }
  89. dbenv->lg_max = lg_max;
  90. return (0);
  91. }
  92. /*
  93.  * __log_set_lg_dir --
  94.  * Set the log file directory.
  95.  */
  96. static int
  97. __log_set_lg_dir(dbenv, dir)
  98. DB_ENV *dbenv;
  99. const char *dir;
  100. {
  101. if (dbenv->db_log_dir != NULL)
  102. __os_freestr(dbenv->db_log_dir);
  103. return (__os_strdup(dbenv, dir, &dbenv->db_log_dir));
  104. }