2017-05-12 23:59:57 +02:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2017-05-12 23:59:57 +02:00
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
|
|
|
#include "rocksdb/utilities/debug.h"
|
|
|
|
|
2019-05-31 20:52:59 +02:00
|
|
|
#include "db/db_impl/db_impl.h"
|
2017-05-12 23:59:57 +02:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2017-05-12 23:59:57 +02:00
|
|
|
|
|
|
|
Status GetAllKeyVersions(DB* db, Slice begin_key, Slice end_key,
|
2018-08-17 00:48:55 +02:00
|
|
|
size_t max_num_ikeys,
|
2017-05-12 23:59:57 +02:00
|
|
|
std::vector<KeyVersion>* key_versions) {
|
2019-07-08 07:40:52 +02:00
|
|
|
if (nullptr == db) {
|
|
|
|
return Status::InvalidArgument("db cannot be null.");
|
|
|
|
}
|
|
|
|
return GetAllKeyVersions(db, db->DefaultColumnFamily(), begin_key, end_key,
|
|
|
|
max_num_ikeys, key_versions);
|
|
|
|
}
|
|
|
|
|
|
|
|
Status GetAllKeyVersions(DB* db, ColumnFamilyHandle* cfh, Slice begin_key,
|
|
|
|
Slice end_key, size_t max_num_ikeys,
|
|
|
|
std::vector<KeyVersion>* key_versions) {
|
|
|
|
if (nullptr == db) {
|
|
|
|
return Status::InvalidArgument("db cannot be null.");
|
|
|
|
}
|
|
|
|
if (nullptr == cfh) {
|
|
|
|
return Status::InvalidArgument("Column family handle cannot be null.");
|
|
|
|
}
|
|
|
|
if (nullptr == key_versions) {
|
|
|
|
return Status::InvalidArgument("key_versions cannot be null.");
|
|
|
|
}
|
2017-05-12 23:59:57 +02:00
|
|
|
key_versions->clear();
|
|
|
|
|
|
|
|
DBImpl* idb = static_cast<DBImpl*>(db->GetRootDB());
|
2019-07-08 07:40:52 +02:00
|
|
|
auto icmp = InternalKeyComparator(idb->GetOptions(cfh).comparator);
|
2020-08-04 00:21:56 +02:00
|
|
|
ReadOptions read_options;
|
2018-12-18 02:26:56 +01:00
|
|
|
ReadRangeDelAggregator range_del_agg(&icmp,
|
|
|
|
kMaxSequenceNumber /* upper_bound */);
|
2017-05-12 23:59:57 +02:00
|
|
|
Arena arena;
|
2020-08-04 00:21:56 +02:00
|
|
|
ScopedArenaIterator iter(idb->NewInternalIterator(
|
|
|
|
read_options, &arena, &range_del_agg, kMaxSequenceNumber, cfh));
|
2017-05-12 23:59:57 +02:00
|
|
|
|
|
|
|
if (!begin_key.empty()) {
|
|
|
|
InternalKey ikey;
|
2017-09-13 02:16:44 +02:00
|
|
|
ikey.SetMinPossibleForUserKey(begin_key);
|
2017-05-12 23:59:57 +02:00
|
|
|
iter->Seek(ikey.Encode());
|
|
|
|
} else {
|
|
|
|
iter->SeekToFirst();
|
|
|
|
}
|
|
|
|
|
2018-08-17 00:48:55 +02:00
|
|
|
size_t num_keys = 0;
|
2017-05-12 23:59:57 +02:00
|
|
|
for (; iter->Valid(); iter->Next()) {
|
|
|
|
ParsedInternalKey ikey;
|
2020-10-28 18:11:13 +01:00
|
|
|
Status pik_status =
|
|
|
|
ParseInternalKey(iter->key(), &ikey, true /* log_err_key */); // TODO
|
|
|
|
if (!pik_status.ok()) {
|
|
|
|
return pik_status;
|
2017-05-12 23:59:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!end_key.empty() &&
|
|
|
|
icmp.user_comparator()->Compare(ikey.user_key, end_key) > 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
key_versions->emplace_back(ikey.user_key.ToString() /* _user_key */,
|
|
|
|
iter->value().ToString() /* _value */,
|
|
|
|
ikey.sequence /* _sequence */,
|
|
|
|
static_cast<int>(ikey.type) /* _type */);
|
2018-08-17 00:48:55 +02:00
|
|
|
if (++num_keys >= max_num_ikeys) {
|
|
|
|
break;
|
|
|
|
}
|
2017-05-12 23:59:57 +02:00
|
|
|
}
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2017-05-12 23:59:57 +02:00
|
|
|
|
|
|
|
#endif // ROCKSDB_LITE
|