Coverage Report

Created: 2026-07-25 03:44

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/util/thrift_util.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 <gen_cpp/DataSinks_types.h>
21
#include <gen_cpp/Types_types.h>
22
#include <thrift/TApplicationException.h>
23
#include <thrift/transport/TBufferTransports.h>
24
25
#include <cstdint>
26
#include <cstring>
27
#include <exception>
28
#include <memory>
29
#include <string>
30
#include <vector>
31
32
#include "common/status.h"
33
34
namespace apache::thrift::protocol {
35
class TProtocol;
36
class TProtocolFactory;
37
} // namespace apache::thrift::protocol
38
39
namespace doris {
40
41
class TNetworkAddress;
42
class ThriftServer;
43
44
// Utility class to serialize thrift objects to a binary format.  This object
45
// should be reused if possible to reuse the underlying memory.
46
// Note: thrift will encode NULLs into the serialized buffer so it is not valid
47
// to treat it as a string.
48
class ThriftSerializer {
49
public:
50
    // If compact, the objects will be serialized using the Compact Protocol.  Otherwise,
51
    // we'll use the binary protocol.
52
    // Note: the deserializer must be matching.
53
    ThriftSerializer(bool compact, int initial_buffer_size);
54
55
    // Serializes obj into result.  Result will contain a copy of the memory.
56
    template <class T>
57
    Status serialize(T* obj, std::vector<uint8_t>* result) {
58
        uint32_t len = 0;
59
        uint8_t* buffer = nullptr;
60
        RETURN_IF_ERROR(serialize<T>(obj, &len, &buffer));
61
        result->resize(len);
62
        memcpy(result->data(), buffer, len);
63
        return Status::OK();
64
    }
65
66
    // serialize obj into a memory buffer.  The result is returned in buffer/len.  The
67
    // memory returned is owned by this object and will be invalid when another object
68
    // is serialized.
69
    template <class T>
70
153k
    Status serialize(T* obj, uint32_t* len, uint8_t** buffer) {
71
153k
        try {
72
153k
            _mem_buffer->resetBuffer();
73
153k
            obj->write(_protocol.get());
74
153k
        } catch (std::exception& e) {
75
0
            return Status::InternalError("Couldn't serialize thrift object:\n{}", e.what());
76
0
        }
77
78
153k
        _mem_buffer->getBuffer(buffer, len);
79
153k
        return Status::OK();
80
153k
    }
_ZN5doris16ThriftSerializer9serializeINS_26TJavaUdfExecutorCtorParamsEEENS_6StatusEPT_PjPPh
Line
Count
Source
70
5.07k
    Status serialize(T* obj, uint32_t* len, uint8_t** buffer) {
71
5.07k
        try {
72
5.07k
            _mem_buffer->resetBuffer();
73
5.07k
            obj->write(_protocol.get());
74
5.07k
        } catch (std::exception& e) {
75
0
            return Status::InternalError("Couldn't serialize thrift object:\n{}", e.what());
76
0
        }
77
78
5.09k
        _mem_buffer->getBuffer(buffer, len);
79
5.09k
        return Status::OK();
80
5.07k
    }
_ZN5doris16ThriftSerializer9serializeINS_12TResultBatchEEENS_6StatusEPT_PjPPh
Line
Count
Source
70
148k
    Status serialize(T* obj, uint32_t* len, uint8_t** buffer) {
71
148k
        try {
72
148k
            _mem_buffer->resetBuffer();
73
148k
            obj->write(_protocol.get());
74
148k
        } catch (std::exception& e) {
75
0
            return Status::InternalError("Couldn't serialize thrift object:\n{}", e.what());
76
0
        }
77
78
148k
        _mem_buffer->getBuffer(buffer, len);
79
148k
        return Status::OK();
80
148k
    }
_ZN5doris16ThriftSerializer9serializeINS_19TRuntimeProfileTreeEEENS_6StatusEPT_PjPPh
Line
Count
Source
70
65
    Status serialize(T* obj, uint32_t* len, uint8_t** buffer) {
71
65
        try {
72
65
            _mem_buffer->resetBuffer();
73
65
            obj->write(_protocol.get());
74
65
        } catch (std::exception& e) {
75
0
            return Status::InternalError("Couldn't serialize thrift object:\n{}", e.what());
76
0
        }
77
78
65
        _mem_buffer->getBuffer(buffer, len);
79
65
        return Status::OK();
80
65
    }
81
82
    template <class T>
83
1.21k
    Status serialize(T* obj, std::string* result) {
84
1.21k
        try {
85
1.21k
            _mem_buffer->resetBuffer();
86
1.21k
            obj->write(_protocol.get());
87
1.21k
        } catch (apache::thrift::TApplicationException& e) {
88
0
            return Status::InternalError("Couldn't serialize thrift object:\n{}", e.what());
89
0
        }
90
91
1.26k
        *result = _mem_buffer->getBufferAsString();
92
1.26k
        return Status::OK();
93
1.21k
    }
94
95
    template <class T>
96
    Status serialize(T* obj) {
97
        try {
98
            _mem_buffer->resetBuffer();
99
            obj->write(_protocol.get());
100
        } catch (apache::thrift::TApplicationException& e) {
101
            return Status::InternalError("Couldn't serialize thrift object:\n{}", e.what());
102
        }
103
104
        return Status::OK();
105
    }
106
107
0
    void get_buffer(uint8_t** buffer, uint32_t* length) { _mem_buffer->getBuffer(buffer, length); }
108
109
private:
110
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> _mem_buffer;
111
    std::shared_ptr<apache::thrift::protocol::TProtocol> _protocol;
112
};
113
114
class ThriftDeserializer {
115
public:
116
    ThriftDeserializer(bool compact);
117
118
private:
119
    std::shared_ptr<apache::thrift::protocol::TProtocolFactory> _factory;
120
    std::shared_ptr<apache::thrift::protocol::TProtocol> _tproto;
121
};
122
123
// Utility to create a protocol (deserialization) object for 'mem'.
124
std::shared_ptr<apache::thrift::protocol::TProtocol> create_deserialize_protocol(
125
        std::shared_ptr<apache::thrift::transport::TMemoryBuffer> mem, bool compact);
126
127
// Deserialize a thrift message from buf/len.  buf/len must at least contain
128
// all the bytes needed to store the thrift message.  On return, len will be
129
// set to the actual length of the header.
130
template <class T>
131
Status deserialize_thrift_msg(const uint8_t* buf, uint32_t* len, bool compact,
132
935k
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
935k
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
935k
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
935k
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
935k
            new apache::thrift::transport::TMemoryBuffer(
142
935k
                    const_cast<uint8_t*>(buf), *len,
143
935k
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
935k
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
935k
            create_deserialize_protocol(tmem_transport, compact);
146
147
935k
    try {
148
935k
        deserialized_msg->read(tproto.get());
149
935k
    } catch (std::exception& e) {
150
469
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
469
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
934k
    uint32_t bytes_left = tmem_transport->available_read();
157
934k
    *len = *len - bytes_left;
158
934k
    return Status::OK();
159
935k
}
_ZN5doris22deserialize_thrift_msgIN8tparquet17BloomFilterHeaderEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
12
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
12
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
12
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
12
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
12
            new apache::thrift::transport::TMemoryBuffer(
142
12
                    const_cast<uint8_t*>(buf), *len,
143
12
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
12
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
12
            create_deserialize_protocol(tmem_transport, compact);
146
147
12
    try {
148
12
        deserialized_msg->read(tproto.get());
149
12
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
12
    uint32_t bytes_left = tmem_transport->available_read();
157
12
    *len = *len - bytes_left;
158
12
    return Status::OK();
159
12
}
_ZN5doris22deserialize_thrift_msgINS_19TRuntimeProfileTreeEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
65
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
65
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
65
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
65
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
65
            new apache::thrift::transport::TMemoryBuffer(
142
65
                    const_cast<uint8_t*>(buf), *len,
143
65
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
65
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
65
            create_deserialize_protocol(tmem_transport, compact);
146
147
65
    try {
148
65
        deserialized_msg->read(tproto.get());
149
65
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
65
    uint32_t bytes_left = tmem_transport->available_read();
157
65
    *len = *len - bytes_left;
158
65
    return Status::OK();
159
65
}
_ZN5doris22deserialize_thrift_msgIN8tparquet12FileMetaDataEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
6.56k
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
6.56k
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
6.56k
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
6.56k
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
6.56k
            new apache::thrift::transport::TMemoryBuffer(
142
6.56k
                    const_cast<uint8_t*>(buf), *len,
143
6.56k
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
6.56k
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
6.56k
            create_deserialize_protocol(tmem_transport, compact);
146
147
6.56k
    try {
148
6.56k
        deserialized_msg->read(tproto.get());
149
6.56k
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
6.57k
    uint32_t bytes_left = tmem_transport->available_read();
157
6.57k
    *len = *len - bytes_left;
158
6.57k
    return Status::OK();
159
6.56k
}
_ZN5doris22deserialize_thrift_msgIN8tparquet11ColumnIndexEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
3.03k
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
3.03k
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
3.03k
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
3.03k
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
3.03k
            new apache::thrift::transport::TMemoryBuffer(
142
3.03k
                    const_cast<uint8_t*>(buf), *len,
143
3.03k
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
3.03k
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
3.03k
            create_deserialize_protocol(tmem_transport, compact);
146
147
3.03k
    try {
148
3.03k
        deserialized_msg->read(tproto.get());
149
3.03k
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
3.03k
    uint32_t bytes_left = tmem_transport->available_read();
157
3.03k
    *len = *len - bytes_left;
158
3.03k
    return Status::OK();
159
3.03k
}
_ZN5doris22deserialize_thrift_msgIN8tparquet11OffsetIndexEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
8.26k
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
8.26k
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
8.26k
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
8.26k
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
8.26k
            new apache::thrift::transport::TMemoryBuffer(
142
8.26k
                    const_cast<uint8_t*>(buf), *len,
143
8.26k
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
8.26k
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
8.26k
            create_deserialize_protocol(tmem_transport, compact);
146
147
8.26k
    try {
148
8.26k
        deserialized_msg->read(tproto.get());
149
8.26k
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
8.29k
    uint32_t bytes_left = tmem_transport->available_read();
157
8.29k
    *len = *len - bytes_left;
158
8.29k
    return Status::OK();
159
8.26k
}
_ZN5doris22deserialize_thrift_msgIN8tparquet10PageHeaderEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
653k
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
653k
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
653k
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
653k
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
653k
            new apache::thrift::transport::TMemoryBuffer(
142
653k
                    const_cast<uint8_t*>(buf), *len,
143
653k
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
653k
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
653k
            create_deserialize_protocol(tmem_transport, compact);
146
147
653k
    try {
148
653k
        deserialized_msg->read(tproto.get());
149
653k
    } catch (std::exception& e) {
150
469
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
469
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
652k
    uint32_t bytes_left = tmem_transport->available_read();
157
652k
    *len = *len - bytes_left;
158
652k
    return Status::OK();
159
653k
}
_ZN5doris22deserialize_thrift_msgINS_14TQueryPlanInfoEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
3
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
3
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
3
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
3
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
3
            new apache::thrift::transport::TMemoryBuffer(
142
3
                    const_cast<uint8_t*>(buf), *len,
143
3
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
3
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
3
            create_deserialize_protocol(tmem_transport, compact);
146
147
3
    try {
148
3
        deserialized_msg->read(tproto.get());
149
3
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
3
    uint32_t bytes_left = tmem_transport->available_read();
157
3
    *len = *len - bytes_left;
158
3
    return Status::OK();
159
3
}
_ZN5doris22deserialize_thrift_msgINS_27TPipelineFragmentParamsListEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
259k
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
259k
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
259k
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
259k
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
259k
            new apache::thrift::transport::TMemoryBuffer(
142
259k
                    const_cast<uint8_t*>(buf), *len,
143
259k
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
259k
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
259k
            create_deserialize_protocol(tmem_transport, compact);
146
147
259k
    try {
148
259k
        deserialized_msg->read(tproto.get());
149
259k
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
259k
    uint32_t bytes_left = tmem_transport->available_read();
157
259k
    *len = *len - bytes_left;
158
259k
    return Status::OK();
159
259k
}
_ZN5doris22deserialize_thrift_msgINS_15TResultFileSinkEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
4
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
4
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
4
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
4
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
4
            new apache::thrift::transport::TMemoryBuffer(
142
4
                    const_cast<uint8_t*>(buf), *len,
143
4
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
4
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
4
            create_deserialize_protocol(tmem_transport, compact);
146
147
4
    try {
148
4
        deserialized_msg->read(tproto.get());
149
4
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
4
    uint32_t bytes_left = tmem_transport->available_read();
157
4
    *len = *len - bytes_left;
158
4
    return Status::OK();
159
4
}
_ZN5doris22deserialize_thrift_msgINS_14TFileScanRangeEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
2.32k
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
2.32k
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
2.32k
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
2.32k
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
2.32k
            new apache::thrift::transport::TMemoryBuffer(
142
2.32k
                    const_cast<uint8_t*>(buf), *len,
143
2.32k
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
2.32k
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
2.32k
            create_deserialize_protocol(tmem_transport, compact);
146
147
2.32k
    try {
148
2.32k
        deserialized_msg->read(tproto.get());
149
2.32k
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
2.32k
    uint32_t bytes_left = tmem_transport->available_read();
157
2.32k
    *len = *len - bytes_left;
158
2.32k
    return Status::OK();
159
2.32k
}
_ZN5doris22deserialize_thrift_msgINS_16TTableDescriptorEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
149
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
149
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
149
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
149
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
149
            new apache::thrift::transport::TMemoryBuffer(
142
149
                    const_cast<uint8_t*>(buf), *len,
143
149
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
149
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
149
            create_deserialize_protocol(tmem_transport, compact);
146
147
149
    try {
148
149
        deserialized_msg->read(tproto.get());
149
149
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
149
    uint32_t bytes_left = tmem_transport->available_read();
157
149
    *len = *len - bytes_left;
158
149
    return Status::OK();
159
149
}
_ZN5doris22deserialize_thrift_msgINS_19TFoldConstantParamsEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
575
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
575
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
575
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
575
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
575
            new apache::thrift::transport::TMemoryBuffer(
142
575
                    const_cast<uint8_t*>(buf), *len,
143
575
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
575
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
575
            create_deserialize_protocol(tmem_transport, compact);
146
147
575
    try {
148
575
        deserialized_msg->read(tproto.get());
149
575
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
575
    uint32_t bytes_left = tmem_transport->available_read();
157
575
    *len = *len - bytes_left;
158
575
    return Status::OK();
159
575
}
_ZN5doris22deserialize_thrift_msgINS_16TDescriptorTableEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
132
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
132
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
132
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
132
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
132
            new apache::thrift::transport::TMemoryBuffer(
142
132
                    const_cast<uint8_t*>(buf), *len,
143
132
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
132
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
132
            create_deserialize_protocol(tmem_transport, compact);
146
147
132
    try {
148
132
        deserialized_msg->read(tproto.get());
149
132
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
132
    uint32_t bytes_left = tmem_transport->available_read();
157
132
    *len = *len - bytes_left;
158
132
    return Status::OK();
159
132
}
_ZN5doris22deserialize_thrift_msgINS_9TExprListEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
132
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
132
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
132
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
132
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
132
            new apache::thrift::transport::TMemoryBuffer(
142
132
                    const_cast<uint8_t*>(buf), *len,
143
132
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
132
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
132
            create_deserialize_protocol(tmem_transport, compact);
146
147
132
    try {
148
132
        deserialized_msg->read(tproto.get());
149
132
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
132
    uint32_t bytes_left = tmem_transport->available_read();
157
132
    *len = *len - bytes_left;
158
132
    return Status::OK();
159
132
}
_ZN5doris22deserialize_thrift_msgINS_13TQueryOptionsEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
132
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
132
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
132
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
132
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
132
            new apache::thrift::transport::TMemoryBuffer(
142
132
                    const_cast<uint8_t*>(buf), *len,
143
132
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
132
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
132
            create_deserialize_protocol(tmem_transport, compact);
146
147
132
    try {
148
132
        deserialized_msg->read(tproto.get());
149
132
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
132
    uint32_t bytes_left = tmem_transport->available_read();
157
132
    *len = *len - bytes_left;
158
132
    return Status::OK();
159
132
}
_ZN5doris22deserialize_thrift_msgINS_9TExprNodeEEENS_6StatusEPKhPjbPT_
Line
Count
Source
132
820
                              T* deserialized_msg) {
133
    // Deserialize msg bytes into c++ thrift msg using memory
134
    // transport. TMemoryBuffer is not const-safe, although we use it in
135
    // a const-safe way, so we have to explicitly cast away the const.
136
820
    auto conf = std::make_shared<apache::thrift::TConfiguration>();
137
    // On Thrift 0.14.0+, need use TConfiguration to raise the max message size.
138
    // max message size is 100MB default, so make it unlimited.
139
820
    conf->setMaxMessageSize(std::numeric_limits<int>::max());
140
820
    std::shared_ptr<apache::thrift::transport::TMemoryBuffer> tmem_transport(
141
820
            new apache::thrift::transport::TMemoryBuffer(
142
820
                    const_cast<uint8_t*>(buf), *len,
143
820
                    apache::thrift::transport::TMemoryBuffer::OBSERVE, conf));
144
820
    std::shared_ptr<apache::thrift::protocol::TProtocol> tproto =
145
820
            create_deserialize_protocol(tmem_transport, compact);
146
147
820
    try {
148
820
        deserialized_msg->read(tproto.get());
149
820
    } catch (std::exception& e) {
150
0
        return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
151
0
    } catch (...) {
152
        // TODO: Find the right exception for 0 bytes
153
0
        return Status::InternalError("Unknown exception");
154
0
    }
155
156
820
    uint32_t bytes_left = tmem_transport->available_read();
157
820
    *len = *len - bytes_left;
158
820
    return Status::OK();
159
820
}
160
161
// Redirects all Thrift logging to VLOG_CRITICAL
162
void init_thrift_logging();
163
164
// Wait for a server that is running locally to start accepting
165
// connections, up to a maximum timeout
166
Status wait_for_local_server(const ThriftServer& server, int num_retries, int retry_interval_ms);
167
168
// Wait for a server to start accepting connections, up to a maximum timeout
169
Status wait_for_server(const std::string& host, int port, int num_retries, int retry_interval_ms);
170
171
// Utility method to print address as address:port
172
void t_network_address_to_string(const TNetworkAddress& address, std::string* out);
173
174
// Compares two TNetworkAddresses alphanumerically by their host:port
175
// string representation
176
bool t_network_address_comparator(const TNetworkAddress& a, const TNetworkAddress& b);
177
178
std::string to_string(const TUniqueId& id);
179
180
bool _has_inverted_index_v1_or_partial_update(TOlapTableSink sink);
181
bool _has_row_binlog(const TOlapTableSink& sink);
182
183
} // namespace doris