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

MySQL数据库

开发平台:

Visual C++

  1. /* Do not edit: automatically built by gen_rec.awk. */
  2. #include "db_config.h"
  3. #ifndef NO_SYSTEM_INCLUDES
  4. #include <sys/types.h>
  5. #include <ctype.h>
  6. #include <errno.h>
  7. #include <string.h>
  8. #endif
  9. #include "db_int.h"
  10. #include "db_page.h"
  11. #include "db_dispatch.h"
  12. #include "db_am.h"
  13. #include "log.h"
  14. #include "txn.h"
  15. int
  16. __log_register1_print(dbenv, dbtp, lsnp, notused2, notused3)
  17. DB_ENV *dbenv;
  18. DBT *dbtp;
  19. DB_LSN *lsnp;
  20. db_recops notused2;
  21. void *notused3;
  22. {
  23. __log_register1_args *argp;
  24. u_int32_t i;
  25. u_int ch;
  26. int ret;
  27. i = 0;
  28. ch = 0;
  29. notused2 = DB_TXN_ABORT;
  30. notused3 = NULL;
  31. if ((ret = __log_register1_read(dbenv, dbtp->data, &argp)) != 0)
  32. return (ret);
  33. printf("[%lu][%lu]log_register1: rec: %lu txnid %lx prevlsn [%lu][%lu]n",
  34.     (u_long)lsnp->file,
  35.     (u_long)lsnp->offset,
  36.     (u_long)argp->type,
  37.     (u_long)argp->txnid->txnid,
  38.     (u_long)argp->prev_lsn.file,
  39.     (u_long)argp->prev_lsn.offset);
  40. printf("topcode: %lun", (u_long)argp->opcode);
  41. printf("tname: ");
  42. for (i = 0; i < argp->name.size; i++) {
  43. ch = ((u_int8_t *)argp->name.data)[i];
  44. if (isprint(ch) || ch == 0xa)
  45. putchar(ch);
  46. else
  47. printf("%#x ", ch);
  48. }
  49. printf("n");
  50. printf("tuid: ");
  51. for (i = 0; i < argp->uid.size; i++) {
  52. ch = ((u_int8_t *)argp->uid.data)[i];
  53. if (isprint(ch) || ch == 0xa)
  54. putchar(ch);
  55. else
  56. printf("%#x ", ch);
  57. }
  58. printf("n");
  59. printf("tfileid: %ldn", (long)argp->fileid);
  60. printf("tftype: 0x%lxn", (u_long)argp->ftype);
  61. printf("n");
  62. __os_free(argp, 0);
  63. return (0);
  64. }
  65. int
  66. __log_register1_read(dbenv, recbuf, argpp)
  67. DB_ENV *dbenv;
  68. void *recbuf;
  69. __log_register1_args **argpp;
  70. {
  71. __log_register1_args *argp;
  72. u_int8_t *bp;
  73. int ret;
  74. ret = __os_malloc(dbenv, sizeof(__log_register1_args) +
  75.     sizeof(DB_TXN), NULL, &argp);
  76. if (ret != 0)
  77. return (ret);
  78. argp->txnid = (DB_TXN *)&argp[1];
  79. bp = recbuf;
  80. memcpy(&argp->type, bp, sizeof(argp->type));
  81. bp += sizeof(argp->type);
  82. memcpy(&argp->txnid->txnid,  bp, sizeof(argp->txnid->txnid));
  83. bp += sizeof(argp->txnid->txnid);
  84. memcpy(&argp->prev_lsn, bp, sizeof(DB_LSN));
  85. bp += sizeof(DB_LSN);
  86. memcpy(&argp->opcode, bp, sizeof(argp->opcode));
  87. bp += sizeof(argp->opcode);
  88. memset(&argp->name, 0, sizeof(argp->name));
  89. memcpy(&argp->name.size, bp, sizeof(u_int32_t));
  90. bp += sizeof(u_int32_t);
  91. argp->name.data = bp;
  92. bp += argp->name.size;
  93. memset(&argp->uid, 0, sizeof(argp->uid));
  94. memcpy(&argp->uid.size, bp, sizeof(u_int32_t));
  95. bp += sizeof(u_int32_t);
  96. argp->uid.data = bp;
  97. bp += argp->uid.size;
  98. memcpy(&argp->fileid, bp, sizeof(argp->fileid));
  99. bp += sizeof(argp->fileid);
  100. memcpy(&argp->ftype, bp, sizeof(argp->ftype));
  101. bp += sizeof(argp->ftype);
  102. *argpp = argp;
  103. return (0);
  104. }
  105. int
  106. __log_register_log(dbenv, txnid, ret_lsnp, flags,
  107. opcode, name, uid, fileid, ftype, meta_pgno)
  108. DB_ENV *dbenv;
  109. DB_TXN *txnid;
  110. DB_LSN *ret_lsnp;
  111. u_int32_t flags;
  112. u_int32_t opcode;
  113. const DBT *name;
  114. const DBT *uid;
  115. int32_t fileid;
  116. DBTYPE ftype;
  117. db_pgno_t meta_pgno;
  118. {
  119. DBT logrec;
  120. DB_LSN *lsnp, null_lsn;
  121. u_int32_t zero;
  122. u_int32_t rectype, txn_num;
  123. int ret;
  124. u_int8_t *bp;
  125. rectype = DB_log_register;
  126. if (txnid != NULL &&
  127.     TAILQ_FIRST(&txnid->kids) != NULL &&
  128.     (ret = __txn_activekids(dbenv, rectype, txnid)) != 0)
  129. return (ret);
  130. txn_num = txnid == NULL ? 0 : txnid->txnid;
  131. if (txnid == NULL) {
  132. ZERO_LSN(null_lsn);
  133. lsnp = &null_lsn;
  134. } else
  135. lsnp = &txnid->last_lsn;
  136. logrec.size = sizeof(rectype) + sizeof(txn_num) + sizeof(DB_LSN)
  137.     + sizeof(opcode)
  138.     + sizeof(u_int32_t) + (name == NULL ? 0 : name->size)
  139.     + sizeof(u_int32_t) + (uid == NULL ? 0 : uid->size)
  140.     + sizeof(fileid)
  141.     + sizeof(ftype)
  142.     + sizeof(meta_pgno);
  143. if ((ret = __os_malloc(dbenv, logrec.size, NULL, &logrec.data)) != 0)
  144. return (ret);
  145. bp = logrec.data;
  146. memcpy(bp, &rectype, sizeof(rectype));
  147. bp += sizeof(rectype);
  148. memcpy(bp, &txn_num, sizeof(txn_num));
  149. bp += sizeof(txn_num);
  150. memcpy(bp, lsnp, sizeof(DB_LSN));
  151. bp += sizeof(DB_LSN);
  152. memcpy(bp, &opcode, sizeof(opcode));
  153. bp += sizeof(opcode);
  154. if (name == NULL) {
  155. zero = 0;
  156. memcpy(bp, &zero, sizeof(u_int32_t));
  157. bp += sizeof(u_int32_t);
  158. } else {
  159. memcpy(bp, &name->size, sizeof(name->size));
  160. bp += sizeof(name->size);
  161. memcpy(bp, name->data, name->size);
  162. bp += name->size;
  163. }
  164. if (uid == NULL) {
  165. zero = 0;
  166. memcpy(bp, &zero, sizeof(u_int32_t));
  167. bp += sizeof(u_int32_t);
  168. } else {
  169. memcpy(bp, &uid->size, sizeof(uid->size));
  170. bp += sizeof(uid->size);
  171. memcpy(bp, uid->data, uid->size);
  172. bp += uid->size;
  173. }
  174. memcpy(bp, &fileid, sizeof(fileid));
  175. bp += sizeof(fileid);
  176. memcpy(bp, &ftype, sizeof(ftype));
  177. bp += sizeof(ftype);
  178. memcpy(bp, &meta_pgno, sizeof(meta_pgno));
  179. bp += sizeof(meta_pgno);
  180. DB_ASSERT((u_int32_t)(bp - (u_int8_t *)logrec.data) == logrec.size);
  181. ret = __log_put(dbenv, ret_lsnp, (DBT *)&logrec, flags);
  182. if (txnid != NULL)
  183. txnid->last_lsn = *ret_lsnp;
  184. __os_free(logrec.data, logrec.size);
  185. return (ret);
  186. }
  187. int
  188. __log_register_print(dbenv, dbtp, lsnp, notused2, notused3)
  189. DB_ENV *dbenv;
  190. DBT *dbtp;
  191. DB_LSN *lsnp;
  192. db_recops notused2;
  193. void *notused3;
  194. {
  195. __log_register_args *argp;
  196. u_int32_t i;
  197. u_int ch;
  198. int ret;
  199. i = 0;
  200. ch = 0;
  201. notused2 = DB_TXN_ABORT;
  202. notused3 = NULL;
  203. if ((ret = __log_register_read(dbenv, dbtp->data, &argp)) != 0)
  204. return (ret);
  205. printf("[%lu][%lu]log_register: rec: %lu txnid %lx prevlsn [%lu][%lu]n",
  206.     (u_long)lsnp->file,
  207.     (u_long)lsnp->offset,
  208.     (u_long)argp->type,
  209.     (u_long)argp->txnid->txnid,
  210.     (u_long)argp->prev_lsn.file,
  211.     (u_long)argp->prev_lsn.offset);
  212. printf("topcode: %lun", (u_long)argp->opcode);
  213. printf("tname: ");
  214. for (i = 0; i < argp->name.size; i++) {
  215. ch = ((u_int8_t *)argp->name.data)[i];
  216. if (isprint(ch) || ch == 0xa)
  217. putchar(ch);
  218. else
  219. printf("%#x ", ch);
  220. }
  221. printf("n");
  222. printf("tuid: ");
  223. for (i = 0; i < argp->uid.size; i++) {
  224. ch = ((u_int8_t *)argp->uid.data)[i];
  225. if (isprint(ch) || ch == 0xa)
  226. putchar(ch);
  227. else
  228. printf("%#x ", ch);
  229. }
  230. printf("n");
  231. printf("tfileid: %ldn", (long)argp->fileid);
  232. printf("tftype: 0x%lxn", (u_long)argp->ftype);
  233. printf("tmeta_pgno: %lun", (u_long)argp->meta_pgno);
  234. printf("n");
  235. __os_free(argp, 0);
  236. return (0);
  237. }
  238. int
  239. __log_register_read(dbenv, recbuf, argpp)
  240. DB_ENV *dbenv;
  241. void *recbuf;
  242. __log_register_args **argpp;
  243. {
  244. __log_register_args *argp;
  245. u_int8_t *bp;
  246. int ret;
  247. ret = __os_malloc(dbenv, sizeof(__log_register_args) +
  248.     sizeof(DB_TXN), NULL, &argp);
  249. if (ret != 0)
  250. return (ret);
  251. argp->txnid = (DB_TXN *)&argp[1];
  252. bp = recbuf;
  253. memcpy(&argp->type, bp, sizeof(argp->type));
  254. bp += sizeof(argp->type);
  255. memcpy(&argp->txnid->txnid,  bp, sizeof(argp->txnid->txnid));
  256. bp += sizeof(argp->txnid->txnid);
  257. memcpy(&argp->prev_lsn, bp, sizeof(DB_LSN));
  258. bp += sizeof(DB_LSN);
  259. memcpy(&argp->opcode, bp, sizeof(argp->opcode));
  260. bp += sizeof(argp->opcode);
  261. memset(&argp->name, 0, sizeof(argp->name));
  262. memcpy(&argp->name.size, bp, sizeof(u_int32_t));
  263. bp += sizeof(u_int32_t);
  264. argp->name.data = bp;
  265. bp += argp->name.size;
  266. memset(&argp->uid, 0, sizeof(argp->uid));
  267. memcpy(&argp->uid.size, bp, sizeof(u_int32_t));
  268. bp += sizeof(u_int32_t);
  269. argp->uid.data = bp;
  270. bp += argp->uid.size;
  271. memcpy(&argp->fileid, bp, sizeof(argp->fileid));
  272. bp += sizeof(argp->fileid);
  273. memcpy(&argp->ftype, bp, sizeof(argp->ftype));
  274. bp += sizeof(argp->ftype);
  275. memcpy(&argp->meta_pgno, bp, sizeof(argp->meta_pgno));
  276. bp += sizeof(argp->meta_pgno);
  277. *argpp = argp;
  278. return (0);
  279. }
  280. int
  281. __log_init_print(dbenv)
  282. DB_ENV *dbenv;
  283. {
  284. int ret;
  285. if ((ret = __db_add_recovery(dbenv,
  286.     __log_register1_print, DB_log_register1)) != 0)
  287. return (ret);
  288. if ((ret = __db_add_recovery(dbenv,
  289.     __log_register_print, DB_log_register)) != 0)
  290. return (ret);
  291. return (0);
  292. }
  293. int
  294. __log_init_recover(dbenv)
  295. DB_ENV *dbenv;
  296. {
  297. int ret;
  298. if ((ret = __db_add_recovery(dbenv,
  299.     __deprecated_recover, DB_log_register1)) != 0)
  300. return (ret);
  301. if ((ret = __db_add_recovery(dbenv,
  302.     __log_register_recover, DB_log_register)) != 0)
  303. return (ret);
  304. return (0);
  305. }