|
|
|
@ -20,11 +20,6 @@ |
|
|
|
|
// kTypeColumnFamilyDeletion varint32 varstring varstring
|
|
|
|
|
// kTypeColumnFamilySingleDeletion varint32 varstring varstring
|
|
|
|
|
// kTypeColumnFamilyMerge varint32 varstring varstring
|
|
|
|
|
// kTypeBeginPrepareXID varstring
|
|
|
|
|
// kTypeEndPrepareXID
|
|
|
|
|
// kTypeCommitXID varstring
|
|
|
|
|
// kTypeRollbackXID varstring
|
|
|
|
|
// kTypeNoop
|
|
|
|
|
// varstring :=
|
|
|
|
|
// len: varint32
|
|
|
|
|
// data: uint8[len]
|
|
|
|
@ -53,15 +48,11 @@ namespace rocksdb { |
|
|
|
|
namespace { |
|
|
|
|
|
|
|
|
|
enum ContentFlags : uint32_t { |
|
|
|
|
DEFERRED = 1 << 0, |
|
|
|
|
HAS_PUT = 1 << 1, |
|
|
|
|
HAS_DELETE = 1 << 2, |
|
|
|
|
HAS_SINGLE_DELETE = 1 << 3, |
|
|
|
|
HAS_MERGE = 1 << 4, |
|
|
|
|
HAS_BEGIN_PREPARE = 1 << 5, |
|
|
|
|
HAS_END_PREPARE = 1 << 6, |
|
|
|
|
HAS_COMMIT = 1 << 7, |
|
|
|
|
HAS_ROLLBACK = 1 << 8, |
|
|
|
|
DEFERRED = 1, |
|
|
|
|
HAS_PUT = 2, |
|
|
|
|
HAS_DELETE = 4, |
|
|
|
|
HAS_SINGLE_DELETE = 8, |
|
|
|
|
HAS_MERGE = 16, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
struct BatchContentClassifier : public WriteBatch::Handler { |
|
|
|
@ -86,26 +77,6 @@ struct BatchContentClassifier : public WriteBatch::Handler { |
|
|
|
|
content_flags |= ContentFlags::HAS_MERGE; |
|
|
|
|
return Status::OK(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Status MarkBeginPrepare() override { |
|
|
|
|
content_flags |= ContentFlags::HAS_BEGIN_PREPARE; |
|
|
|
|
return Status::OK(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Status MarkEndPrepare(const Slice&) override { |
|
|
|
|
content_flags |= ContentFlags::HAS_END_PREPARE; |
|
|
|
|
return Status::OK(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Status MarkCommit(const Slice&) override { |
|
|
|
|
content_flags |= ContentFlags::HAS_COMMIT; |
|
|
|
|
return Status::OK(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Status MarkRollback(const Slice&) override { |
|
|
|
|
content_flags |= ContentFlags::HAS_ROLLBACK; |
|
|
|
|
return Status::OK(); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
} // anon namespace
|
|
|
|
@ -126,7 +97,6 @@ WriteBatch::WriteBatch(size_t reserved_bytes) |
|
|
|
|
rep_.reserve((reserved_bytes > WriteBatchInternal::kHeader) ? |
|
|
|
|
reserved_bytes : WriteBatchInternal::kHeader); |
|
|
|
|
rep_.resize(WriteBatchInternal::kHeader); |
|
|
|
|
rep_.push_back(static_cast<char>(kTypeNoop)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
WriteBatch::WriteBatch(const std::string& rep) |
|
|
|
@ -176,7 +146,6 @@ bool WriteBatch::Handler::Continue() { |
|
|
|
|
void WriteBatch::Clear() { |
|
|
|
|
rep_.clear(); |
|
|
|
|
rep_.resize(WriteBatchInternal::kHeader); |
|
|
|
|
rep_.push_back(static_cast<char>(kTypeNoop)); |
|
|
|
|
|
|
|
|
|
content_flags_.store(0, std::memory_order_relaxed); |
|
|
|
|
|
|
|
|
@ -240,25 +209,9 @@ bool ReadKeyFromWriteBatchEntry(Slice* input, Slice* key, bool cf_record) { |
|
|
|
|
return GetLengthPrefixedSlice(input, key); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool WriteBatch::HasBeginPrepare() const { |
|
|
|
|
return (ComputeContentFlags() & ContentFlags::HAS_BEGIN_PREPARE) != 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool WriteBatch::HasEndPrepare() const { |
|
|
|
|
return (ComputeContentFlags() & ContentFlags::HAS_END_PREPARE) != 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool WriteBatch::HasCommit() const { |
|
|
|
|
return (ComputeContentFlags() & ContentFlags::HAS_COMMIT) != 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool WriteBatch::HasRollback() const { |
|
|
|
|
return (ComputeContentFlags() & ContentFlags::HAS_ROLLBACK) != 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Status ReadRecordFromWriteBatch(Slice* input, char* tag, |
|
|
|
|
uint32_t* column_family, Slice* key, |
|
|
|
|
Slice* value, Slice* blob, Slice* xid) { |
|
|
|
|
Slice* value, Slice* blob) { |
|
|
|
|
assert(key != nullptr && value != nullptr); |
|
|
|
|
*tag = (*input)[0]; |
|
|
|
|
input->remove_prefix(1); |
|
|
|
@ -304,24 +257,6 @@ Status ReadRecordFromWriteBatch(Slice* input, char* tag, |
|
|
|
|
return Status::Corruption("bad WriteBatch Blob"); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case kTypeNoop: |
|
|
|
|
case kTypeBeginPrepareXID: |
|
|
|
|
break; |
|
|
|
|
case kTypeEndPrepareXID: |
|
|
|
|
if (!GetLengthPrefixedSlice(input, xid)) { |
|
|
|
|
return Status::Corruption("bad EndPrepare XID"); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case kTypeCommitXID: |
|
|
|
|
if (!GetLengthPrefixedSlice(input, xid)) { |
|
|
|
|
return Status::Corruption("bad Commit XID"); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case kTypeRollbackXID: |
|
|
|
|
if (!GetLengthPrefixedSlice(input, xid)) { |
|
|
|
|
return Status::Corruption("bad Rollback XID"); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
return Status::Corruption("unknown WriteBatch tag"); |
|
|
|
|
} |
|
|
|
@ -335,7 +270,7 @@ Status WriteBatch::Iterate(Handler* handler) const { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
input.remove_prefix(WriteBatchInternal::kHeader); |
|
|
|
|
Slice key, value, blob, xid; |
|
|
|
|
Slice key, value, blob; |
|
|
|
|
int found = 0; |
|
|
|
|
Status s; |
|
|
|
|
while (s.ok() && !input.empty() && handler->Continue()) { |
|
|
|
@ -343,7 +278,7 @@ Status WriteBatch::Iterate(Handler* handler) const { |
|
|
|
|
uint32_t column_family = 0; // default
|
|
|
|
|
|
|
|
|
|
s = ReadRecordFromWriteBatch(&input, &tag, &column_family, &key, &value, |
|
|
|
|
&blob, &xid); |
|
|
|
|
&blob); |
|
|
|
|
if (!s.ok()) { |
|
|
|
|
return s; |
|
|
|
|
} |
|
|
|
@ -380,28 +315,6 @@ Status WriteBatch::Iterate(Handler* handler) const { |
|
|
|
|
case kTypeLogData: |
|
|
|
|
handler->LogData(blob); |
|
|
|
|
break; |
|
|
|
|
case kTypeBeginPrepareXID: |
|
|
|
|
assert(content_flags_.load(std::memory_order_relaxed) & |
|
|
|
|
(ContentFlags::DEFERRED | ContentFlags::HAS_BEGIN_PREPARE)); |
|
|
|
|
handler->MarkBeginPrepare(); |
|
|
|
|
break; |
|
|
|
|
case kTypeEndPrepareXID: |
|
|
|
|
assert(content_flags_.load(std::memory_order_relaxed) & |
|
|
|
|
(ContentFlags::DEFERRED | ContentFlags::HAS_END_PREPARE)); |
|
|
|
|
handler->MarkEndPrepare(xid); |
|
|
|
|
break; |
|
|
|
|
case kTypeCommitXID: |
|
|
|
|
assert(content_flags_.load(std::memory_order_relaxed) & |
|
|
|
|
(ContentFlags::DEFERRED | ContentFlags::HAS_COMMIT)); |
|
|
|
|
handler->MarkCommit(xid); |
|
|
|
|
break; |
|
|
|
|
case kTypeRollbackXID: |
|
|
|
|
assert(content_flags_.load(std::memory_order_relaxed) & |
|
|
|
|
(ContentFlags::DEFERRED | ContentFlags::HAS_ROLLBACK)); |
|
|
|
|
handler->MarkRollback(xid); |
|
|
|
|
break; |
|
|
|
|
case kTypeNoop: |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
return Status::Corruption("unknown WriteBatch tag"); |
|
|
|
|
} |
|
|
|
@ -478,43 +391,6 @@ void WriteBatch::Put(ColumnFamilyHandle* column_family, const SliceParts& key, |
|
|
|
|
WriteBatchInternal::Put(this, GetColumnFamilyID(column_family), key, value); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void WriteBatchInternal::MarkEndPrepare(WriteBatch* b, const Slice& xid) { |
|
|
|
|
// a manually constructed batch can only contain one prepare section
|
|
|
|
|
assert(b->rep_[12] == static_cast<char>(kTypeNoop)); |
|
|
|
|
|
|
|
|
|
// all savepoints up to this point are cleared
|
|
|
|
|
if (b->save_points_ != nullptr) { |
|
|
|
|
while (!b->save_points_->stack.empty()) { |
|
|
|
|
b->save_points_->stack.pop(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// rewrite noop as begin marker
|
|
|
|
|
b->rep_[12] = static_cast<char>(kTypeBeginPrepareXID); |
|
|
|
|
b->rep_.push_back(static_cast<char>(kTypeEndPrepareXID)); |
|
|
|
|
PutLengthPrefixedSlice(&b->rep_, xid); |
|
|
|
|
b->content_flags_.store(b->content_flags_.load(std::memory_order_relaxed) | |
|
|
|
|
ContentFlags::HAS_END_PREPARE | |
|
|
|
|
ContentFlags::HAS_BEGIN_PREPARE, |
|
|
|
|
std::memory_order_relaxed); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void WriteBatchInternal::MarkCommit(WriteBatch* b, const Slice& xid) { |
|
|
|
|
b->rep_.push_back(static_cast<char>(kTypeCommitXID)); |
|
|
|
|
PutLengthPrefixedSlice(&b->rep_, xid); |
|
|
|
|
b->content_flags_.store(b->content_flags_.load(std::memory_order_relaxed) | |
|
|
|
|
ContentFlags::HAS_COMMIT, |
|
|
|
|
std::memory_order_relaxed); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void WriteBatchInternal::MarkRollback(WriteBatch* b, const Slice& xid) { |
|
|
|
|
b->rep_.push_back(static_cast<char>(kTypeRollbackXID)); |
|
|
|
|
PutLengthPrefixedSlice(&b->rep_, xid); |
|
|
|
|
b->content_flags_.store(b->content_flags_.load(std::memory_order_relaxed) | |
|
|
|
|
ContentFlags::HAS_ROLLBACK, |
|
|
|
|
std::memory_order_relaxed); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void WriteBatchInternal::Delete(WriteBatch* b, uint32_t column_family_id, |
|
|
|
|
const Slice& key) { |
|
|
|
|
WriteBatchInternal::SetCount(b, WriteBatchInternal::Count(b) + 1); |
|
|
|
|