📄 btree_auto.c
字号:
uinttmp = (u_int32_t)from_indx; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); uinttmp = (u_int32_t)to_indx; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); DB_ASSERT((u_int32_t)(bp - (u_int8_t *)logrec.data) <= logrec.size); if (is_durable || txnid == NULL) { if ((ret = __log_put(dbenv, rlsnp,(DBT *)&logrec, flags | DB_LOG_NOCOPY)) == 0 && txnid != NULL) { txnid->last_lsn = *rlsnp; if (rlsnp != ret_lsnp) *ret_lsnp = *rlsnp; } } else {#ifdef DIAGNOSTIC /* * Set the debug bit if we are going to log non-durable * transactions so they will be ignored by recovery. */ memcpy(lr->data, logrec.data, logrec.size); rectype |= DB_debug_FLAG; memcpy(logrec.data, &rectype, sizeof(rectype)); ret = __log_put(dbenv, rlsnp, (DBT *)&logrec, flags | DB_LOG_NOCOPY);#else ret = 0;#endif STAILQ_INSERT_HEAD(&txnid->logs, lr, links); LSN_NOT_LOGGED(*ret_lsnp); }#ifdef LOG_DIAGNOSTIC if (ret != 0) (void)__bam_curadj_print(dbenv, (DBT *)&logrec, ret_lsnp, NULL, NULL);#endif#ifdef DIAGNOSTIC __os_free(dbenv, logrec.data);#else if (is_durable || txnid == NULL) __os_free(dbenv, logrec.data);#endif return (ret);}/* * PUBLIC: int __bam_curadj_read __P((DB_ENV *, void *, __bam_curadj_args **)); */int__bam_curadj_read(dbenv, recbuf, argpp) DB_ENV *dbenv; void *recbuf; __bam_curadj_args **argpp;{ __bam_curadj_args *argp; u_int32_t uinttmp; u_int8_t *bp; int ret; if ((ret = __os_malloc(dbenv, sizeof(__bam_curadj_args) + sizeof(DB_TXN), &argp)) != 0) return (ret); bp = recbuf; argp->txnid = (DB_TXN *)&argp[1]; memcpy(&argp->type, bp, sizeof(argp->type)); bp += sizeof(argp->type); memcpy(&argp->txnid->txnid, bp, sizeof(argp->txnid->txnid)); bp += sizeof(argp->txnid->txnid); memcpy(&argp->prev_lsn, bp, sizeof(DB_LSN)); bp += sizeof(DB_LSN); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->fileid = (int32_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->mode = (db_ca_mode)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->from_pgno = (db_pgno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->to_pgno = (db_pgno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->left_pgno = (db_pgno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->first_indx = (u_int32_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->from_indx = (u_int32_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->to_indx = (u_int32_t)uinttmp; bp += sizeof(uinttmp); *argpp = argp; return (0);}/* * PUBLIC: int __bam_rcuradj_log __P((DB *, DB_TXN *, DB_LSN *, * PUBLIC: u_int32_t, ca_recno_arg, db_pgno_t, db_recno_t, u_int32_t)); */int__bam_rcuradj_log(dbp, txnid, ret_lsnp, flags, mode, root, recno, order) DB *dbp; DB_TXN *txnid; DB_LSN *ret_lsnp; u_int32_t flags; ca_recno_arg mode; db_pgno_t root; db_recno_t recno; u_int32_t order;{ DBT logrec; DB_ENV *dbenv; DB_TXNLOGREC *lr; DB_LSN *lsnp, null_lsn, *rlsnp; u_int32_t uinttmp, rectype, txn_num; u_int npad; u_int8_t *bp; int is_durable, ret; dbenv = dbp->dbenv; COMPQUIET(lr, NULL); rectype = DB___bam_rcuradj; npad = 0; rlsnp = ret_lsnp; ret = 0; if (LF_ISSET(DB_LOG_NOT_DURABLE) || F_ISSET(dbp, DB_AM_NOT_DURABLE)) { is_durable = 0; } else is_durable = 1; if (txnid == NULL) { txn_num = 0; lsnp = &null_lsn; null_lsn.file = null_lsn.offset = 0; } else { if (TAILQ_FIRST(&txnid->kids) != NULL && (ret = __txn_activekids(dbenv, rectype, txnid)) != 0) return (ret); /* * We need to assign begin_lsn while holding region mutex. * That assignment is done inside the DbEnv->log_put call, * so pass in the appropriate memory location to be filled * in by the log_put code. */ DB_SET_BEGIN_LSNP(txnid, &rlsnp); txn_num = txnid->txnid; lsnp = &txnid->last_lsn; } DB_ASSERT(dbp->log_filename != NULL); if (dbp->log_filename->id == DB_LOGFILEID_INVALID && (ret = __dbreg_lazy_id(dbp)) != 0) return (ret); logrec.size = sizeof(rectype) + sizeof(txn_num) + sizeof(DB_LSN) + sizeof(u_int32_t) + sizeof(u_int32_t) + sizeof(u_int32_t) + sizeof(u_int32_t) + sizeof(u_int32_t); if (CRYPTO_ON(dbenv)) { npad = ((DB_CIPHER *)dbenv->crypto_handle)->adj_size(logrec.size); logrec.size += npad; } if (is_durable || txnid == NULL) { if ((ret = __os_malloc(dbenv, logrec.size, &logrec.data)) != 0) return (ret); } else { if ((ret = __os_malloc(dbenv, logrec.size + sizeof(DB_TXNLOGREC), &lr)) != 0) return (ret);#ifdef DIAGNOSTIC if ((ret = __os_malloc(dbenv, logrec.size, &logrec.data)) != 0) { __os_free(dbenv, lr); return (ret); }#else logrec.data = lr->data;#endif } if (npad > 0) memset((u_int8_t *)logrec.data + logrec.size - npad, 0, npad); bp = logrec.data; memcpy(bp, &rectype, sizeof(rectype)); bp += sizeof(rectype); memcpy(bp, &txn_num, sizeof(txn_num)); bp += sizeof(txn_num); memcpy(bp, lsnp, sizeof(DB_LSN)); bp += sizeof(DB_LSN); uinttmp = (u_int32_t)dbp->log_filename->id; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); uinttmp = (u_int32_t)mode; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); uinttmp = (u_int32_t)root; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); uinttmp = (u_int32_t)recno; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); uinttmp = (u_int32_t)order; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); DB_ASSERT((u_int32_t)(bp - (u_int8_t *)logrec.data) <= logrec.size); if (is_durable || txnid == NULL) { if ((ret = __log_put(dbenv, rlsnp,(DBT *)&logrec, flags | DB_LOG_NOCOPY)) == 0 && txnid != NULL) { txnid->last_lsn = *rlsnp; if (rlsnp != ret_lsnp) *ret_lsnp = *rlsnp; } } else {#ifdef DIAGNOSTIC /* * Set the debug bit if we are going to log non-durable * transactions so they will be ignored by recovery. */ memcpy(lr->data, logrec.data, logrec.size); rectype |= DB_debug_FLAG; memcpy(logrec.data, &rectype, sizeof(rectype)); ret = __log_put(dbenv, rlsnp, (DBT *)&logrec, flags | DB_LOG_NOCOPY);#else ret = 0;#endif STAILQ_INSERT_HEAD(&txnid->logs, lr, links); LSN_NOT_LOGGED(*ret_lsnp); }#ifdef LOG_DIAGNOSTIC if (ret != 0) (void)__bam_rcuradj_print(dbenv, (DBT *)&logrec, ret_lsnp, NULL, NULL);#endif#ifdef DIAGNOSTIC __os_free(dbenv, logrec.data);#else if (is_durable || txnid == NULL) __os_free(dbenv, logrec.data);#endif return (ret);}/* * PUBLIC: int __bam_rcuradj_read __P((DB_ENV *, void *, * PUBLIC: __bam_rcuradj_args **)); */int__bam_rcuradj_read(dbenv, recbuf, argpp) DB_ENV *dbenv; void *recbuf; __bam_rcuradj_args **argpp;{ __bam_rcuradj_args *argp; u_int32_t uinttmp; u_int8_t *bp; int ret; if ((ret = __os_malloc(dbenv, sizeof(__bam_rcuradj_args) + sizeof(DB_TXN), &argp)) != 0) return (ret); bp = recbuf; argp->txnid = (DB_TXN *)&argp[1]; memcpy(&argp->type, bp, sizeof(argp->type)); bp += sizeof(argp->type); memcpy(&argp->txnid->txnid, bp, sizeof(argp->txnid->txnid)); bp += sizeof(argp->txnid->txnid); memcpy(&argp->prev_lsn, bp, sizeof(DB_LSN)); bp += sizeof(DB_LSN); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->fileid = (int32_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->mode = (ca_recno_arg)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->root = (db_pgno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->recno = (db_recno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->order = (u_int32_t)uinttmp; bp += sizeof(uinttmp); *argpp = argp; return (0);}/* * PUBLIC: int __bam_relink_log __P((DB *, DB_TXN *, DB_LSN *, * PUBLIC: u_int32_t, db_pgno_t, DB_LSN *, db_pgno_t, DB_LSN *, db_pgno_t, * PUBLIC: DB_LSN *)); */int__bam_relink_log(dbp, txnid, ret_lsnp, flags, pgno, lsn, prev, lsn_prev, next, lsn_next) DB *dbp; DB_TXN *txnid; DB_LSN *ret_lsnp; u_int32_t flags; db_pgno_t pgno; DB_LSN * lsn; db_pgno_t prev; DB_LSN * lsn_prev; db_pgno_t next; DB_LSN * lsn_next;{ DBT logrec; DB_ENV *dbenv; DB_TXNLOGREC *lr; DB_LSN *lsnp, null_lsn, *rlsnp; u_int32_t uinttmp, rectype, txn_num; u_int npad; u_int8_t *bp; int is_durable, ret; dbenv = dbp->dbenv; COMPQUIET(lr, NULL); rectype = DB___bam_relink; npad = 0; rlsnp = ret_lsnp; ret = 0; if (LF_ISSET(DB_LOG_NOT_DURABLE) || F_ISSET(dbp, DB_AM_NOT_DURABLE)) { is_durable = 0; } else is_durable = 1; if (txnid == NULL) { txn_num = 0; lsnp = &null_lsn; null_lsn.file = null_lsn.offset = 0; } else { if (TAILQ_FIRST(&txnid->kids) != NULL && (ret = __txn_activekids(dbenv, rectype, txnid)) != 0) return (ret); /* * We need to assign begin_lsn while holding region mutex. * That assignment is done inside the DbEnv->log_put call, * so pass in the appropriate memory location to be filled * in by the log_put code. */ DB_SET_BEGIN_LSNP(txnid, &rlsnp); txn_num = txnid->txnid; lsnp = &txnid->last_lsn; } DB_ASSERT(dbp->log_filename != NULL); if (dbp->log_filename->id == DB_LOGFILEID_INVALID && (ret = __dbreg_lazy_id(dbp)) != 0) return (ret); logrec.size = sizeof(rectype) + sizeof(txn_num) + sizeof(DB_LSN) + sizeof(u_int32_t) + sizeof(u_int32_t) + sizeof(*lsn) + sizeof(u_int32_t) + sizeof(*lsn_prev) + sizeof(u_int32_t) + sizeof(*lsn_next); if (CRYPTO_ON(dbenv)) { npad = ((DB_CIPHER *)dbenv->crypto_handle)->adj_size(logrec.size); logrec.size += npad; } if (is_durable || txnid == NULL) { if ((ret = __os_malloc(dbenv, logrec.size, &logrec.data)) != 0) return (ret); } else { if ((ret = __os_malloc(dbenv, logrec.size + sizeof(DB_TXNLOGREC), &lr)) != 0) return (ret);#ifdef DIAGNOSTIC if ((ret = __os_malloc(dbenv, logrec.size, &logrec.data)) != 0) { __os_free(dbenv, lr); return (ret); }#else logrec.data = lr->data;#endif } if (npad > 0) memset((u_int8_t *)logrec.data + logrec.size - npad, 0, npad); bp = logrec.data; memcpy(bp, &rectype, sizeof(rectype)); bp += sizeof(rectype); memcpy(bp, &txn_num, sizeof(txn_num)); bp += sizeof(txn_num); memcpy(bp, lsnp, sizeof(DB_LSN)); bp += sizeof(DB_LSN); uinttmp = (u_int32_t)dbp->log_filename->id; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); uinttmp = (u_int32_t)pgno; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); if (lsn != NULL) memcpy(bp, lsn, sizeof(*lsn)); else memset(bp, 0, sizeof(*lsn)); bp += sizeof(*lsn); uinttmp = (u_int32_t)prev; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); if (lsn_prev != NULL) memcpy(bp, lsn_prev, sizeof(*lsn_prev)); else memset(bp, 0, sizeof(*lsn_prev)); bp += sizeof(*lsn_prev); uinttmp = (u_int32_t)next; memcpy(bp, &uinttmp, sizeof(uinttmp)); bp += sizeof(uinttmp); if (lsn_next != NULL) memcpy(bp, lsn_next, sizeof(*lsn_next)); else memset(bp, 0, sizeof(*lsn_next)); bp += sizeof(*lsn_next); DB_ASSERT((u_int32_t)(bp - (u_int8_t *)logrec.data) <= logrec.size); if (is_durable || txnid == NULL) { if ((ret = __log_put(dbenv, rlsnp,(DBT *)&logrec, flags | DB_LOG_NOCOPY)) == 0 && txnid != NULL) { txnid->last_lsn = *rlsnp; if (rlsnp != ret_lsnp) *ret_lsnp = *rlsnp; } } else {#ifdef DIAGNOSTIC /* * Set the debug bit if we are going to log non-durable * transactions so they will be ignored by recovery. */ memcpy(lr->data, logrec.data, logrec.size); rectype |= DB_debug_FLAG; memcpy(logrec.data, &rectype, sizeof(rectype)); ret = __log_put(dbenv, rlsnp, (DBT *)&logrec, flags | DB_LOG_NOCOPY);#else ret = 0;#endif STAILQ_INSERT_HEAD(&txnid->logs, lr, links); LSN_NOT_LOGGED(*ret_lsnp); }#ifdef LOG_DIAGNOSTIC if (ret != 0) (void)__bam_relink_print(dbenv, (DBT *)&logrec, ret_lsnp, NULL, NULL);#endif#ifdef DIAGNOSTIC __os_free(dbenv, logrec.data);#else if (is_durable || txnid == NULL) __os_free(dbenv, logrec.data);#endif return (ret);}/* * PUBLIC: int __bam_relink_read __P((DB_ENV *, void *, __bam_relink_args **)); */int__bam_relink_read(dbenv, recbuf, argpp) DB_ENV *dbenv; void *recbuf; __bam_relink_args **argpp;{ __bam_relink_args *argp; u_int32_t uinttmp; u_int8_t *bp; int ret; if ((ret = __os_malloc(dbenv, sizeof(__bam_relink_args) + sizeof(DB_TXN), &argp)) != 0) return (ret); bp = recbuf; argp->txnid = (DB_TXN *)&argp[1]; memcpy(&argp->type, bp, sizeof(argp->type)); bp += sizeof(argp->type); memcpy(&argp->txnid->txnid, bp, sizeof(argp->txnid->txnid)); bp += sizeof(argp->txnid->txnid); memcpy(&argp->prev_lsn, bp, sizeof(DB_LSN)); bp += sizeof(DB_LSN); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->fileid = (int32_t)uinttmp; bp += sizeof(uinttmp); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->pgno = (db_pgno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&argp->lsn, bp, sizeof(argp->lsn)); bp += sizeof(argp->lsn); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->prev = (db_pgno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&argp->lsn_prev, bp, sizeof(argp->lsn_prev)); bp += sizeof(argp->lsn_prev); memcpy(&uinttmp, bp, sizeof(uinttmp)); argp->next = (db_pgno_t)uinttmp; bp += sizeof(uinttmp); memcpy(&argp->lsn_next, bp, sizeof(argp->lsn_next)); bp += sizeof(argp->lsn_next); *argpp = argp; return (0);}/* * PUBLIC: int __bam_init_recover __P((DB_ENV *, int (***)(DB_ENV *, * PUBLIC: DBT *, DB_LSN *, db_recops, void *), size_t *)); */int__bam_init_recover(dbenv, dtabp, dtabsizep) DB_ENV *dbenv; int (***dtabp)__P((DB_ENV *, DBT *, DB_LSN *, db_recops, void *)); size_t *dtabsizep;{ int ret; if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_split_recover, DB___bam_split)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_rsplit_recover, DB___bam_rsplit)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_adj_recover, DB___bam_adj)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_cadjust_recover, DB___bam_cadjust)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_cdel_recover, DB___bam_cdel)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_repl_recover, DB___bam_repl)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_root_recover, DB___bam_root)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_curadj_recover, DB___bam_curadj)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_rcuradj_recover, DB___bam_rcuradj)) != 0) return (ret); if ((ret = __db_add_recovery(dbenv, dtabp, dtabsizep, __bam_relink_recover, DB___bam_relink)) != 0) return (ret); return (0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -