Coverage Report

Created: 2026-09-03 06:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/leveldb/db/dbformat.cc
Line
Count
Source
1
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file. See the AUTHORS file for names of contributors.
4
5
#include "db/dbformat.h"
6
7
#include <cstdio>
8
#include <sstream>
9
10
#include "port/port.h"
11
#include "util/coding.h"
12
13
namespace leveldb {
14
15
485
static uint64_t PackSequenceAndType(uint64_t seq, ValueType t) {
16
485
  assert(seq <= kMaxSequenceNumber);
17
485
  assert(t <= kValueTypeForSeek);
18
485
  return (seq << 8) | t;
19
485
}
20
21
152
void AppendInternalKey(std::string* result, const ParsedInternalKey& key) {
22
152
  result->append(key.user_key.data(), key.user_key.size());
23
152
  PutFixed64(result, PackSequenceAndType(key.sequence, key.type));
24
152
}
25
26
45
std::string ParsedInternalKey::DebugString() const {
27
45
  std::ostringstream ss;
28
45
  ss << '\'' << EscapeString(user_key.ToString()) << "' @ " << sequence << " : "
29
45
     << static_cast<int>(type);
30
45
  return ss.str();
31
45
}
32
33
45
std::string InternalKey::DebugString() const {
34
45
  ParsedInternalKey parsed;
35
45
  if (ParseInternalKey(rep_, &parsed)) {
36
45
    return parsed.DebugString();
37
45
  }
38
0
  std::ostringstream ss;
39
0
  ss << "(bad)" << EscapeString(rep_);
40
0
  return ss.str();
41
45
}
42
43
0
const char* InternalKeyComparator::Name() const {
44
0
  return "leveldb.InternalKeyComparator";
45
0
}
46
47
3.94k
int InternalKeyComparator::Compare(const Slice& akey, const Slice& bkey) const {
48
  // Order by:
49
  //    increasing user key (according to user-supplied comparator)
50
  //    decreasing sequence number
51
  //    decreasing type (though sequence# should be enough to disambiguate)
52
3.94k
  int r = user_comparator_->Compare(ExtractUserKey(akey), ExtractUserKey(bkey));
53
3.94k
  if (r == 0) {
54
57
    const uint64_t anum = DecodeFixed64(akey.data() + akey.size() - 8);
55
57
    const uint64_t bnum = DecodeFixed64(bkey.data() + bkey.size() - 8);
56
57
    if (anum > bnum) {
57
0
      r = -1;
58
57
    } else if (anum < bnum) {
59
56
      r = +1;
60
56
    }
61
57
  }
62
3.94k
  return r;
63
3.94k
}
64
65
void InternalKeyComparator::FindShortestSeparator(std::string* start,
66
312
                                                  const Slice& limit) const {
67
  // Attempt to shorten the user portion of the key
68
312
  Slice user_start = ExtractUserKey(*start);
69
312
  Slice user_limit = ExtractUserKey(limit);
70
312
  std::string tmp(user_start.data(), user_start.size());
71
312
  user_comparator_->FindShortestSeparator(&tmp, user_limit);
72
312
  if (tmp.size() < user_start.size() &&
73
270
      user_comparator_->Compare(user_start, tmp) < 0) {
74
    // User key has become shorter physically, but larger logically.
75
    // Tack on the earliest possible number to the shortened user key.
76
270
    PutFixed64(&tmp,
77
270
               PackSequenceAndType(kMaxSequenceNumber, kValueTypeForSeek));
78
270
    assert(this->Compare(*start, tmp) < 0);
79
270
    assert(this->Compare(tmp, limit) < 0);
80
270
    start->swap(tmp);
81
270
  }
82
312
}
83
84
42
void InternalKeyComparator::FindShortSuccessor(std::string* key) const {
85
42
  Slice user_key = ExtractUserKey(*key);
86
42
  std::string tmp(user_key.data(), user_key.size());
87
42
  user_comparator_->FindShortSuccessor(&tmp);
88
42
  if (tmp.size() < user_key.size() &&
89
41
      user_comparator_->Compare(user_key, tmp) < 0) {
90
    // User key has become shorter physically, but larger logically.
91
    // Tack on the earliest possible number to the shortened user key.
92
41
    PutFixed64(&tmp,
93
41
               PackSequenceAndType(kMaxSequenceNumber, kValueTypeForSeek));
94
41
    assert(this->Compare(*key, tmp) < 0);
95
41
    key->swap(tmp);
96
41
  }
97
42
}
98
99
0
const char* InternalFilterPolicy::Name() const { return user_policy_->Name(); }
100
101
void InternalFilterPolicy::CreateFilter(const Slice* keys, int n,
102
0
                                        std::string* dst) const {
103
  // We rely on the fact that the code in table.cc does not mind us
104
  // adjusting keys[].
105
0
  Slice* mkey = const_cast<Slice*>(keys);
106
0
  for (int i = 0; i < n; i++) {
107
0
    mkey[i] = ExtractUserKey(keys[i]);
108
    // TODO(sanjay): Suppress dups?
109
0
  }
110
0
  user_policy_->CreateFilter(keys, n, dst);
111
0
}
112
113
0
bool InternalFilterPolicy::KeyMayMatch(const Slice& key, const Slice& f) const {
114
0
  return user_policy_->KeyMayMatch(ExtractUserKey(key), f);
115
0
}
116
117
22
LookupKey::LookupKey(const Slice& user_key, SequenceNumber s) {
118
22
  size_t usize = user_key.size();
119
22
  size_t needed = usize + 13;  // A conservative estimate
120
22
  char* dst;
121
22
  if (needed <= sizeof(space_)) {
122
14
    dst = space_;
123
14
  } else {
124
8
    dst = new char[needed];
125
8
  }
126
22
  start_ = dst;
127
22
  dst = EncodeVarint32(dst, usize + 8);
128
22
  kstart_ = dst;
129
22
  std::memcpy(dst, user_key.data(), usize);
130
22
  dst += usize;
131
22
  EncodeFixed64(dst, PackSequenceAndType(s, kValueTypeForSeek));
132
22
  dst += 8;
133
22
  end_ = dst;
134
22
}
135
136
}  // namespace leveldb