Coverage Report

Created: 2025-10-28 06:32

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
436k
static uint64_t PackSequenceAndType(uint64_t seq, ValueType t) {
16
436k
  assert(seq <= kMaxSequenceNumber);
17
436k
  assert(t <= kValueTypeForSeek);
18
436k
  return (seq << 8) | t;
19
436k
}
20
21
328k
void AppendInternalKey(std::string* result, const ParsedInternalKey& key) {
22
328k
  result->append(key.user_key.data(), key.user_key.size());
23
328k
  PutFixed64(result, PackSequenceAndType(key.sequence, key.type));
24
328k
}
25
26
137k
std::string ParsedInternalKey::DebugString() const {
27
137k
  std::ostringstream ss;
28
137k
  ss << '\'' << EscapeString(user_key.ToString()) << "' @ " << sequence << " : "
29
137k
     << static_cast<int>(type);
30
137k
  return ss.str();
31
137k
}
32
33
137k
std::string InternalKey::DebugString() const {
34
137k
  ParsedInternalKey parsed;
35
137k
  if (ParseInternalKey(rep_, &parsed)) {
36
137k
    return parsed.DebugString();
37
137k
  }
38
0
  std::ostringstream ss;
39
0
  ss << "(bad)" << EscapeString(rep_);
40
0
  return ss.str();
41
137k
}
42
43
0
const char* InternalKeyComparator::Name() const {
44
0
  return "leveldb.InternalKeyComparator";
45
0
}
46
47
42.8M
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
42.8M
  int r = user_comparator_->Compare(ExtractUserKey(akey), ExtractUserKey(bkey));
53
42.8M
  if (r == 0) {
54
27.5M
    const uint64_t anum = DecodeFixed64(akey.data() + akey.size() - 8);
55
27.5M
    const uint64_t bnum = DecodeFixed64(bkey.data() + bkey.size() - 8);
56
27.5M
    if (anum > bnum) {
57
264k
      r = -1;
58
27.2M
    } else if (anum < bnum) {
59
27.1M
      r = +1;
60
27.1M
    }
61
27.5M
  }
62
42.8M
  return r;
63
42.8M
}
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
15.8k
      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.8k
    PutFixed64(&tmp,
77
15.8k
               PackSequenceAndType(kMaxSequenceNumber, kValueTypeForSeek));
78
15.8k
    assert(this->Compare(*start, tmp) < 0);
79
15.8k
    assert(this->Compare(tmp, limit) < 0);
80
15.8k
    start->swap(tmp);
81
15.8k
  }
82
24.7k
}
83
84
73.4k
void InternalKeyComparator::FindShortSuccessor(std::string* key) const {
85
73.4k
  Slice user_key = ExtractUserKey(*key);
86
73.4k
  std::string tmp(user_key.data(), user_key.size());
87
73.4k
  user_comparator_->FindShortSuccessor(&tmp);
88
73.4k
  if (tmp.size() < user_key.size() &&
89
39.0k
      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
39.0k
    PutFixed64(&tmp,
93
39.0k
               PackSequenceAndType(kMaxSequenceNumber, kValueTypeForSeek));
94
39.0k
    assert(this->Compare(*key, tmp) < 0);
95
39.0k
    key->swap(tmp);
96
39.0k
  }
97
73.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
52.8k
LookupKey::LookupKey(const Slice& user_key, SequenceNumber s) {
118
52.8k
  size_t usize = user_key.size();
119
52.8k
  size_t needed = usize + 13;  // A conservative estimate
120
52.8k
  char* dst;
121
52.8k
  if (needed <= sizeof(space_)) {
122
46.8k
    dst = space_;
123
46.8k
  } else {
124
6.06k
    dst = new char[needed];
125
6.06k
  }
126
52.8k
  start_ = dst;
127
52.8k
  dst = EncodeVarint32(dst, usize + 8);
128
52.8k
  kstart_ = dst;
129
52.8k
  std::memcpy(dst, user_key.data(), usize);
130
52.8k
  dst += usize;
131
52.8k
  EncodeFixed64(dst, PackSequenceAndType(s, kValueTypeForSeek));
132
52.8k
  dst += 8;
133
52.8k
  end_ = dst;
134
52.8k
}
135
136
}  // namespace leveldb