Coverage Report

Created: 2026-07-29 08:33

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/util/obj_lru_cache.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include "runtime/memory/lru_cache_policy.h"
21
#include "util/lru_cache.h"
22
23
namespace doris {
24
25
// A common object cache depends on an Sharded LRU Cache.
26
// It has a certain capacity, which determin how many objects it can cache.
27
// Caller must hold a CacheHandle instance when visiting the cached object.
28
class ObjLRUCache : public LRUCachePolicy {
29
public:
30
    using LRUCachePolicy::insert;
31
32
    struct ObjKey {
33
93.3k
        ObjKey(const std::string& key_) : key(key_) {}
34
35
        std::string key;
36
    };
37
38
    template <typename T>
39
    class ObjValue : public LRUCacheValueBase {
40
    public:
41
7.14k
        ObjValue(const T* value) : value(value) {}
_ZN5doris11ObjLRUCache8ObjValueINS_6format7parquet21NativeParquetMetadataEEC2EPKS4_
Line
Count
Source
41
6.34k
        ObjValue(const T* value) : value(value) {}
_ZN5doris11ObjLRUCache8ObjValueINS_12FileMetaDataEEC2EPKS2_
Line
Count
Source
41
426
        ObjValue(const T* value) : value(value) {}
_ZN5doris11ObjLRUCache8ObjValueINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEC2EPKS7_
Line
Count
Source
41
377
        ObjValue(const T* value) : value(value) {}
42
6.95k
        ~ObjValue() override {
43
6.95k
            T* v = (T*)value;
44
6.95k
            delete v;
45
6.95k
        }
_ZN5doris11ObjLRUCache8ObjValueINS_6format7parquet21NativeParquetMetadataEED2Ev
Line
Count
Source
42
6.29k
        ~ObjValue() override {
43
6.29k
            T* v = (T*)value;
44
6.29k
            delete v;
45
6.29k
        }
_ZN5doris11ObjLRUCache8ObjValueINS_12FileMetaDataEED2Ev
Line
Count
Source
42
339
        ~ObjValue() override {
43
339
            T* v = (T*)value;
44
339
            delete v;
45
339
        }
_ZN5doris11ObjLRUCache8ObjValueINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev
Line
Count
Source
42
323
        ~ObjValue() override {
43
323
            T* v = (T*)value;
44
323
            delete v;
45
323
        }
46
47
        const T* value;
48
    };
49
50
    class CacheHandle {
51
    public:
52
178k
        CacheHandle() = default;
53
        CacheHandle(LRUCachePolicy* cache, Cache::Handle* handle)
54
86.5k
                : _cache(cache), _handle(handle) {}
55
264k
        ~CacheHandle() {
56
264k
            if (_handle != nullptr) {
57
86.1k
                _cache->release(_handle);
58
86.1k
            }
59
264k
        }
60
61
0
        CacheHandle(CacheHandle&& other) noexcept {
62
0
            std::swap(_cache, other._cache);
63
0
            std::swap(_handle, other._handle);
64
0
        }
65
66
171k
        CacheHandle& operator=(CacheHandle&& other) noexcept {
67
171k
            std::swap(_cache, other._cache);
68
171k
            std::swap(_handle, other._handle);
69
171k
            return *this;
70
171k
        }
71
72
0
        bool valid() { return _cache != nullptr && _handle != nullptr; }
73
74
0
        LRUCachePolicy* cache() const { return _cache; }
75
76
        template <typename T>
77
86.4k
        const T* data() const {
78
86.4k
            return ((ObjValue<T>*)_cache->value(_handle))->value;
79
86.4k
        }
_ZNK5doris11ObjLRUCache11CacheHandle4dataINS_6format7parquet21NativeParquetMetadataEEEPKT_v
Line
Count
Source
77
82.4k
        const T* data() const {
78
82.4k
            return ((ObjValue<T>*)_cache->value(_handle))->value;
79
82.4k
        }
_ZNK5doris11ObjLRUCache11CacheHandle4dataINS_12FileMetaDataEEEPKT_v
Line
Count
Source
77
2.19k
        const T* data() const {
78
2.19k
            return ((ObjValue<T>*)_cache->value(_handle))->value;
79
2.19k
        }
_ZNK5doris11ObjLRUCache11CacheHandle4dataINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEPKT_v
Line
Count
Source
77
1.80k
        const T* data() const {
78
1.80k
            return ((ObjValue<T>*)_cache->value(_handle))->value;
79
1.80k
        }
80
81
    private:
82
        LRUCachePolicy* _cache = nullptr;
83
        Cache::Handle* _handle = nullptr;
84
85
        // Don't allow copy and assign
86
        DISALLOW_COPY_AND_ASSIGN(CacheHandle);
87
    };
88
89
    ObjLRUCache(int64_t capacity, uint32_t num_shards = DEFAULT_LRU_CACHE_NUM_SHARDS);
90
91
    bool lookup(const ObjKey& key, CacheHandle* handle);
92
93
    template <typename T>
94
7.15k
    void insert(const ObjKey& key, const T* value, CacheHandle* cache_handle) {
95
7.17k
        if (_enabled) {
96
7.17k
            const std::string& encoded_key = key.key;
97
7.17k
            auto* obj_value = new ObjValue<T>(value);
98
7.17k
            auto* handle = LRUCachePolicy::insert(encoded_key, obj_value, 1, sizeof(T),
99
7.17k
                                                  CachePriority::NORMAL);
100
7.17k
            *cache_handle = CacheHandle {this, handle};
101
18.4E
        } else {
102
18.4E
            throw doris::Exception(ErrorCode::INTERNAL_ERROR,
103
18.4E
                                   "ObjLRUCache disable, can not insert.");
104
18.4E
        }
105
7.15k
    }
_ZN5doris11ObjLRUCache6insertINS_6format7parquet21NativeParquetMetadataEEEvRKNS0_6ObjKeyEPKT_PNS0_11CacheHandleE
Line
Count
Source
94
6.35k
    void insert(const ObjKey& key, const T* value, CacheHandle* cache_handle) {
95
6.36k
        if (_enabled) {
96
6.36k
            const std::string& encoded_key = key.key;
97
6.36k
            auto* obj_value = new ObjValue<T>(value);
98
6.36k
            auto* handle = LRUCachePolicy::insert(encoded_key, obj_value, 1, sizeof(T),
99
6.36k
                                                  CachePriority::NORMAL);
100
6.36k
            *cache_handle = CacheHandle {this, handle};
101
18.4E
        } else {
102
18.4E
            throw doris::Exception(ErrorCode::INTERNAL_ERROR,
103
18.4E
                                   "ObjLRUCache disable, can not insert.");
104
18.4E
        }
105
6.35k
    }
_ZN5doris11ObjLRUCache6insertINS_12FileMetaDataEEEvRKNS0_6ObjKeyEPKT_PNS0_11CacheHandleE
Line
Count
Source
94
428
    void insert(const ObjKey& key, const T* value, CacheHandle* cache_handle) {
95
432
        if (_enabled) {
96
432
            const std::string& encoded_key = key.key;
97
432
            auto* obj_value = new ObjValue<T>(value);
98
432
            auto* handle = LRUCachePolicy::insert(encoded_key, obj_value, 1, sizeof(T),
99
432
                                                  CachePriority::NORMAL);
100
432
            *cache_handle = CacheHandle {this, handle};
101
18.4E
        } else {
102
18.4E
            throw doris::Exception(ErrorCode::INTERNAL_ERROR,
103
18.4E
                                   "ObjLRUCache disable, can not insert.");
104
18.4E
        }
105
428
    }
_ZN5doris11ObjLRUCache6insertINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEvRKNS0_6ObjKeyEPKT_PNS0_11CacheHandleE
Line
Count
Source
94
377
    void insert(const ObjKey& key, const T* value, CacheHandle* cache_handle) {
95
377
        if (_enabled) {
96
377
            const std::string& encoded_key = key.key;
97
377
            auto* obj_value = new ObjValue<T>(value);
98
377
            auto* handle = LRUCachePolicy::insert(encoded_key, obj_value, 1, sizeof(T),
99
377
                                                  CachePriority::NORMAL);
100
377
            *cache_handle = CacheHandle {this, handle};
101
377
        } else {
102
0
            throw doris::Exception(ErrorCode::INTERNAL_ERROR,
103
0
                                   "ObjLRUCache disable, can not insert.");
104
0
        }
105
377
    }
106
107
    void erase(const ObjKey& key);
108
109
    bool exceed_prune_limit() override;
110
111
95.5k
    bool enabled() const { return _enabled; }
112
113
private:
114
    const bool _enabled;
115
};
116
117
} // namespace doris