Coverage Report

Created: 2026-09-11 20:45

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/util/brpc_closure.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 <google/protobuf/stubs/common.h>
21
22
#include <type_traits>
23
#include <utility>
24
25
#include "runtime/query_context.h"
26
#include "runtime/thread_context.h"
27
#include "service/brpc.h" // IWYU pragma: keep
28
29
namespace doris {
30
31
template <typename T>
32
concept HasStatus = requires(T* response) { response->status(); };
33
34
template <typename Response>
35
class DummyBrpcCallback {
36
    ENABLE_FACTORY_CREATOR(DummyBrpcCallback);
37
38
public:
39
    using ResponseType = Response;
40
2.11M
    DummyBrpcCallback() {
41
2.11M
        cntl_ = std::make_shared<brpc::Controller>();
42
2.11M
        call_id_ = cntl_->call_id();
43
2.11M
        response_ = std::make_shared<Response>();
44
2.11M
    }
_ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEEC2Ev
Line
Count
Source
40
48.0k
    DummyBrpcCallback() {
41
48.0k
        cntl_ = std::make_shared<brpc::Controller>();
42
48.0k
        call_id_ = cntl_->call_id();
43
48.0k
        response_ = std::make_shared<Response>();
44
48.0k
    }
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEC2Ev
Line
Count
Source
40
46.7k
    DummyBrpcCallback() {
41
46.7k
        cntl_ = std::make_shared<brpc::Controller>();
42
46.7k
        call_id_ = cntl_->call_id();
43
46.7k
        response_ = std::make_shared<Response>();
44
46.7k
    }
_ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEC2Ev
Line
Count
Source
40
112
    DummyBrpcCallback() {
41
112
        cntl_ = std::make_shared<brpc::Controller>();
42
112
        call_id_ = cntl_->call_id();
43
112
        response_ = std::make_shared<Response>();
44
112
    }
_ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEEC2Ev
Line
Count
Source
40
2.01M
    DummyBrpcCallback() {
41
2.01M
        cntl_ = std::make_shared<brpc::Controller>();
42
2.01M
        call_id_ = cntl_->call_id();
43
2.01M
        response_ = std::make_shared<Response>();
44
2.01M
    }
_ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEEC2Ev
Line
Count
Source
40
1.85k
    DummyBrpcCallback() {
41
1.85k
        cntl_ = std::make_shared<brpc::Controller>();
42
1.85k
        call_id_ = cntl_->call_id();
43
1.85k
        response_ = std::make_shared<Response>();
44
1.85k
    }
_ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEEC2Ev
Line
Count
Source
40
2.79k
    DummyBrpcCallback() {
41
2.79k
        cntl_ = std::make_shared<brpc::Controller>();
42
2.79k
        call_id_ = cntl_->call_id();
43
2.79k
        response_ = std::make_shared<Response>();
44
2.79k
    }
_ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEEC2Ev
Line
Count
Source
40
185
    DummyBrpcCallback() {
41
185
        cntl_ = std::make_shared<brpc::Controller>();
42
185
        call_id_ = cntl_->call_id();
43
185
        response_ = std::make_shared<Response>();
44
185
    }
_ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEEC2Ev
Line
Count
Source
40
193
    DummyBrpcCallback() {
41
193
        cntl_ = std::make_shared<brpc::Controller>();
42
193
        call_id_ = cntl_->call_id();
43
193
        response_ = std::make_shared<Response>();
44
193
    }
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEC2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEEC2Ev
45
46
2.14M
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEED2Ev
Line
Count
Source
46
48.1k
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEED2Ev
Line
Count
Source
46
48.1k
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEED2Ev
Line
Count
Source
46
112
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEED2Ev
Line
Count
Source
46
2.04M
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEED2Ev
Line
Count
Source
46
1.84k
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEED2Ev
Line
Count
Source
46
2.76k
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEED2Ev
Line
Count
Source
46
185
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEED2Ev
Line
Count
Source
46
193
    virtual ~DummyBrpcCallback() = default;
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEED2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEED2Ev
47
48
48.4k
    virtual void call() {}
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEE4callEv
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEE4callEv
Line
Count
Source
48
48.4k
    virtual void call() {}
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEE4callEv
49
50
48.4k
    virtual void join() { brpc::Join(call_id_); }
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEE4joinEv
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEE4joinEv
Line
Count
Source
50
48.4k
    virtual void join() { brpc::Join(call_id_); }
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEE4joinEv
51
52
    // according to brpc doc, we MUST save the call_id before rpc done. use this id to join.
53
    // if a rpc is already done then we get the id and join, it's wrong.
54
    brpc::CallId call_id_;
55
    // controller has to be the same lifecycle with the closure, because brpc may use
56
    // it in any stage of the rpc.
57
    std::shared_ptr<brpc::Controller> cntl_;
58
    // We do not know if brpc will use request or response after brpc method returns.
59
    // So that we need keep a shared ptr here to ensure that brpc could use req/rep
60
    // at any stage.
61
    std::shared_ptr<Response> response_;
62
};
63
64
template <typename Response>
65
class HandleErrorBrpcCallback : public DummyBrpcCallback<Response> {
66
    ENABLE_FACTORY_CREATOR(HandleErrorBrpcCallback);
67
68
public:
69
    using ResponseType = Response;
70
    // input context must be held by caller
71
    HandleErrorBrpcCallback(std::weak_ptr<QueryContext> context = {})
72
4.83k
            : _context(std::move(context)) {}
_ZN5doris23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEC2ESt8weak_ptrINS_12QueryContextEE
Line
Count
Source
72
1.85k
            : _context(std::move(context)) {}
_ZN5doris23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEC2ESt8weak_ptrINS_12QueryContextEE
Line
Count
Source
72
2.79k
            : _context(std::move(context)) {}
_ZN5doris23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEC2ESt8weak_ptrINS_12QueryContextEE
Line
Count
Source
72
185
            : _context(std::move(context)) {}
73
74
4.79k
    ~HandleErrorBrpcCallback() override = default;
_ZN5doris23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEED2Ev
Line
Count
Source
74
1.84k
    ~HandleErrorBrpcCallback() override = default;
_ZN5doris23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEED2Ev
Line
Count
Source
74
2.76k
    ~HandleErrorBrpcCallback() override = default;
_ZN5doris23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEED2Ev
Line
Count
Source
74
185
    ~HandleErrorBrpcCallback() override = default;
75
76
4.82k
    void call() override {
77
4.82k
        if (this->cntl_->Failed()) {
78
3
            LOG(WARNING) << fmt::format("RPC meet failed: {}", this->cntl_->ErrorText());
79
3
            if (auto ctx = _context.lock()) {
80
1
                ctx->cancel(Status::NetworkError("RPC meet failed: {}", this->cntl_->ErrorText()));
81
1
            }
82
3
            return;
83
3
        }
84
4.81k
        if constexpr (HasStatus<Response>) {
85
4.81k
            if (Status status = Status::create(this->response_->status()); !status.ok()) {
86
15
                if (!status.is<ErrorCode::END_OF_FILE>()) {
87
2
                    LOG(WARNING) << "RPC meet error status: " << status;
88
2
                    if (auto ctx = _context.lock()) {
89
1
                        ctx->cancel(std::move(status));
90
1
                    }
91
2
                }
92
15
            }
93
4.81k
        }
94
4.81k
    }
_ZN5doris23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEE4callEv
Line
Count
Source
76
1.85k
    void call() override {
77
1.85k
        if (this->cntl_->Failed()) {
78
0
            LOG(WARNING) << fmt::format("RPC meet failed: {}", this->cntl_->ErrorText());
79
0
            if (auto ctx = _context.lock()) {
80
0
                ctx->cancel(Status::NetworkError("RPC meet failed: {}", this->cntl_->ErrorText()));
81
0
            }
82
0
            return;
83
0
        }
84
1.85k
        if constexpr (HasStatus<Response>) {
85
1.85k
            if (Status status = Status::create(this->response_->status()); !status.ok()) {
86
0
                if (!status.is<ErrorCode::END_OF_FILE>()) {
87
0
                    LOG(WARNING) << "RPC meet error status: " << status;
88
0
                    if (auto ctx = _context.lock()) {
89
0
                        ctx->cancel(std::move(status));
90
0
                    }
91
0
                }
92
0
            }
93
1.85k
        }
94
1.85k
    }
_ZN5doris23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEE4callEv
Line
Count
Source
76
2.78k
    void call() override {
77
2.78k
        if (this->cntl_->Failed()) {
78
3
            LOG(WARNING) << fmt::format("RPC meet failed: {}", this->cntl_->ErrorText());
79
3
            if (auto ctx = _context.lock()) {
80
1
                ctx->cancel(Status::NetworkError("RPC meet failed: {}", this->cntl_->ErrorText()));
81
1
            }
82
3
            return;
83
3
        }
84
2.78k
        if constexpr (HasStatus<Response>) {
85
2.78k
            if (Status status = Status::create(this->response_->status()); !status.ok()) {
86
15
                if (!status.is<ErrorCode::END_OF_FILE>()) {
87
2
                    LOG(WARNING) << "RPC meet error status: " << status;
88
2
                    if (auto ctx = _context.lock()) {
89
1
                        ctx->cancel(std::move(status));
90
1
                    }
91
2
                }
92
15
            }
93
2.78k
        }
94
2.78k
    }
_ZN5doris23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEE4callEv
Line
Count
Source
76
185
    void call() override {
77
185
        if (this->cntl_->Failed()) {
78
0
            LOG(WARNING) << fmt::format("RPC meet failed: {}", this->cntl_->ErrorText());
79
0
            if (auto ctx = _context.lock()) {
80
0
                ctx->cancel(Status::NetworkError("RPC meet failed: {}", this->cntl_->ErrorText()));
81
0
            }
82
0
            return;
83
0
        }
84
185
        if constexpr (HasStatus<Response>) {
85
185
            if (Status status = Status::create(this->response_->status()); !status.ok()) {
86
0
                if (!status.is<ErrorCode::END_OF_FILE>()) {
87
0
                    LOG(WARNING) << "RPC meet error status: " << status;
88
0
                    if (auto ctx = _context.lock()) {
89
0
                        ctx->cancel(std::move(status));
90
0
                    }
91
0
                }
92
0
            }
93
185
        }
94
185
    }
95
96
private:
97
    std::weak_ptr<QueryContext> _context;
98
};
99
100
// The closure will be deleted after callback.
101
// It could only be created by using shared ptr or unique ptr.
102
// Example:
103
//  std::unique_ptr<AutoReleaseClosure> a(b);
104
//  brpc_call(a.release());
105
// The closure does not own the callback, so the callback MUST be kept alive by its external owner
106
// while its result is still needed. A callback may indirectly retain large query-scoped objects,
107
// such as QueryContext and operator state. Holding it strongly from an in-flight RPC would extend
108
// all of those objects' lifetimes until the RPC finishes, preventing a cancelled query from
109
// releasing its memory promptly.
110
//
111
// Keep only a weak reference here. If query cancellation or teardown destroys the external owner
112
// before a late RPC completion arrives, Run() still releases the request/controller/response owned
113
// by this closure, but skips callback business logic because that query no longer needs the result.
114
template <typename Request, typename Callback>
115
class AutoReleaseClosure : public google::protobuf::Closure {
116
    using ResponseType = typename Callback::ResponseType;
117
    ENABLE_FACTORY_CREATOR(AutoReleaseClosure);
118
119
public:
120
    AutoReleaseClosure(std::shared_ptr<Request> req, std::shared_ptr<Callback> callback)
121
2.14M
            : request_(std::move(req)), callback_(callback) {
122
2.14M
        this->cntl_ = callback->cntl_;
123
2.14M
        this->response_ = callback->response_;
124
2.14M
    }
_ZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
121
47.5k
            : request_(std::move(req)), callback_(callback) {
122
47.5k
        this->cntl_ = callback->cntl_;
123
47.5k
        this->response_ = callback->response_;
124
47.5k
    }
_ZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
121
54.6k
            : request_(std::move(req)), callback_(callback) {
122
54.6k
        this->cntl_ = callback->cntl_;
123
54.6k
        this->response_ = callback->response_;
124
54.6k
    }
_ZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
121
112
            : request_(std::move(req)), callback_(callback) {
122
112
        this->cntl_ = callback->cntl_;
123
112
        this->response_ = callback->response_;
124
112
    }
_ZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
121
2.03M
            : request_(std::move(req)), callback_(callback) {
122
2.03M
        this->cntl_ = callback->cntl_;
123
2.03M
        this->response_ = callback->response_;
124
2.03M
    }
_ZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
121
2.78k
            : request_(std::move(req)), callback_(callback) {
122
2.78k
        this->cntl_ = callback->cntl_;
123
2.78k
        this->response_ = callback->response_;
124
2.78k
    }
_ZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
121
185
            : request_(std::move(req)), callback_(callback) {
122
185
        this->cntl_ = callback->cntl_;
123
185
        this->response_ = callback->response_;
124
185
    }
_ZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
121
1.85k
            : request_(std::move(req)), callback_(callback) {
122
1.85k
        this->cntl_ = callback->cntl_;
123
1.85k
        this->response_ = callback->response_;
124
1.85k
    }
_ZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEEC2ESt10shared_ptrIS1_ES4_IS2_E
Line
Count
Source
121
186
            : request_(std::move(req)), callback_(callback) {
122
186
        this->cntl_ = callback->cntl_;
123
186
        this->response_ = callback->response_;
124
186
    }
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
125
126
2.14M
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEED2Ev
Line
Count
Source
126
48.4k
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEED2Ev
Line
Count
Source
126
54.6k
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEED2Ev
Line
Count
Source
126
112
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEED2Ev
Line
Count
Source
126
2.03M
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEED2Ev
Line
Count
Source
126
2.78k
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEED2Ev
Line
Count
Source
126
185
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEED2Ev
Line
Count
Source
126
1.85k
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEED2Ev
Line
Count
Source
126
186
    ~AutoReleaseClosure() override = default;
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEED2Ev
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEED2Ev
127
128
    // Releases per-RPC resources, invokes the callback if it is still alive, and then deletes itself.
129
2.14M
    void Run() override {
130
2.14M
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
130
48.4k
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
130
54.6k
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
130
112
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
130
2.03M
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEE3RunEvENKUlvE_clEv
Line
Count
Source
130
2.78k
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEE3RunEvENKUlvE_clEv
Line
Count
Source
130
185
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEE3RunEvENKUlvE_clEv
Line
Count
Source
130
1.85k
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEE3RunEvENKUlvE_clEv
Line
Count
Source
130
186
        Defer defer {[&]() { delete this; }};
Unexecuted instantiation: _ZZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEE3RunEvENKUlvE_clEv
Unexecuted instantiation: _ZZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEE3RunEvENKUlvE_clEv
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
2.14M
        cntl_->request_attachment().clear();
142
143
2.14M
        if (auto tmp = callback_.lock()) {
144
2.14M
            tmp->call();
145
2.14M
        }
146
2.14M
    }
_ZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEE3RunEv
Line
Count
Source
129
48.4k
    void Run() override {
130
48.4k
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
48.4k
        cntl_->request_attachment().clear();
142
143
48.4k
        if (auto tmp = callback_.lock()) {
144
48.4k
            tmp->call();
145
48.4k
        }
146
48.4k
    }
_ZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEE3RunEv
Line
Count
Source
129
54.6k
    void Run() override {
130
54.6k
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
54.6k
        cntl_->request_attachment().clear();
142
143
54.6k
        if (auto tmp = callback_.lock()) {
144
54.6k
            tmp->call();
145
54.6k
        }
146
54.6k
    }
_ZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEE3RunEv
Line
Count
Source
129
112
    void Run() override {
130
112
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
112
        cntl_->request_attachment().clear();
142
143
112
        if (auto tmp = callback_.lock()) {
144
0
            tmp->call();
145
0
        }
146
112
    }
_ZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEE3RunEv
Line
Count
Source
129
2.03M
    void Run() override {
130
2.03M
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
2.03M
        cntl_->request_attachment().clear();
142
143
2.03M
        if (auto tmp = callback_.lock()) {
144
2.03M
            tmp->call();
145
2.03M
        }
146
2.03M
    }
_ZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEE3RunEv
Line
Count
Source
129
2.78k
    void Run() override {
130
2.78k
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
2.78k
        cntl_->request_attachment().clear();
142
143
2.78k
        if (auto tmp = callback_.lock()) {
144
2.78k
            tmp->call();
145
2.78k
        }
146
2.78k
    }
_ZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEE3RunEv
Line
Count
Source
129
185
    void Run() override {
130
185
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
185
        cntl_->request_attachment().clear();
142
143
185
        if (auto tmp = callback_.lock()) {
144
185
            tmp->call();
145
185
        }
146
185
    }
_ZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEE3RunEv
Line
Count
Source
129
1.85k
    void Run() override {
130
1.85k
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
1.85k
        cntl_->request_attachment().clear();
142
143
1.85k
        if (auto tmp = callback_.lock()) {
144
1.85k
            tmp->call();
145
1.85k
        }
146
1.85k
    }
_ZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEE3RunEv
Line
Count
Source
129
186
    void Run() override {
130
186
        Defer defer {[&]() { delete this; }};
131
132
        // The request attachment is no longer needed after brpc finishes the RPC. It can contain a
133
        // large serialized runtime filter, especially a Bloom filter. Since the callback owner may
134
        // retain cntl_ after this closure is deleted (and some callbacks may also reuse it), keeping
135
        // the attachment here would retain that memory until the next Controller::Reset() or until
136
        // the callback is destroyed.
137
        //
138
        // This must be cleared before call(): a callback may synchronously start the next RPC and
139
        // reuse the same Controller, in which case clearing it after call() could erase the new
140
        // RPC's request attachment.
141
186
        cntl_->request_attachment().clear();
142
143
186
        if (auto tmp = callback_.lock()) {
144
185
            tmp->call();
145
185
        }
146
186
    }
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEE3RunEv
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEE3RunEv
147
148
    // controller has to be the same lifecycle with the closure, because brpc may use
149
    // it in any stage of the rpc.
150
    std::shared_ptr<brpc::Controller> cntl_;
151
    // We do not know if brpc will use request or response after brpc method returns.
152
    // So that we need keep a shared ptr here to ensure that brpc could use req/rep
153
    // at any stage.
154
    std::shared_ptr<Request> request_;
155
    std::shared_ptr<ResponseType> response_;
156
157
private:
158
    std::weak_ptr<Callback> callback_;
159
};
160
161
} // namespace doris