Coverage Report

Created: 2025-08-29 06:56

/src/leveldb/db/dbformat.cc
Line
Count
Source (jump to first uncovered line)
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
468k
static uint64_t PackSequenceAndType(uint64_t seq, ValueType t) {
16
468k
  assert(seq <= kMaxSequenceNumber);
17
468k
  assert(t <= kValueTypeForSeek);
18
468k
  return (seq << 8) | t;
19
468k
}
20
21
362k
void AppendInternalKey(std::string* result, const ParsedInternalKey& key) {
22
362k
  result->append(key.user_key.data(), key.user_key.size());
23
362k
  PutFixed64(result, PackSequenceAndType(key.sequence, key.type));
24
362k
}
25
26
149k
std::string ParsedInternalKey::DebugString() const {
27
149k
  std::ostringstream ss;
28
149k
  ss << '\'' << EscapeString(user_key.ToString()) << "' @ " << sequence << " : "
29
149k
     << static_cast<int>(type);
30
149k
  return ss.str();
31
149k
}
32
33
149k
std::string InternalKey::DebugString() const {
34
149k
  ParsedInternalKey parsed;
35
149k
  if (ParseInternalKey(rep_, &parsed)) {
36
149k
    return parsed.DebugString();
37
149k
  }
38
0
  std::ostringstream ss;
39
0
  ss << "(bad)" << EscapeString(rep_);
40
0
  return ss.str();
41
149k
}
42
43
0
const char* InternalKeyComparator::Name() const {
44
0
  return "leveldb.InternalKeyComparator";
45
0
}
46
47
49.5M
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
49.5M
  int r = user_comparator_->Compare(ExtractUserKey(akey), ExtractUserKey(bkey));
53
49.5M
  if (r == 0) {
54
32.0M
    const uint64_t anum = DecodeFixed64(akey.data() + akey.size() - 8);
55
32.0M
    const uint64_t bnum = DecodeFixed64(bkey.data() + bkey.size() - 8);
56
32.0M
    if (anum > bnum) {
57
282k
      r = -1;
58
31.7M
    } else if (anum < bnum) {
59
31.6M
      r = +1;
60
31.6M
    }
61
32.0M
  }
62
49.5M
  return r;
63
49.5M
}
64
65
void InternalKeyComparator::FindShortestSeparator(std::string* start,
66
24.7k
                                                  const Slice& limit) const {
67
  // Attempt to shorten the user portion of the key
68
24.7k
  Slice user_start = ExtractUserKey(*start);
69
24.7k
  Slice user_limit = ExtractUserKey(limit);
70
24.7k
  std::string tmp(user_start.data(), user_start.size());
71
24.7k
  user_comparator_->FindShortestSeparator(&tmp, user_limit);
72
24.7k
  if (tmp.size() < user_start.size() &&
73
24.7k
      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
15.0k
    PutFixed64(&tmp,
77
15.0k
               PackSequenceAndType(kMaxSequenceNumber, kValueTypeForSeek));
78
15.0k
    assert(this->Compare(*start, tmp) < 0);
79
15.0k
    assert(this->Compare(tmp, limit) < 0);
80
15.0k
    start->swap(tmp);
81
15.0k
  }
82
24.7k
}
83
84
78.4k
void InternalKeyComparator::FindShortSuccessor(std::string* key) const {
85
78.4k
  Slice user_key = ExtractUserKey(*key);
86
78.4k
  std::string tmp(user_key.data(), user_key.size());
87
78.4k
  user_comparator_->FindShortSuccessor(&tmp);
88
78.4k
  if (tmp.size() < user_key.size() &&
89
78.4k
      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.5k
    PutFixed64(&tmp,
93
41.5k
               PackSequenceAndType(kMaxSequenceNumber, kValueTypeForSeek));
94
41.5k
    assert(this->Compare(*key, tmp) < 0);
95
41.5k
    key->swap(tmp);
96
41.5k
  }
97
78.4k
}
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
49.3k
LookupKey::LookupKey(const Slice& user_key, SequenceNumber s) {
118
49.3k
  size_t usize = user_key.size();
119
49.3k
  size_t needed = usize + 13;  // A conservative estimate
120
49.3k
  char* dst;
121
49.3k
  if (needed <= sizeof(space_)) {
122
44.0k
    dst = space_;
123
44.0k
  } else {
124
5.33k
    dst = new char[needed];
125
5.33k
  }
126
49.3k
  start_ = dst;
127
49.3k
  dst = EncodeVarint32(dst, usize + 8);
128
49.3k
  kstart_ = dst;
129
49.3k
  std::memcpy(dst, user_key.data(), usize);
130
49.3k
  dst += usize;
131
49.3k
  EncodeFixed64(dst, PackSequenceAndType(s, kValueTypeForSeek));
132
49.3k
  dst += 8;
133
49.3k
  end_ = dst;
134
49.3k
}
135
136
}  // namespace leveldb