Coverage Report

Created: 2026-06-02 17:50

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
41.9k
    DummyBrpcCallback() {
41
41.9k
        cntl_ = std::make_shared<brpc::Controller>();
42
41.9k
        call_id_ = cntl_->call_id();
43
41.9k
        response_ = std::make_shared<Response>();
44
41.9k
    }
_ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEEC2Ev
Line
Count
Source
40
3
    DummyBrpcCallback() {
41
3
        cntl_ = std::make_shared<brpc::Controller>();
42
3
        call_id_ = cntl_->call_id();
43
3
        response_ = std::make_shared<Response>();
44
3
    }
_ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEEC2Ev
Line
Count
Source
40
150
    DummyBrpcCallback() {
41
150
        cntl_ = std::make_shared<brpc::Controller>();
42
150
        call_id_ = cntl_->call_id();
43
150
        response_ = std::make_shared<Response>();
44
150
    }
_ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEEC2Ev
Line
Count
Source
40
11
    DummyBrpcCallback() {
41
11
        cntl_ = std::make_shared<brpc::Controller>();
42
11
        call_id_ = cntl_->call_id();
43
11
        response_ = std::make_shared<Response>();
44
11
    }
_ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEEC2Ev
Line
Count
Source
40
354
    DummyBrpcCallback() {
41
354
        cntl_ = std::make_shared<brpc::Controller>();
42
354
        call_id_ = cntl_->call_id();
43
354
        response_ = std::make_shared<Response>();
44
354
    }
_ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEEC2Ev
Line
Count
Source
40
7.81k
    DummyBrpcCallback() {
41
7.81k
        cntl_ = std::make_shared<brpc::Controller>();
42
7.81k
        call_id_ = cntl_->call_id();
43
7.81k
        response_ = std::make_shared<Response>();
44
7.81k
    }
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEC2Ev
Line
Count
Source
40
7.79k
    DummyBrpcCallback() {
41
7.79k
        cntl_ = std::make_shared<brpc::Controller>();
42
7.79k
        call_id_ = cntl_->call_id();
43
7.79k
        response_ = std::make_shared<Response>();
44
7.79k
    }
_ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEC2Ev
Line
Count
Source
40
1
    DummyBrpcCallback() {
41
1
        cntl_ = std::make_shared<brpc::Controller>();
42
1
        call_id_ = cntl_->call_id();
43
1
        response_ = std::make_shared<Response>();
44
1
    }
_ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEEC2Ev
Line
Count
Source
40
25.8k
    DummyBrpcCallback() {
41
25.8k
        cntl_ = std::make_shared<brpc::Controller>();
42
25.8k
        call_id_ = cntl_->call_id();
43
25.8k
        response_ = std::make_shared<Response>();
44
25.8k
    }
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEC2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEEC2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEEC2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEEC2Ev
45
46
42.2k
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEED2Ev
Line
Count
Source
46
3
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEED2Ev
Line
Count
Source
46
148
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEED2Ev
Line
Count
Source
46
11
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEED2Ev
Line
Count
Source
46
344
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEED2Ev
Line
Count
Source
46
7.81k
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEED2Ev
Line
Count
Source
46
7.79k
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEED2Ev
Line
Count
Source
46
1
    virtual ~DummyBrpcCallback() = default;
_ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEED2Ev
Line
Count
Source
46
26.1k
    virtual ~DummyBrpcCallback() = default;
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEED2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEED2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEED2Ev
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEED2Ev
47
48
7.81k
    virtual void call() {}
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEE4callEv
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEE4callEv
Line
Count
Source
48
7.81k
    virtual void call() {}
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEE4callEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEE4callEv
49
50
7.80k
    virtual void join() { brpc::Join(call_id_); }
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_19PTransmitDataResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSyncFilterSizeResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_22PPublishFilterResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PSendFilterSizeResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_20PMergeFilterResponseEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriterAddBlockResultEE4joinEv
_ZN5doris17DummyBrpcCallbackINS_23PTabletWriterOpenResultEE4joinEv
Line
Count
Source
50
7.80k
    virtual void join() { brpc::Join(call_id_); }
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_25PTabletWriterCancelResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_21PFetchArrowDataResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEE4joinEv
Unexecuted instantiation: _ZN5doris17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEE4joinEv
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
505
            : _context(std::move(context)) {}
_ZN5doris23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEC2ESt8weak_ptrINS_12QueryContextEE
Line
Count
Source
72
3
            : _context(std::move(context)) {}
_ZN5doris23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEC2ESt8weak_ptrINS_12QueryContextEE
Line
Count
Source
72
150
            : _context(std::move(context)) {}
_ZN5doris23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEC2ESt8weak_ptrINS_12QueryContextEE
Line
Count
Source
72
352
            : _context(std::move(context)) {}
73
74
493
    ~HandleErrorBrpcCallback() override = default;
_ZN5doris23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEED2Ev
Line
Count
Source
74
3
    ~HandleErrorBrpcCallback() override = default;
_ZN5doris23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEED2Ev
Line
Count
Source
74
148
    ~HandleErrorBrpcCallback() override = default;
_ZN5doris23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEED2Ev
Line
Count
Source
74
342
    ~HandleErrorBrpcCallback() override = default;
75
76
504
    void call() override {
77
504
        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
501
        if constexpr (HasStatus<Response>) {
85
501
            if (Status status = Status::create(this->response_->status()); !status.ok()) {
86
5
                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
5
            }
93
501
        }
94
501
    }
_ZN5doris23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEE4callEv
Line
Count
Source
76
3
    void call() override {
77
3
        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
3
        if constexpr (HasStatus<Response>) {
85
3
            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
3
        }
94
3
    }
_ZN5doris23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEE4callEv
Line
Count
Source
76
150
    void call() override {
77
150
        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
150
        if constexpr (HasStatus<Response>) {
85
150
            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
150
        }
94
150
    }
_ZN5doris23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEE4callEv
Line
Count
Source
76
351
    void call() override {
77
351
        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
348
        if constexpr (HasStatus<Response>) {
85
348
            if (Status status = Status::create(this->response_->status()); !status.ok()) {
86
5
                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
5
            }
93
348
        }
94
348
    }
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 doesn't own the callback, so the callback MUST be kept alive outside.
106
// closure only keep a weak ref. if outside owner destroyed (like query finish), the callback will be ignored.
107
template <typename Request, typename Callback>
108
class AutoReleaseClosure : public google::protobuf::Closure {
109
    using ResponseType = typename Callback::ResponseType;
110
    ENABLE_FACTORY_CREATOR(AutoReleaseClosure);
111
112
public:
113
    AutoReleaseClosure(std::shared_ptr<Request> req, std::shared_ptr<Callback> callback)
114
45.1k
            : request_(std::move(req)), callback_(callback) {
115
45.1k
        this->cntl_ = callback->cntl_;
116
45.1k
        this->response_ = callback->response_;
117
45.1k
    }
_ZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
114
3
            : request_(std::move(req)), callback_(callback) {
115
3
        this->cntl_ = callback->cntl_;
116
3
        this->response_ = callback->response_;
117
3
    }
_ZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
114
150
            : request_(std::move(req)), callback_(callback) {
115
150
        this->cntl_ = callback->cntl_;
116
150
        this->response_ = callback->response_;
117
150
    }
_ZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEEC2ESt10shared_ptrIS1_ES4_IS2_E
Line
Count
Source
114
4
            : request_(std::move(req)), callback_(callback) {
115
4
        this->cntl_ = callback->cntl_;
116
4
        this->response_ = callback->response_;
117
4
    }
_ZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
114
345
            : request_(std::move(req)), callback_(callback) {
115
345
        this->cntl_ = callback->cntl_;
116
345
        this->response_ = callback->response_;
117
345
    }
_ZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
114
7.80k
            : request_(std::move(req)), callback_(callback) {
115
7.80k
        this->cntl_ = callback->cntl_;
116
7.80k
        this->response_ = callback->response_;
117
7.80k
    }
_ZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
114
8.99k
            : request_(std::move(req)), callback_(callback) {
115
8.99k
        this->cntl_ = callback->cntl_;
116
8.99k
        this->response_ = callback->response_;
117
8.99k
    }
_ZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
114
1
            : request_(std::move(req)), callback_(callback) {
115
1
        this->cntl_ = callback->cntl_;
116
1
        this->response_ = callback->response_;
117
1
    }
_ZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Line
Count
Source
114
27.8k
            : request_(std::move(req)), callback_(callback) {
115
27.8k
        this->cntl_ = callback->cntl_;
116
27.8k
        this->response_ = callback->response_;
117
27.8k
    }
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_28PTabletWriteSlaveDoneRequestENS_17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_24PTabletWriteSlaveRequestENS_17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEEEEC2ESt10shared_ptrIS1_ES6_IS4_E
118
119
45.1k
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEED2Ev
Line
Count
Source
119
3
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEED2Ev
Line
Count
Source
119
150
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEED2Ev
Line
Count
Source
119
4
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEED2Ev
Line
Count
Source
119
344
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEED2Ev
Line
Count
Source
119
7.81k
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEED2Ev
Line
Count
Source
119
8.97k
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEED2Ev
Line
Count
Source
119
1
    ~AutoReleaseClosure() override = default;
_ZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEED2Ev
Line
Count
Source
119
27.8k
    ~AutoReleaseClosure() override = default;
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEED2Ev
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEED2Ev
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_28PTabletWriteSlaveDoneRequestENS_17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEEEED2Ev
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_24PTabletWriteSlaveRequestENS_17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEEEED2Ev
120
121
    // Will delete itself. all operations should be done in callback's call(). Run() only do one thing.
122
45.1k
    void Run() override {
123
45.2k
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEE3RunEvENKUlvE_clEv
Line
Count
Source
123
3
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEE3RunEvENKUlvE_clEv
Line
Count
Source
123
150
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEE3RunEvENKUlvE_clEv
Line
Count
Source
123
4
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEE3RunEvENKUlvE_clEv
Line
Count
Source
123
345
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
123
7.81k
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
123
8.98k
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
123
1
        Defer defer {[&]() { delete this; }};
_ZZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEE3RunEvENKUlvE_clEv
Line
Count
Source
123
27.9k
        Defer defer {[&]() { delete this; }};
Unexecuted instantiation: _ZZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEE3RunEvENKUlvE_clEv
Unexecuted instantiation: _ZZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEE3RunEvENKUlvE_clEv
Unexecuted instantiation: _ZZN5doris18AutoReleaseClosureINS_28PTabletWriteSlaveDoneRequestENS_17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEEEE3RunEvENKUlvE_clEv
Unexecuted instantiation: _ZZN5doris18AutoReleaseClosureINS_24PTabletWriteSlaveRequestENS_17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEEEE3RunEvENKUlvE_clEv
124
45.2k
        if (auto tmp = callback_.lock()) {
125
45.2k
            tmp->call();
126
45.2k
        }
127
45.1k
    }
_ZN5doris18AutoReleaseClosureINS_22PSyncFilterSizeRequestENS_23HandleErrorBrpcCallbackINS_23PSyncFilterSizeResponseEEEE3RunEv
Line
Count
Source
122
3
    void Run() override {
123
3
        Defer defer {[&]() { delete this; }};
124
3
        if (auto tmp = callback_.lock()) {
125
3
            tmp->call();
126
3
        }
127
3
    }
_ZN5doris18AutoReleaseClosureINS_23PPublishFilterRequestV2ENS_23HandleErrorBrpcCallbackINS_22PPublishFilterResponseEEEE3RunEv
Line
Count
Source
122
150
    void Run() override {
123
150
        Defer defer {[&]() { delete this; }};
124
150
        if (auto tmp = callback_.lock()) {
125
150
            tmp->call();
126
150
        }
127
150
    }
_ZN5doris18AutoReleaseClosureINS_22PSendFilterSizeRequestENS_16SyncSizeCallbackEE3RunEv
Line
Count
Source
122
4
    void Run() override {
123
4
        Defer defer {[&]() { delete this; }};
124
4
        if (auto tmp = callback_.lock()) {
125
3
            tmp->call();
126
3
        }
127
4
    }
_ZN5doris18AutoReleaseClosureINS_19PMergeFilterRequestENS_23HandleErrorBrpcCallbackINS_20PMergeFilterResponseEEEE3RunEv
Line
Count
Source
122
345
    void Run() override {
123
345
        Defer defer {[&]() { delete this; }};
124
345
        if (auto tmp = callback_.lock()) {
125
344
            tmp->call();
126
344
        }
127
345
    }
_ZN5doris18AutoReleaseClosureINS_24PTabletWriterOpenRequestENS_17DummyBrpcCallbackINS_23PTabletWriterOpenResultEEEE3RunEv
Line
Count
Source
122
7.81k
    void Run() override {
123
7.81k
        Defer defer {[&]() { delete this; }};
124
7.81k
        if (auto tmp = callback_.lock()) {
125
7.81k
            tmp->call();
126
7.81k
        }
127
7.81k
    }
_ZN5doris18AutoReleaseClosureINS_28PTabletWriterAddBlockRequestENS_18WriteBlockCallbackINS_27PTabletWriterAddBlockResultEEEE3RunEv
Line
Count
Source
122
8.97k
    void Run() override {
123
8.97k
        Defer defer {[&]() { delete this; }};
124
8.99k
        if (auto tmp = callback_.lock()) {
125
8.99k
            tmp->call();
126
8.99k
        }
127
8.97k
    }
_ZN5doris18AutoReleaseClosureINS_26PTabletWriterCancelRequestENS_17DummyBrpcCallbackINS_25PTabletWriterCancelResultEEEE3RunEv
Line
Count
Source
122
1
    void Run() override {
123
1
        Defer defer {[&]() { delete this; }};
124
1
        if (auto tmp = callback_.lock()) {
125
0
            tmp->call();
126
0
        }
127
1
    }
_ZN5doris18AutoReleaseClosureINS_19PTransmitDataParamsENS_20ExchangeSendCallbackINS_19PTransmitDataResultEEEE3RunEv
Line
Count
Source
122
27.8k
    void Run() override {
123
27.8k
        Defer defer {[&]() { delete this; }};
124
27.9k
        if (auto tmp = callback_.lock()) {
125
27.9k
            tmp->call();
126
27.9k
        }
127
27.8k
    }
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_30PFetchArrowFlightSchemaRequestENS_17DummyBrpcCallbackINS_29PFetchArrowFlightSchemaResultEEEE3RunEv
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_22PFetchArrowDataRequestENS_17DummyBrpcCallbackINS_21PFetchArrowDataResultEEEE3RunEv
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_28PTabletWriteSlaveDoneRequestENS_17DummyBrpcCallbackINS_27PTabletWriteSlaveDoneResultEEEE3RunEv
Unexecuted instantiation: _ZN5doris18AutoReleaseClosureINS_24PTabletWriteSlaveRequestENS_17DummyBrpcCallbackINS_23PTabletWriteSlaveResultEEEE3RunEv
128
129
    // controller has to be the same lifecycle with the closure, because brpc may use
130
    // it in any stage of the rpc.
131
    std::shared_ptr<brpc::Controller> cntl_;
132
    // We do not know if brpc will use request or response after brpc method returns.
133
    // So that we need keep a shared ptr here to ensure that brpc could use req/rep
134
    // at any stage.
135
    std::shared_ptr<Request> request_;
136
    std::shared_ptr<ResponseType> response_;
137
138
private:
139
    std::weak_ptr<Callback> callback_;
140
};
141
142
} // namespace doris