crdel_auto.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小: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 <string.h>
  7. #endif
  8. #include "db_int.h"
  9. #include "dbinc/crypto.h"
  10. #include "dbinc/db_page.h"
  11. #include "dbinc/db_dispatch.h"
  12. #include "dbinc/db_am.h"
  13. #include "dbinc/log.h"
  14. #include "dbinc/rep.h"
  15. #include "dbinc/txn.h"
  16. /*
  17.  * PUBLIC: int __crdel_metasub_log __P((DB *, DB_TXN *, DB_LSN *,
  18.  * PUBLIC:     u_int32_t, db_pgno_t, const DBT *, DB_LSN *));
  19.  */
  20. int
  21. __crdel_metasub_log(dbp, txnid, ret_lsnp, flags, pgno, page, lsn)
  22. DB *dbp;
  23. DB_TXN *txnid;
  24. DB_LSN *ret_lsnp;
  25. u_int32_t flags;
  26. db_pgno_t pgno;
  27. const DBT *page;
  28. DB_LSN * lsn;
  29. {
  30. DBT logrec;
  31. DB_ENV *dbenv;
  32. DB_LSN *lsnp, null_lsn;
  33. u_int32_t zero;
  34. u_int32_t uinttmp;
  35. u_int32_t npad, rectype, txn_num;
  36. int ret;
  37. u_int8_t *bp;
  38. dbenv = dbp->dbenv;
  39. rectype = DB___crdel_metasub;
  40. npad = 0;
  41. if (txnid == NULL) {
  42. txn_num = 0;
  43. null_lsn.file = 0;
  44. null_lsn.offset = 0;
  45. lsnp = &null_lsn;
  46. } else {
  47. if (TAILQ_FIRST(&txnid->kids) != NULL &&
  48.     (ret = __txn_activekids(dbenv, rectype, txnid)) != 0)
  49. return (ret);
  50. txn_num = txnid->txnid;
  51. lsnp = &txnid->last_lsn;
  52. }
  53. logrec.size = sizeof(rectype) + sizeof(txn_num) + sizeof(DB_LSN)
  54.     + sizeof(u_int32_t)
  55.     + sizeof(u_int32_t)
  56.     + sizeof(u_int32_t) + (page == NULL ? 0 : page->size)
  57.     + sizeof(*lsn);
  58. if (CRYPTO_ON(dbenv)) {
  59. npad =
  60.     ((DB_CIPHER *)dbenv->crypto_handle)->adj_size(logrec.size);
  61. logrec.size += npad;
  62. }
  63. if ((ret = __os_malloc(dbenv,
  64.     logrec.size, &logrec.data)) != 0)
  65. return (ret);
  66. if (npad > 0)
  67. memset((u_int8_t *)logrec.data + logrec.size - npad, 0, npad);
  68. bp = logrec.data;
  69. memcpy(bp, &rectype, sizeof(rectype));
  70. bp += sizeof(rectype);
  71. memcpy(bp, &txn_num, sizeof(txn_num));
  72. bp += sizeof(txn_num);
  73. memcpy(bp, lsnp, sizeof(DB_LSN));
  74. bp += sizeof(DB_LSN);
  75. DB_ASSERT(dbp->log_filename != NULL);
  76. if (dbp->log_filename->id == DB_LOGFILEID_INVALID &&
  77.     (ret = __dbreg_lazy_id(dbp)) != 0)
  78. return (ret);
  79. uinttmp = (u_int32_t)dbp->log_filename->id;
  80. memcpy(bp, &uinttmp, sizeof(uinttmp));
  81. bp += sizeof(uinttmp);
  82. uinttmp = (u_int32_t)pgno;
  83. memcpy(bp, &uinttmp, sizeof(uinttmp));
  84. bp += sizeof(uinttmp);
  85. if (page == NULL) {
  86. zero = 0;
  87. memcpy(bp, &zero, sizeof(u_int32_t));
  88. bp += sizeof(u_int32_t);
  89. } else {
  90. memcpy(bp, &page->size, sizeof(page->size));
  91. bp += sizeof(page->size);
  92. memcpy(bp, page->data, page->size);
  93. bp += page->size;
  94. }
  95. if (lsn != NULL)
  96. memcpy(bp, lsn, sizeof(*lsn));
  97. else
  98. memset(bp, 0, sizeof(*lsn));
  99. bp += sizeof(*lsn);
  100. DB_ASSERT((u_int32_t)(bp - (u_int8_t *)logrec.data) <= logrec.size);
  101. ret = dbenv->log_put(dbenv,
  102.    ret_lsnp, (DBT *)&logrec, flags | DB_NOCOPY);
  103. if (txnid != NULL && ret == 0)
  104. txnid->last_lsn = *ret_lsnp;
  105. #ifdef LOG_DIAGNOSTIC
  106. if (ret != 0)
  107. (void)__crdel_metasub_print(dbenv,
  108.     (DBT *)&logrec, ret_lsnp, NULL, NULL);
  109. #endif
  110. __os_free(dbenv, logrec.data);
  111. return (ret);
  112. }
  113. /*
  114.  * PUBLIC: int __crdel_metasub_getpgnos __P((DB_ENV *, DBT *,
  115.  * PUBLIC:     DB_LSN *, db_recops, void *));
  116.  */
  117. int
  118. __crdel_metasub_getpgnos(dbenv, rec, lsnp, notused1, summary)
  119. DB_ENV *dbenv;
  120. DBT *rec;
  121. DB_LSN *lsnp;
  122. db_recops notused1;
  123. void *summary;
  124. {
  125. DB *dbp;
  126. TXN_RECS *t;
  127. __crdel_metasub_args *argp;
  128. u_int32_t ret;
  129. COMPQUIET(notused1, DB_TXN_ABORT);
  130. argp = NULL;
  131. t = (TXN_RECS *)summary;
  132. if ((ret = __crdel_metasub_read(dbenv, rec->data, &argp)) != 0)
  133. return (ret);
  134. if ((ret = __dbreg_id_to_db(dbenv,
  135.     argp->txnid, &dbp, argp->fileid, 0)) != 0)
  136. goto err;
  137. if ((ret = __rep_check_alloc(dbenv, t, 1)) != 0)
  138. goto err;
  139. t->array[t->npages].flags = 0;
  140. t->array[t->npages].fid = argp->fileid;
  141. t->array[t->npages].lsn = *lsnp;
  142. t->array[t->npages].pgdesc.pgno = argp->pgno;
  143. t->array[t->npages].pgdesc.type = DB_PAGE_LOCK;
  144. memcpy(t->array[t->npages].pgdesc.fileid, dbp->fileid,
  145.     DB_FILE_ID_LEN);
  146. t->npages++;
  147. err: if (argp != NULL)
  148. __os_free(dbenv, argp);
  149. return (ret);
  150. }
  151. /*
  152.  * PUBLIC: int __crdel_metasub_print __P((DB_ENV *, DBT *, DB_LSN *,
  153.  * PUBLIC:     db_recops, void *));
  154.  */
  155. int
  156. __crdel_metasub_print(dbenv, dbtp, lsnp, notused2, notused3)
  157. DB_ENV *dbenv;
  158. DBT *dbtp;
  159. DB_LSN *lsnp;
  160. db_recops notused2;
  161. void *notused3;
  162. {
  163. __crdel_metasub_args *argp;
  164. u_int32_t i;
  165. int ch;
  166. int ret;
  167. notused2 = DB_TXN_ABORT;
  168. notused3 = NULL;
  169. if ((ret = __crdel_metasub_read(dbenv, dbtp->data, &argp)) != 0)
  170. return (ret);
  171. (void)printf(
  172.     "[%lu][%lu]__crdel_metasub: rec: %lu txnid %lx prevlsn [%lu][%lu]n",
  173.     (u_long)lsnp->file,
  174.     (u_long)lsnp->offset,
  175.     (u_long)argp->type,
  176.     (u_long)argp->txnid->txnid,
  177.     (u_long)argp->prev_lsn.file,
  178.     (u_long)argp->prev_lsn.offset);
  179. (void)printf("tfileid: %ldn", (long)argp->fileid);
  180. (void)printf("tpgno: %lun", (u_long)argp->pgno);
  181. (void)printf("tpage: ");
  182. for (i = 0; i < argp->page.size; i++) {
  183. ch = ((u_int8_t *)argp->page.data)[i];
  184. printf(isprint(ch) || ch == 0x0a ? "%c" : "%#x ", ch);
  185. }
  186. (void)printf("n");
  187. (void)printf("tlsn: [%lu][%lu]n",
  188.     (u_long)argp->lsn.file, (u_long)argp->lsn.offset);
  189. (void)printf("n");
  190. __os_free(dbenv, argp);
  191. return (0);
  192. }
  193. /*
  194.  * PUBLIC: int __crdel_metasub_read __P((DB_ENV *, void *,
  195.  * PUBLIC:     __crdel_metasub_args **));
  196.  */
  197. int
  198. __crdel_metasub_read(dbenv, recbuf, argpp)
  199. DB_ENV *dbenv;
  200. void *recbuf;
  201. __crdel_metasub_args **argpp;
  202. {
  203. __crdel_metasub_args *argp;
  204. u_int32_t uinttmp;
  205. u_int8_t *bp;
  206. int ret;
  207. if ((ret = __os_malloc(dbenv,
  208.     sizeof(__crdel_metasub_args) + sizeof(DB_TXN), &argp)) != 0)
  209. return (ret);
  210. argp->txnid = (DB_TXN *)&argp[1];
  211. bp = recbuf;
  212. memcpy(&argp->type, bp, sizeof(argp->type));
  213. bp += sizeof(argp->type);
  214. memcpy(&argp->txnid->txnid,  bp, sizeof(argp->txnid->txnid));
  215. bp += sizeof(argp->txnid->txnid);
  216. memcpy(&argp->prev_lsn, bp, sizeof(DB_LSN));
  217. bp += sizeof(DB_LSN);
  218. memcpy(&uinttmp, bp, sizeof(uinttmp));
  219. argp->fileid = (int32_t)uinttmp;
  220. bp += sizeof(uinttmp);
  221. memcpy(&uinttmp, bp, sizeof(uinttmp));
  222. argp->pgno = (db_pgno_t)uinttmp;
  223. bp += sizeof(uinttmp);
  224. memset(&argp->page, 0, sizeof(argp->page));
  225. memcpy(&argp->page.size, bp, sizeof(u_int32_t));
  226. bp += sizeof(u_int32_t);
  227. argp->page.data = bp;
  228. bp += argp->page.size;
  229. memcpy(&argp->lsn, bp,  sizeof(argp->lsn));
  230. bp += sizeof(argp->lsn);
  231. *argpp = argp;
  232. return (0);
  233. }
  234. /*
  235.  * PUBLIC: int __crdel_init_print __P((DB_ENV *, int (***)(DB_ENV *,
  236.  * PUBLIC:     DBT *, DB_LSN *, db_recops, void *), size_t *));
  237.  */
  238. int
  239. __crdel_init_print(dbenv, dtabp, dtabsizep)
  240. DB_ENV *dbenv;
  241. int (***dtabp)__P((DB_ENV *, DBT *, DB_LSN *, db_recops, void *));
  242. size_t *dtabsizep;
  243. {
  244. int ret;
  245. if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep,
  246.     __crdel_metasub_print, DB___crdel_metasub)) != 0)
  247. return (ret);
  248. return (0);
  249. }
  250. /*
  251.  * PUBLIC: int __crdel_init_getpgnos __P((DB_ENV *,
  252.  * PUBLIC:     int (***)(DB_ENV *, DBT *, DB_LSN *, db_recops, void *),
  253.  * PUBLIC:     size_t *));
  254.  */
  255. int
  256. __crdel_init_getpgnos(dbenv, dtabp, dtabsizep)
  257. DB_ENV *dbenv;
  258. int (***dtabp)__P((DB_ENV *, DBT *, DB_LSN *, db_recops, void *));
  259. size_t *dtabsizep;
  260. {
  261. int ret;
  262. if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep,
  263.     __crdel_metasub_getpgnos, DB___crdel_metasub)) != 0)
  264. return (ret);
  265. return (0);
  266. }
  267. /*
  268.  * PUBLIC: int __crdel_init_recover __P((DB_ENV *, int (***)(DB_ENV *,
  269.  * PUBLIC:     DBT *, DB_LSN *, db_recops, void *), size_t *));
  270.  */
  271. int
  272. __crdel_init_recover(dbenv, dtabp, dtabsizep)
  273. DB_ENV *dbenv;
  274. int (***dtabp)__P((DB_ENV *, DBT *, DB_LSN *, db_recops, void *));
  275. size_t *dtabsizep;
  276. {
  277. int ret;
  278. if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep,
  279.     __crdel_metasub_recover, DB___crdel_metasub)) != 0)
  280. return (ret);
  281. return (0);
  282. }