Coverage Report

Created: 2026-09-16 17:51

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/util/jni-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 <butil/macros.h>
21
#include <jni.h>
22
#include <limits.h>
23
#include <stddef.h>
24
#include <stdint.h>
25
26
#include <atomic>
27
#include <cstdlib>
28
#include <optional>
29
#include <string>
30
31
#include "common/status.h"
32
#include "jni_md.h"
33
#include "util/defer_op.h"
34
#include "util/thrift_util.h"
35
36
// defined in hadoop/hadoop-hdfs-project/hadoop-hdfs/src/main/native/libhdfs/jni_helper.c
37
extern "C" JNIEnv* getJNIEnv(void);
38
39
namespace doris {
40
41
#define RETURN_ERROR_IF_EXC(env)                      \
42
275k
    do {                                              \
43
275k
        if (env->ExceptionCheck()) [[unlikely]]       \
44
4
            return Jni::Env::GetJniExceptionMsg(env); \
45
275k
    } while (false)
46
47
//In order to reduce the potential risks caused by not handling exceptions,
48
// you need to refer to  https://docs.oracle.com/javase/8/docs/technotes/guides/jni/spec/functions.html
49
// to confirm whether the jni method will throw an exception.
50
51
namespace Jni {
52
class JvmLauncher;
53
54
class Env {
55
public:
56
233k
    static Status Get(JNIEnv** env) {
57
233k
        if (tls_env_) {
58
233k
            *env = tls_env_;
59
233k
        } else {
60
111
            Status status = GetJNIEnvSlowPath(env);
61
111
            if (!status.ok()) {
62
0
                return status;
63
0
            }
64
111
        }
65
233k
        if (*env == nullptr) [[unlikely]] {
66
0
            return Status::JniError("Failed to get JNIEnv: it is nullptr.");
67
0
        }
68
233k
        return Status::OK();
69
233k
    }
70
71
3
    static Status Init() { return init_throw_exception(); }
72
73
    static Status GetJniExceptionMsg(JNIEnv* env, bool log_stack = true,
74
                                     const std::string& prefix = "") WARN_UNUSED_RESULT;
75
76
private:
77
    static Status GetJNIEnvSlowPath(JNIEnv** env);
78
    // What the JVM of this process was created from, for the one error message that has to
79
    // report a deployment problem rather than a programming one. Says so explicitly when the
80
    // variable is unset, which is what a BE not started by bin/start_be.sh looks like.
81
0
    static std::string class_path_of_this_process() {
82
0
        const char* class_path = getenv("CLASSPATH");
83
0
        return class_path == nullptr ? std::string("<CLASSPATH unset>") : std::string(class_path);
84
0
    }
85
3
    static Status init_throw_exception() {
86
3
        JNIEnv* env = nullptr;
87
3
        RETURN_IF_ERROR(Jni::Env::Get(&env));
88
89
        // Find JniUtil class and create a global ref.
90
3
        jclass local_jni_util_cl = env->FindClass("org/apache/doris/jni/spi/utils/JniUtil");
91
3
        if (local_jni_util_cl == nullptr) {
92
0
            if (env->ExceptionOccurred()) {
93
0
                env->ExceptionDescribe();
94
0
            }
95
            // Named rather than left as a bare FindClass failure: this is the first class BE
96
            // resolves out of the shared layer, so a deployment whose lib/jni/spi is missing or
97
            // was not put on the class path fails exactly here, and the answer is a directory
98
            // name and a jar name. The failure is then cached for the life of the process, so
99
            // this is also the only chance to say it.
100
0
            return Status::JniError(
101
0
                    "Failed to find the JniUtil class of the Java plugin SPI. It ships in "
102
0
                    "doris-jni-spi.jar under DORIS_HOME/lib/jni/spi, which bin/start_be.sh puts "
103
0
                    "on the class path; check that the directory exists and holds "
104
0
                    "doris-jni-spi.jar and doris-jni-bootstrap.jar. Class path: {}",
105
0
                    class_path_of_this_process());
106
0
        }
107
3
        jni_util_cl_ = reinterpret_cast<jclass>(env->NewGlobalRef(local_jni_util_cl));
108
3
        env->DeleteLocalRef(local_jni_util_cl);
109
3
        if (jni_util_cl_ == nullptr) {
110
0
            if (env->ExceptionOccurred()) {
111
0
                env->ExceptionDescribe();
112
0
            }
113
0
            return Status::JniError("Failed to create global reference to JniUtil class.");
114
0
        }
115
3
        if (env->ExceptionOccurred()) {
116
0
            return Status::JniError("Failed to delete local reference to JniUtil class.");
117
0
        }
118
119
        // Throwable toString()
120
3
        throwable_to_string_id_ = env->GetStaticMethodID(
121
3
                jni_util_cl_, "throwableToString", "(Ljava/lang/Throwable;)Ljava/lang/String;");
122
3
        if (throwable_to_string_id_ == nullptr) {
123
0
            if (env->ExceptionOccurred()) {
124
0
                env->ExceptionDescribe();
125
0
            }
126
0
            return Status::JniError("Failed to find JniUtil.throwableToString method.");
127
0
        }
128
129
        // throwableToStackTrace()
130
3
        throwable_to_stack_trace_id_ = env->GetStaticMethodID(
131
3
                jni_util_cl_, "throwableToStackTrace", "(Ljava/lang/Throwable;)Ljava/lang/String;");
132
3
        if (throwable_to_stack_trace_id_ == nullptr) {
133
0
            if (env->ExceptionOccurred()) {
134
0
                env->ExceptionDescribe();
135
0
            }
136
0
            return Status::JniError("Failed to find JniUtil.throwableToFullStackTrace method.");
137
0
        }
138
3
        return Status::OK();
139
3
    }
140
141
    // Drops the cached JNIEnv of the calling thread. Only the thread exit hook and the JVM
142
    // bootstrap may call this: the env it caches is gone the moment the thread is detached,
143
    // and anything reading it afterwards - another thread exit hook, say - would read freed
144
    // memory.
145
51
    static void reset_tls_env() { tls_env_ = nullptr; }
146
    // Caches an env the bootstrap attached by itself, so that resolving the JNI base right
147
    // after the JVM comes up stays on Get()'s fast path instead of re-entering ensure_jvm().
148
691
    static void set_tls_env(JNIEnv* env) { tls_env_ = env; }
149
    // What Get() would hand out on this thread without asking anyone, nullptr when nothing is
150
    // cached. For JvmLauncher::ScopedVmEnv, which primes the cache for one scope and has to put
151
    // back what it found rather than assume there was nothing: on the bootstrap thread there is.
152
344
    static JNIEnv* tls_env() { return tls_env_; }
153
    friend class JvmLauncher;
154
155
private:
156
    // Thread-local cache of the JNIEnv for this thread.
157
    static __thread JNIEnv* tls_env_;
158
159
    //for exception
160
    static jclass jni_util_cl_;
161
    static jmethodID throwable_to_string_id_;
162
    static jmethodID throwable_to_stack_trace_id_;
163
};
164
165
enum RefType { Local, Global };
166
167
enum BufferType { Chars, ByteArray };
168
169
template <RefType Ref>
170
struct RefHelper {};
171
172
template <>
173
struct RefHelper<Local> {
174
3.41k
    static jobject create(JNIEnv* env, jobject obj) { return env->NewLocalRef(obj); }
175
176
201k
    static void destroy(JNIEnv* env, jobject obj) { env->DeleteLocalRef(obj); }
177
178
204k
    static Status get_env(JNIEnv** env) {
179
        // Get the JNIEnv* corresponding to current thread.
180
204k
        return Jni::Env::Get(env);
181
204k
    }
182
};
183
184
template <>
185
struct RefHelper<Global> {
186
12.3k
    static jobject create(JNIEnv* env, jobject obj) { return env->NewGlobalRef(obj); }
187
188
12.4k
    static void destroy(JNIEnv* env, jobject obj) { env->DeleteGlobalRef(obj); }
189
190
12.4k
    static Status get_env(JNIEnv** env) { return Jni::Env::Get(env); }
191
};
192
193
template <RefType Ref>
194
class Object;
195
196
template <RefType Ref>
197
class Class;
198
199
class MethodId {
200
public:
201
14.8k
    MethodId() = default;
202
142k
    bool uninitialized() const { return _id == nullptr; }
203
204
    template <RefType U>
205
    friend class Object;
206
207
    template <RefType U>
208
    friend class Class;
209
210
private:
211
    jmethodID _id = nullptr;
212
};
213
214
class FieldId {
215
public:
216
18
    FieldId() = default;
217
36
    bool uninitialized() const { return _id == nullptr; }
218
219
    template <RefType U>
220
    friend class Object;
221
222
    template <RefType U>
223
    friend class Class;
224
225
private:
226
    jfieldID _id = nullptr;
227
};
228
229
enum CallTag {
230
    ObjectMethod,
231
    IntMethod,
232
    LongMethod,
233
    VoidMethod,
234
    BooleanMethod,
235
236
    StaticObjectMethod,
237
    StaticIntMethod,
238
    StaticLongMethod,
239
    StaticVoidMethod,
240
241
    NewObject,
242
243
    NonvirtualVoidMethod,
244
    NonvirtualObjectMethod,
245
    NonvirtualIntMethod,
246
    NonvirtualBooleanMethod,
247
};
248
249
template <CallTag Tag>
250
struct CallHelper {};
251
252
template <>
253
struct CallHelper<ObjectMethod> {
254
86.0k
    static jobject call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
255
86.0k
        return env->CallObjectMethodA(obj, methodID, args);
256
86.0k
    }
257
    using BASE_TYPE = jobject;
258
    using RETURN_TYPE = jobject;
259
};
260
261
template <>
262
struct CallHelper<IntMethod> {
263
1.02k
    static jint call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
264
1.02k
        return env->CallIntMethodA(obj, methodID, args);
265
1.02k
    }
266
    using BASE_TYPE = jobject;
267
    using RETURN_TYPE = jint;
268
};
269
270
template <>
271
struct CallHelper<LongMethod> {
272
14.0k
    static jlong call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
273
14.0k
        return env->CallLongMethodA(obj, methodID, args);
274
14.0k
    }
275
    using BASE_TYPE = jobject;
276
    using RETURN_TYPE = jlong;
277
};
278
279
template <>
280
struct CallHelper<VoidMethod> {
281
240
    static void call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
282
240
        env->CallVoidMethodA(obj, methodID, args);
283
240
    }
284
    using BASE_TYPE = jobject;
285
    using RETURN_TYPE = void;
286
};
287
288
template <>
289
struct CallHelper<BooleanMethod> {
290
6
    static jboolean call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
291
6
        return env->CallBooleanMethodA(obj, methodID, args);
292
6
    }
293
    using BASE_TYPE = jobject;
294
    using RETURN_TYPE = jboolean;
295
};
296
297
template <>
298
struct CallHelper<StaticObjectMethod> {
299
7.50k
    static jobject call_impl(JNIEnv* env, jclass cls, jmethodID methodID, const jvalue* args) {
300
7.50k
        return env->CallStaticObjectMethodA(cls, methodID, args);
301
7.50k
    }
302
    using BASE_TYPE = jclass;
303
    using RETURN_TYPE = jobject;
304
};
305
306
template <>
307
struct CallHelper<StaticIntMethod> {
308
0
    static jint call_impl(JNIEnv* env, jclass cls, jmethodID methodID, const jvalue* args) {
309
0
        return env->CallStaticIntMethodA(cls, methodID, args);
310
0
    }
311
    using BASE_TYPE = jclass;
312
    using RETURN_TYPE = jint;
313
};
314
315
template <>
316
struct CallHelper<StaticLongMethod> {
317
0
    static jlong call_impl(JNIEnv* env, jclass cls, jmethodID methodID, const jvalue* args) {
318
0
        return env->CallStaticLongMethodA(cls, methodID, args);
319
0
    }
320
    using BASE_TYPE = jclass;
321
    using RETURN_TYPE = jlong;
322
};
323
324
template <>
325
struct CallHelper<StaticVoidMethod> {
326
924
    static void call_impl(JNIEnv* env, jclass cls, jmethodID methodID, const jvalue* args) {
327
924
        return env->CallStaticVoidMethodA(cls, methodID, args);
328
924
    }
329
330
    using BASE_TYPE = jclass;
331
    using RETURN_TYPE = void;
332
};
333
334
template <>
335
struct CallHelper<NewObject> {
336
5.54k
    static jobject call_impl(JNIEnv* env, jclass cls, jmethodID methodID, const jvalue* args) {
337
5.54k
        return env->NewObjectA(cls, methodID, args);
338
5.54k
    }
339
340
    using BASE_TYPE = jclass;
341
    using RETURN_TYPE = jobject;
342
};
343
344
template <>
345
struct CallHelper<NonvirtualVoidMethod> {
346
    static void call_impl(JNIEnv* env, jobject obj, jclass clazz, jmethodID methodID,
347
6.64k
                          const jvalue* args) {
348
6.64k
        return env->CallNonvirtualVoidMethodA(obj, clazz, methodID, args);
349
6.64k
    }
350
351
    using BASE_TYPE = jobject;
352
    using RETURN_TYPE = void;
353
};
354
355
template <>
356
struct CallHelper<NonvirtualObjectMethod> {
357
    static jobject call_impl(JNIEnv* env, jobject obj, jclass clazz, jmethodID methodID,
358
77
                             const jvalue* args) {
359
77
        return env->CallNonvirtualObjectMethodA(obj, clazz, methodID, args);
360
77
    }
361
362
    using BASE_TYPE = jobject;
363
    using RETURN_TYPE = jobject;
364
};
365
366
template <>
367
struct CallHelper<NonvirtualIntMethod> {
368
    static jint call_impl(JNIEnv* env, jobject obj, jclass clazz, jmethodID methodID,
369
0
                          const jvalue* args) {
370
0
        return env->CallNonvirtualIntMethodA(obj, clazz, methodID, args);
371
0
    }
372
373
    using BASE_TYPE = jobject;
374
    using RETURN_TYPE = jint;
375
};
376
377
template <>
378
struct CallHelper<NonvirtualBooleanMethod> {
379
    static jboolean call_impl(JNIEnv* env, jobject obj, jclass clazz, jmethodID methodID,
380
0
                              const jvalue* args) {
381
0
        return env->CallNonvirtualBooleanMethodA(obj, clazz, methodID, args);
382
0
    }
383
384
    using BASE_TYPE = jobject;
385
    using RETURN_TYPE = jboolean;
386
};
387
388
template <CallTag tag>
389
class FunctionCall {
390
public:
391
    FunctionCall(FunctionCall&& other) noexcept = default;
392
393
    static FunctionCall instance(JNIEnv* env, typename CallHelper<tag>::BASE_TYPE base,
394
115k
                                 jmethodID method_id) {
395
115k
        return FunctionCall(env, base, method_id);
396
115k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EE8instanceEP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
394
7.50k
                                 jmethodID method_id) {
395
7.50k
        return FunctionCall(env, base, method_id);
396
7.50k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
86.0k
                                 jmethodID method_id) {
395
86.0k
        return FunctionCall(env, base, method_id);
396
86.0k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
14.0k
                                 jmethodID method_id) {
395
14.0k
        return FunctionCall(env, base, method_id);
396
14.0k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE1EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
1.02k
                                 jmethodID method_id) {
395
1.02k
        return FunctionCall(env, base, method_id);
396
1.02k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE9EE8instanceEP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
394
5.55k
                                 jmethodID method_id) {
395
5.55k
        return FunctionCall(env, base, method_id);
396
5.55k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
244
                                 jmethodID method_id) {
395
244
        return FunctionCall(env, base, method_id);
396
244
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE4EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
6
                                 jmethodID method_id) {
395
6
        return FunctionCall(env, base, method_id);
396
6
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE8EE8instanceEP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
394
924
                                 jmethodID method_id) {
395
924
        return FunctionCall(env, base, method_id);
396
924
    }
397
398
    /// Pass a primitive arg (eg an integer).
399
    /// Multiple arguments may be passed by repeated calls.
400
    template <class T>
401
        requires std::disjunction_v<std::is_same<T, jboolean>, std::is_same<T, jbyte>,
402
                                    std::is_same<T, jchar>, std::is_same<T, jshort>,
403
                                    std::is_same<T, jint>, std::is_same<T, jlong>,
404
                                    std::is_same<T, jfloat>, std::is_same<T, jdouble>>
405
11.5k
    FunctionCall& with_arg(T arg) {
406
11.5k
        jvalue v;
407
11.5k
        std::memset(&v, 0, sizeof(v));
408
11.5k
        if constexpr (std::is_same_v<T, jboolean>) {
409
221
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
9.97k
        } else if constexpr (std::is_same_v<T, jint>) {
417
9.97k
            v.i = arg;
418
9.97k
        } else if constexpr (std::is_same_v<T, jlong>) {
419
1.33k
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
11.5k
        _args.push_back(v);
428
11.5k
        return *this;
429
11.5k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE8with_argIiQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
3.75k
    FunctionCall& with_arg(T arg) {
406
3.75k
        jvalue v;
407
3.75k
        std::memset(&v, 0, sizeof(v));
408
        if constexpr (std::is_same_v<T, jboolean>) {
409
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
3.75k
        } else if constexpr (std::is_same_v<T, jint>) {
417
3.75k
            v.i = arg;
418
        } else if constexpr (std::is_same_v<T, jlong>) {
419
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
3.75k
        _args.push_back(v);
428
3.75k
        return *this;
429
3.75k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE9EE8with_argIiQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
5.54k
    FunctionCall& with_arg(T arg) {
406
5.54k
        jvalue v;
407
5.54k
        std::memset(&v, 0, sizeof(v));
408
        if constexpr (std::is_same_v<T, jboolean>) {
409
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
5.54k
        } else if constexpr (std::is_same_v<T, jint>) {
417
5.54k
            v.i = arg;
418
        } else if constexpr (std::is_same_v<T, jlong>) {
419
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
5.54k
        _args.push_back(v);
428
5.54k
        return *this;
429
5.54k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE8with_argIhQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
221
    FunctionCall& with_arg(T arg) {
406
221
        jvalue v;
407
221
        std::memset(&v, 0, sizeof(v));
408
221
        if constexpr (std::is_same_v<T, jboolean>) {
409
221
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
        } else if constexpr (std::is_same_v<T, jint>) {
417
            v.i = arg;
418
        } else if constexpr (std::is_same_v<T, jlong>) {
419
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
221
        _args.push_back(v);
428
221
        return *this;
429
221
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE8with_argIiQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
670
    FunctionCall& with_arg(T arg) {
406
670
        jvalue v;
407
670
        std::memset(&v, 0, sizeof(v));
408
        if constexpr (std::is_same_v<T, jboolean>) {
409
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
670
        } else if constexpr (std::is_same_v<T, jint>) {
417
670
            v.i = arg;
418
        } else if constexpr (std::is_same_v<T, jlong>) {
419
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
670
        _args.push_back(v);
428
670
        return *this;
429
670
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE8with_argIlQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
221
    FunctionCall& with_arg(T arg) {
406
221
        jvalue v;
407
221
        std::memset(&v, 0, sizeof(v));
408
        if constexpr (std::is_same_v<T, jboolean>) {
409
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
        } else if constexpr (std::is_same_v<T, jint>) {
417
            v.i = arg;
418
221
        } else if constexpr (std::is_same_v<T, jlong>) {
419
221
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
221
        _args.push_back(v);
428
221
        return *this;
429
221
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EE8with_argIlQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
192
    FunctionCall& with_arg(T arg) {
406
192
        jvalue v;
407
192
        std::memset(&v, 0, sizeof(v));
408
        if constexpr (std::is_same_v<T, jboolean>) {
409
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
        } else if constexpr (std::is_same_v<T, jint>) {
417
            v.i = arg;
418
192
        } else if constexpr (std::is_same_v<T, jlong>) {
419
192
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
192
        _args.push_back(v);
428
192
        return *this;
429
192
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EE8with_argIiQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
5
    FunctionCall& with_arg(T arg) {
406
5
        jvalue v;
407
5
        std::memset(&v, 0, sizeof(v));
408
        if constexpr (std::is_same_v<T, jboolean>) {
409
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
5
        } else if constexpr (std::is_same_v<T, jint>) {
417
5
            v.i = arg;
418
        } else if constexpr (std::is_same_v<T, jlong>) {
419
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
5
        _args.push_back(v);
428
5
        return *this;
429
5
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE8EE8with_argIlQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
405
924
    FunctionCall& with_arg(T arg) {
406
924
        jvalue v;
407
924
        std::memset(&v, 0, sizeof(v));
408
        if constexpr (std::is_same_v<T, jboolean>) {
409
            v.z = arg;
410
        } else if constexpr (std::is_same_v<T, jbyte>) {
411
            v.b = arg;
412
        } else if constexpr (std::is_same_v<T, jchar>) {
413
            v.c = arg;
414
        } else if constexpr (std::is_same_v<T, jshort>) {
415
            v.s = arg;
416
        } else if constexpr (std::is_same_v<T, jint>) {
417
            v.i = arg;
418
924
        } else if constexpr (std::is_same_v<T, jlong>) {
419
924
            v.j = arg;
420
        } else if constexpr (std::is_same_v<T, jfloat>) {
421
            v.f = arg;
422
        } else if constexpr (std::is_same_v<T, jdouble>) {
423
            v.d = arg;
424
        } else {
425
            static_assert(false);
426
        }
427
924
        _args.push_back(v);
428
924
        return *this;
429
924
    }
430
431
    template <RefType Ref>
432
    FunctionCall& with_arg(const Object<Ref>& obj) WARN_UNUSED_RESULT;
433
434
    template <typename ReturnType>
435
        requires(std::is_same_v<typename CallHelper<tag>::RETURN_TYPE, ReturnType>)
436
15.0k
    Status call(ReturnType* result) {
437
15.0k
        *result = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
438
15.0k
        RETURN_ERROR_IF_EXC(_env);
439
15.0k
        return Status::OK();
440
15.0k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EE4callIlQsr3stdE9is_same_vINS0_10CallHelperIXT_EE11RETURN_TYPEETL0__EEENS_6StatusEPT_
Line
Count
Source
436
14.0k
    Status call(ReturnType* result) {
437
14.0k
        *result = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
438
14.0k
        RETURN_ERROR_IF_EXC(_env);
439
14.0k
        return Status::OK();
440
14.0k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE1EE4callIiQsr3stdE9is_same_vINS0_10CallHelperIXT_EE11RETURN_TYPEETL0__EEENS_6StatusEPT_
Line
Count
Source
436
1.02k
    Status call(ReturnType* result) {
437
1.02k
        *result = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
438
1.02k
        RETURN_ERROR_IF_EXC(_env);
439
1.02k
        return Status::OK();
440
1.02k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE4EE4callIhQsr3stdE9is_same_vINS0_10CallHelperIXT_EE11RETURN_TYPEETL0__EEENS_6StatusEPT_
Line
Count
Source
436
6
    Status call(ReturnType* result) {
437
6
        *result = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
438
6
        RETURN_ERROR_IF_EXC(_env);
439
6
        return Status::OK();
440
6
    }
441
442
    Status call(Object<Local>* result);
443
444
    Status call(Object<Global>* result);
445
446
17.8k
    Status call() {
447
17.8k
        using return_type = typename CallHelper<tag>::RETURN_TYPE;
448
        if constexpr (std::disjunction_v<
449
                              std::is_same<return_type, jboolean>, std::is_same<return_type, jbyte>,
450
                              std::is_same<return_type, jchar>, std::is_same<return_type, jshort>,
451
                              std::is_same<return_type, jint>, std::is_same<return_type, jlong>,
452
                              std::is_same<return_type, jfloat>, std::is_same<return_type, jdouble>,
453
1.16k
                              std::is_same<return_type, void>>) {
454
1.16k
            CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
455
1.16k
            RETURN_ERROR_IF_EXC(_env);
456
16.6k
        } else if constexpr (std::is_same_v<return_type, jobject>) {
457
16.6k
            jobject tmp = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
458
16.6k
            _env->DeleteLocalRef(tmp);
459
16.6k
            RETURN_ERROR_IF_EXC(_env);
460
        } else {
461
            static_assert(false);
462
        }
463
17.8k
        return Status::OK();
464
17.8k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE4callEv
Line
Count
Source
446
16.6k
    Status call() {
447
16.6k
        using return_type = typename CallHelper<tag>::RETURN_TYPE;
448
        if constexpr (std::disjunction_v<
449
                              std::is_same<return_type, jboolean>, std::is_same<return_type, jbyte>,
450
                              std::is_same<return_type, jchar>, std::is_same<return_type, jshort>,
451
                              std::is_same<return_type, jint>, std::is_same<return_type, jlong>,
452
                              std::is_same<return_type, jfloat>, std::is_same<return_type, jdouble>,
453
                              std::is_same<return_type, void>>) {
454
            CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
455
            RETURN_ERROR_IF_EXC(_env);
456
16.6k
        } else if constexpr (std::is_same_v<return_type, jobject>) {
457
16.6k
            jobject tmp = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
458
16.6k
            _env->DeleteLocalRef(tmp);
459
16.6k
            RETURN_ERROR_IF_EXC(_env);
460
        } else {
461
            static_assert(false);
462
        }
463
16.6k
        return Status::OK();
464
16.6k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE4callEv
Line
Count
Source
446
240
    Status call() {
447
240
        using return_type = typename CallHelper<tag>::RETURN_TYPE;
448
        if constexpr (std::disjunction_v<
449
                              std::is_same<return_type, jboolean>, std::is_same<return_type, jbyte>,
450
                              std::is_same<return_type, jchar>, std::is_same<return_type, jshort>,
451
                              std::is_same<return_type, jint>, std::is_same<return_type, jlong>,
452
                              std::is_same<return_type, jfloat>, std::is_same<return_type, jdouble>,
453
240
                              std::is_same<return_type, void>>) {
454
240
            CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
455
240
            RETURN_ERROR_IF_EXC(_env);
456
        } else if constexpr (std::is_same_v<return_type, jobject>) {
457
            jobject tmp = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
458
            _env->DeleteLocalRef(tmp);
459
            RETURN_ERROR_IF_EXC(_env);
460
        } else {
461
            static_assert(false);
462
        }
463
240
        return Status::OK();
464
240
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE8EE4callEv
Line
Count
Source
446
924
    Status call() {
447
924
        using return_type = typename CallHelper<tag>::RETURN_TYPE;
448
        if constexpr (std::disjunction_v<
449
                              std::is_same<return_type, jboolean>, std::is_same<return_type, jbyte>,
450
                              std::is_same<return_type, jchar>, std::is_same<return_type, jshort>,
451
                              std::is_same<return_type, jint>, std::is_same<return_type, jlong>,
452
                              std::is_same<return_type, jfloat>, std::is_same<return_type, jdouble>,
453
924
                              std::is_same<return_type, void>>) {
454
924
            CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
455
924
            RETURN_ERROR_IF_EXC(_env);
456
        } else if constexpr (std::is_same_v<return_type, jobject>) {
457
            jobject tmp = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
458
            _env->DeleteLocalRef(tmp);
459
            RETURN_ERROR_IF_EXC(_env);
460
        } else {
461
            static_assert(false);
462
        }
463
924
        return Status::OK();
464
924
    }
465
466
protected:
467
    explicit FunctionCall(JNIEnv* env, typename CallHelper<tag>::BASE_TYPE base,
468
                          jmethodID method_id)
469
122k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EEC2EP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
469
7.50k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
86.0k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
14.0k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE1EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
1.02k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE10EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
6.65k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE9EEC2EP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
469
5.55k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
244
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE11EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
76
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE4EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
6
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE8EEC2EP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
469
924
            : _env(env), _base(base), _method(method_id) {}
470
471
    JNIEnv* _env = nullptr;
472
    CallHelper<tag>::BASE_TYPE _base; // is jobject/jclass  not need new/delete local/global ref.
473
    const jmethodID _method = nullptr;
474
    std::vector<jvalue> _args;
475
    Status _st = Status::OK();
476
    DISALLOW_COPY_AND_ASSIGN(FunctionCall);
477
};
478
479
template <CallTag tag>
480
class NonvirtualFunctionCall : public FunctionCall<tag> {
481
public:
482
    NonvirtualFunctionCall(NonvirtualFunctionCall&& other) noexcept = default;
483
484
    static NonvirtualFunctionCall instance(JNIEnv* env, typename CallHelper<tag>::BASE_TYPE base,
485
6.72k
                                           jclass cls, jmethodID method_id) {
486
6.72k
        return NonvirtualFunctionCall(env, base, cls, method_id);
487
6.72k
    }
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE10EE8instanceEP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
485
6.65k
                                           jclass cls, jmethodID method_id) {
486
6.65k
        return NonvirtualFunctionCall(env, base, cls, method_id);
487
6.65k
    }
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE11EE8instanceEP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
485
76
                                           jclass cls, jmethodID method_id) {
486
76
        return NonvirtualFunctionCall(env, base, cls, method_id);
487
76
    }
488
489
    // no override
490
    template <class T>
491
        requires std::disjunction_v<std::is_same<T, jboolean>, std::is_same<T, jbyte>,
492
                                    std::is_same<T, jchar>, std::is_same<T, jshort>,
493
                                    std::is_same<T, jint>, std::is_same<T, jlong>,
494
                                    std::is_same<T, jfloat>, std::is_same<T, jdouble>>
495
189
    NonvirtualFunctionCall& with_arg(T arg) {
496
189
        jvalue v;
497
189
        std::memset(&v, 0, sizeof(v));
498
        if constexpr (std::is_same_v<T, jboolean>) {
499
            v.z = arg;
500
        } else if constexpr (std::is_same_v<T, jbyte>) {
501
            v.b = arg;
502
        } else if constexpr (std::is_same_v<T, jchar>) {
503
            v.c = arg;
504
        } else if constexpr (std::is_same_v<T, jshort>) {
505
            v.s = arg;
506
        } else if constexpr (std::is_same_v<T, jint>) {
507
            v.i = arg;
508
189
        } else if constexpr (std::is_same_v<T, jlong>) {
509
189
            v.j = arg;
510
        } else if constexpr (std::is_same_v<T, jfloat>) {
511
            v.f = arg;
512
        } else if constexpr (std::is_same_v<T, jdouble>) {
513
            v.d = arg;
514
        } else {
515
            static_assert(false);
516
        }
517
189
        this->_args.push_back(v);
518
189
        return *this;
519
189
    }
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE10EE8with_argIlQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
495
113
    NonvirtualFunctionCall& with_arg(T arg) {
496
113
        jvalue v;
497
113
        std::memset(&v, 0, sizeof(v));
498
        if constexpr (std::is_same_v<T, jboolean>) {
499
            v.z = arg;
500
        } else if constexpr (std::is_same_v<T, jbyte>) {
501
            v.b = arg;
502
        } else if constexpr (std::is_same_v<T, jchar>) {
503
            v.c = arg;
504
        } else if constexpr (std::is_same_v<T, jshort>) {
505
            v.s = arg;
506
        } else if constexpr (std::is_same_v<T, jint>) {
507
            v.i = arg;
508
113
        } else if constexpr (std::is_same_v<T, jlong>) {
509
113
            v.j = arg;
510
        } else if constexpr (std::is_same_v<T, jfloat>) {
511
            v.f = arg;
512
        } else if constexpr (std::is_same_v<T, jdouble>) {
513
            v.d = arg;
514
        } else {
515
            static_assert(false);
516
        }
517
113
        this->_args.push_back(v);
518
113
        return *this;
519
113
    }
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE11EE8with_argIlQsr3stdE13disjunction_vISt7is_sameITL0__hES5_IS6_aES5_IS6_tES5_IS6_sES5_IS6_iES5_IS6_lES5_IS6_fES5_IS6_dEEEERS3_T_
Line
Count
Source
495
76
    NonvirtualFunctionCall& with_arg(T arg) {
496
76
        jvalue v;
497
76
        std::memset(&v, 0, sizeof(v));
498
        if constexpr (std::is_same_v<T, jboolean>) {
499
            v.z = arg;
500
        } else if constexpr (std::is_same_v<T, jbyte>) {
501
            v.b = arg;
502
        } else if constexpr (std::is_same_v<T, jchar>) {
503
            v.c = arg;
504
        } else if constexpr (std::is_same_v<T, jshort>) {
505
            v.s = arg;
506
        } else if constexpr (std::is_same_v<T, jint>) {
507
            v.i = arg;
508
76
        } else if constexpr (std::is_same_v<T, jlong>) {
509
76
            v.j = arg;
510
        } else if constexpr (std::is_same_v<T, jfloat>) {
511
            v.f = arg;
512
        } else if constexpr (std::is_same_v<T, jdouble>) {
513
            v.d = arg;
514
        } else {
515
            static_assert(false);
516
        }
517
76
        this->_args.push_back(v);
518
76
        return *this;
519
76
    }
520
521
    template <RefType Ref>
522
    NonvirtualFunctionCall& with_arg(const Object<Ref>& obj) WARN_UNUSED_RESULT;
523
524
    // no override
525
6.62k
    Status call() {
526
6.62k
        using return_type = typename CallHelper<tag>::RETURN_TYPE;
527
        if constexpr (std::disjunction_v<
528
                              std::is_same<return_type, jboolean>, std::is_same<return_type, jbyte>,
529
                              std::is_same<return_type, jchar>, std::is_same<return_type, jshort>,
530
                              std::is_same<return_type, jint>, std::is_same<return_type, jlong>,
531
                              std::is_same<return_type, jfloat>, std::is_same<return_type, jdouble>,
532
6.62k
                              std::is_same<return_type, void>>) {
533
6.62k
            CallHelper<tag>::call_impl(this->_env, this->_base, _cls, this->_method,
534
6.62k
                                       this->_args.data());
535
6.62k
            RETURN_ERROR_IF_EXC(this->_env);
536
        } else if constexpr (std::is_same_v<return_type, jobject>) {
537
            jobject tmp = CallHelper<tag>::call_impl(this->_env, this->_base, _cls, this->_method,
538
                                                     this->_args.data());
539
            RETURN_ERROR_IF_EXC(this->_env);
540
            this->_env->DeleteLocalRef(tmp);
541
        } else {
542
            static_assert(false);
543
        }
544
6.62k
        return Status::OK();
545
6.62k
    }
546
547
    Status call(Object<Local>* result);
548
549
    template <typename ReturnType>
550
        requires(std::is_same_v<typename CallHelper<tag>::RETURN_TYPE, ReturnType>)
551
    Status call(ReturnType* result) {
552
        *result = CallHelper<tag>::call_impl(this->_env, this->_base, _cls, this->_method,
553
                                             this->_args.data());
554
        RETURN_ERROR_IF_EXC(this->_env);
555
        return Status::OK();
556
    }
557
558
private:
559
    explicit NonvirtualFunctionCall(JNIEnv* env, typename CallHelper<tag>::BASE_TYPE base,
560
                                    jclass cls, jmethodID method_id)
561
6.72k
            : FunctionCall<tag>(env, base, method_id), _cls(cls) {}
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE10EEC2EP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
561
6.65k
            : FunctionCall<tag>(env, base, method_id), _cls(cls) {}
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE11EEC2EP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
561
76
            : FunctionCall<tag>(env, base, method_id), _cls(cls) {}
562
    jclass _cls;
563
    DISALLOW_COPY_AND_ASSIGN(NonvirtualFunctionCall);
564
};
565
566
/**
567
 * When writing JNI code, developers usually need to pay extra attention to several error-prone aspects, including:
568
 * 1. The reference type of jobject (local vs. global)
569
 * 2. The lifetime and scope of JNI references
570
 * 3. Proper release of references after use
571
 * 4. Explicit exception checking after JNI calls
572
 * Because these concerns are verbose and easy to overlook, they often lead to bugs or inconsistent code. To simplify this, 
573
 * we provide a wrapper framework around raw JNI APIs. The following describes how to use it (assuming the user already 
574
 * understands the basic JNI programming model).
575
 *
576
 * 0. Get JNIEnv* env: `Status st = Jni::Env::Get(&env)`
577
 * 1. Choose the reference type
578
 *   First, determine whether the JNI object should be a local or global reference. Based on this, create the corresponding C++ wrapper object:
579
 *   LocalObject / GlobalObject. If the exact JNI type is known, use specialized wrappers such as <Local/Global><Array/String/Class>. 
580
 * 2. Initialize the object
581
 *   For `jclass`, typically use: `Status st = Jni::Util::find_class(xxx);`
582
 *   For other object types, they are usually initialized via: `Status st = clazz.new_object(xxx).with_arg(xxx).call(&object) or by calling methods on existing objects.
583
 * 3. Call methods and retrieve results
584
 *   To invoke a method and obtain a return value, use: `Status st = object.call_<return_type>_method(xxx).call(&result);` 
585
 * 
586
 * Notes
587
 * 1. All JNI references are automatically released in the wrapper’s destructor, ensuring safe and deterministic cleanup.
588
 * 2. All framework method invocations return a Status.
589
 * The actual JNI return value is written to the address passed to call().
590
 * 
591
 * Example: be/test/util/jni_util_test.cpp
592
*/
593
template <RefType Ref>
594
class Object {
595
    // env->GetObjectRefType
596
public:
597
230k
    Object() = default;
_ZN5doris3Jni6ObjectILNS0_7RefTypeE1EEC2Ev
Line
Count
Source
597
12.6k
    Object() = default;
_ZN5doris3Jni6ObjectILNS0_7RefTypeE0EEC2Ev
Line
Count
Source
597
217k
    Object() = default;
598
599
    template <RefType U>
600
    friend class Object;
601
602
    template <RefType U>
603
    friend class Class;
604
605
    template <RefType U>
606
    friend class String;
607
608
    template <RefType U>
609
    friend class Array;
610
611
    template <BufferType bufferfType, RefType U>
612
    friend class BufferGuard;
613
614
    template <CallTag tag>
615
    friend class FunctionCall;
616
617
    template <CallTag tag>
618
    friend class NonvirtualFunctionCall;
619
620
229k
    virtual ~Object() {
621
229k
        if (_obj != nullptr) [[likely]] {
622
213k
            JNIEnv* env = nullptr;
623
213k
            if (Status st = RefHelper<Ref>::get_env(&env); !st.ok()) [[unlikely]] {
624
0
                LOG(WARNING) << "Can't destroy Jni Ref : " << st.msg();
625
0
                return;
626
0
            }
627
213k
            RefHelper<Ref>::destroy(env, _obj);
628
213k
        }
629
229k
    }
_ZN5doris3Jni6ObjectILNS0_7RefTypeE0EED2Ev
Line
Count
Source
620
217k
    virtual ~Object() {
621
217k
        if (_obj != nullptr) [[likely]] {
622
200k
            JNIEnv* env = nullptr;
623
200k
            if (Status st = RefHelper<Ref>::get_env(&env); !st.ok()) [[unlikely]] {
624
0
                LOG(WARNING) << "Can't destroy Jni Ref : " << st.msg();
625
0
                return;
626
0
            }
627
200k
            RefHelper<Ref>::destroy(env, _obj);
628
200k
        }
629
217k
    }
_ZN5doris3Jni6ObjectILNS0_7RefTypeE1EED2Ev
Line
Count
Source
620
12.6k
    virtual ~Object() {
621
12.6k
        if (_obj != nullptr) [[likely]] {
622
12.4k
            JNIEnv* env = nullptr;
623
12.4k
            if (Status st = RefHelper<Ref>::get_env(&env); !st.ok()) [[unlikely]] {
624
0
                LOG(WARNING) << "Can't destroy Jni Ref : " << st.msg();
625
0
                return;
626
0
            }
627
12.4k
            RefHelper<Ref>::destroy(env, _obj);
628
12.4k
        }
629
12.6k
    }
630
631
    template <RefType R>
632
15.6k
    static Status create(JNIEnv* env, const Object<R>& other, Object<Ref>* result) {
633
15.6k
        DCHECK(!other.uninitialized());
634
15.6k
        DCHECK(result->uninitialized());
635
636
15.6k
        result->_obj = RefHelper<Ref>::create(env, other._obj);
637
15.6k
        RETURN_ERROR_IF_EXC(env);
638
15.6k
        return Status::OK();
639
15.6k
    }
_ZN5doris3Jni6ObjectILNS0_7RefTypeE1EE6createILS2_0EEENS_6StatusEP7JNIEnv_RKNS1_IXT_EEEPS3_
Line
Count
Source
632
12.2k
    static Status create(JNIEnv* env, const Object<R>& other, Object<Ref>* result) {
633
12.2k
        DCHECK(!other.uninitialized());
634
12.2k
        DCHECK(result->uninitialized());
635
636
12.2k
        result->_obj = RefHelper<Ref>::create(env, other._obj);
637
12.2k
        RETURN_ERROR_IF_EXC(env);
638
12.2k
        return Status::OK();
639
12.2k
    }
_ZN5doris3Jni6ObjectILNS0_7RefTypeE0EE6createILS2_0EEENS_6StatusEP7JNIEnv_RKNS1_IXT_EEEPS3_
Line
Count
Source
632
3.41k
    static Status create(JNIEnv* env, const Object<R>& other, Object<Ref>* result) {
633
3.41k
        DCHECK(!other.uninitialized());
634
3.41k
        DCHECK(result->uninitialized());
635
636
3.41k
        result->_obj = RefHelper<Ref>::create(env, other._obj);
637
3.41k
        RETURN_ERROR_IF_EXC(env);
638
3.41k
        return Status::OK();
639
3.41k
    }
640
641
730k
    bool uninitialized() const { return _obj == nullptr; }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE0EE13uninitializedEv
Line
Count
Source
641
535k
    bool uninitialized() const { return _obj == nullptr; }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE1EE13uninitializedEv
Line
Count
Source
641
195k
    bool uninitialized() const { return _obj == nullptr; }
642
643
2
    void reset(JNIEnv* env) {
644
2
        if (_obj == nullptr) {
645
0
            return;
646
0
        }
647
2
        RefHelper<Ref>::destroy(env, _obj);
648
2
        _obj = nullptr;
649
2
    }
650
651
    template <RefType T>
652
114k
    bool equal(JNIEnv* env, const Object<T>& other) {
653
114k
        DCHECK(!uninitialized());
654
114k
        DCHECK(!other.uninitialized());
655
114k
        return env->IsSameObject(this->_obj, other._obj); //assume not throw exception.
656
114k
    }
657
658
86.0k
    FunctionCall<ObjectMethod> call_object_method(JNIEnv* env, MethodId method_id) const {
659
86.0k
        DCHECK(!this->uninitialized());
660
86.0k
        DCHECK(!method_id.uninitialized());
661
86.0k
        return FunctionCall<ObjectMethod>::instance(env, _obj, method_id._id);
662
86.0k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE0EE18call_object_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
658
86.0k
    FunctionCall<ObjectMethod> call_object_method(JNIEnv* env, MethodId method_id) const {
659
86.0k
        DCHECK(!this->uninitialized());
660
        DCHECK(!method_id.uninitialized());
661
86.0k
        return FunctionCall<ObjectMethod>::instance(env, _obj, method_id._id);
662
86.0k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE1EE18call_object_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
658
2
    FunctionCall<ObjectMethod> call_object_method(JNIEnv* env, MethodId method_id) const {
659
2
        DCHECK(!this->uninitialized());
660
        DCHECK(!method_id.uninitialized());
661
2
        return FunctionCall<ObjectMethod>::instance(env, _obj, method_id._id);
662
2
    }
663
664
1.02k
    FunctionCall<IntMethod> call_int_method(JNIEnv* env, MethodId method_id) const {
665
1.02k
        DCHECK(!this->uninitialized());
666
1.02k
        DCHECK(!method_id.uninitialized());
667
1.02k
        return FunctionCall<IntMethod>::instance(env, _obj, method_id._id);
668
1.02k
    }
669
670
14.0k
    FunctionCall<LongMethod> call_long_method(JNIEnv* env, MethodId method_id) const {
671
14.0k
        DCHECK(!this->uninitialized());
672
14.0k
        DCHECK(!method_id.uninitialized());
673
14.0k
        return FunctionCall<LongMethod>::instance(env, _obj, method_id._id);
674
14.0k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE0EE16call_long_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
670
11.2k
    FunctionCall<LongMethod> call_long_method(JNIEnv* env, MethodId method_id) const {
671
11.2k
        DCHECK(!this->uninitialized());
672
        DCHECK(!method_id.uninitialized());
673
11.2k
        return FunctionCall<LongMethod>::instance(env, _obj, method_id._id);
674
11.2k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE1EE16call_long_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
670
2.76k
    FunctionCall<LongMethod> call_long_method(JNIEnv* env, MethodId method_id) const {
671
2.76k
        DCHECK(!this->uninitialized());
672
        DCHECK(!method_id.uninitialized());
673
2.76k
        return FunctionCall<LongMethod>::instance(env, _obj, method_id._id);
674
2.76k
    }
675
676
242
    FunctionCall<VoidMethod> call_void_method(JNIEnv* env, MethodId method_id) const {
677
242
        DCHECK(!this->uninitialized());
678
242
        DCHECK(!method_id.uninitialized());
679
242
        return FunctionCall<VoidMethod>::instance(env, _obj, method_id._id);
680
242
    }
681
682
6
    FunctionCall<BooleanMethod> call_boolean_method(JNIEnv* env, MethodId method_id) const {
683
6
        DCHECK(!this->uninitialized());
684
6
        DCHECK(!method_id.uninitialized());
685
6
        return FunctionCall<BooleanMethod>::instance(env, _obj, method_id._id);
686
6
    }
687
688
    template <RefType R>
689
    NonvirtualFunctionCall<NonvirtualVoidMethod> call_nonvirtual_void_method(
690
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
691
692
    template <RefType R>
693
    NonvirtualFunctionCall<NonvirtualObjectMethod> call_nonvirtual_object_method(
694
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
695
696
    template <RefType R>
697
    NonvirtualFunctionCall<NonvirtualIntMethod> call_nonvirtual_int_method(
698
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
699
700
    template <RefType R>
701
    NonvirtualFunctionCall<NonvirtualBooleanMethod> call_nonvirtual_boolean_method(
702
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
703
704
protected:
705
    jobject _obj = nullptr;
706
    DISALLOW_COPY_AND_ASSIGN(Object);
707
};
708
709
using LocalObject = Object<Local>;
710
using GlobalObject = Object<Global>;
711
712
static inline Status local_to_global_ref(JNIEnv* env, const LocalObject& local_ref,
713
12.5k
                                         GlobalObject* global_ref) {
714
12.5k
    return Object<Global>::create(env, local_ref, global_ref);
715
12.5k
}
Unexecuted instantiation: doris_main.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_0_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: config.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: doris_metrics.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
jvm_metrics.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Line
Count
Source
713
62
                                         GlobalObject* global_ref) {
714
62
    return Object<Global>::create(env, local_ref, global_ref);
715
62
}
Unexecuted instantiation: unity_2_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_3_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_5_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_4_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_13_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
unity_1_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Line
Count
Source
713
12.4k
                                         GlobalObject* global_ref) {
714
12.4k
    return Object<Global>::create(env, local_ref, global_ref);
715
12.4k
}
Unexecuted instantiation: unity_7_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_6_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_12_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_11_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_10_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_9_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_8_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: hashjoin_build_sink.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: join_build_sink_operator.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: operator.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: partitioned_aggregation_sink_operator.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: scan_operator.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vfile_result_writer.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_31_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_30_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_29_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_28_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_27_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_26_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_25_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_24_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_22_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_21_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_20_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_19_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_18_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_17_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_16_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_15_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_14_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: ai_functions.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: function_array_aggregation.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: function_date_or_datetime_computation.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: function_datetime_floor_ceil.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: in.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: uuid.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: arrow_row_batch.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: arrow_stream_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: csv_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: jni_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: new_json_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: native_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vorc_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: column_type_convert.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vparquet_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: schema_desc.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vparquet_group_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vparquet_column_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vparquet_column_chunk_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vparquet_page_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: parquet_column_convert.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vparquet_page_index.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: parquet_block_split_bloom_filter.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: deletion_vector_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: es_http_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: hive_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: hive_orc_nested_column_utils.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: hudi_jni_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: hudi_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: iceberg_delete_file_reader_helper.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: iceberg_position_delete_sys_table_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: iceberg_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: iceberg_orc_nested_column_utils.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: equality_delete.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: iceberg_sys_table_jni_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: jdbc_jni_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: max_compute_jni_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: paimon_jni_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: paimon_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: parquet_metadata_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: parquet_utils.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: remote_doris_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: table_format_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: table_schema_change_helper.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: transactional_hive_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: trino_connector_jni_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: text_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: merge_partitioner.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: iceberg_partition_function.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vcsv_transformer.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vfile_format_transformer_factory.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vjni_format_transformer.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vnative_transformer.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vorc_transformer.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vparquet_transformer.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: adbc_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: hdfs_file_system.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_23_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: inverted_index_compound_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: inverted_index_fs_directory.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: zone_map_index.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: vcollect_iterator.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: predicate_creator_comparison.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: predicate_creator_in_list_in.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: predicate_creator_in_list_not_in.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: tablet.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: engine_clone_task.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: descriptors.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: backend_service.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: point_query_executor.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: be_server_starter_factory.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: http_service.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: internal_service.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: arrow_flight_batch_reader.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: thrift_util.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: load_stream.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: routine_load_task_executor.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: cloud_compaction_action.cpp:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
716
717
// auto ReleaseStringUTFChars ReleaseByteArrayElements ...
718
template <BufferType bufferfType, RefType Ref>
719
class BufferGuard {
720
public:
721
3.41k
    BufferGuard() = default;
722
723
    template <RefType R>
724
    static Status create(JNIEnv* env, const Object<R>& object,
725
3.41k
                         BufferGuard<bufferfType, Ref>* result, jboolean* isCopy) {
726
3.41k
        DCHECK(result->_buffer == nullptr && result->_object.uninitialized());
727
728
3.41k
        RETURN_IF_ERROR(Object<Ref>::create(env, object, &result->_object));
729
730
3.41k
        if constexpr (bufferfType == BufferType::Chars) {
731
3.41k
            result->_buffer = env->GetStringUTFChars((jstring)result->_object._obj, isCopy);
732
        } else if constexpr (bufferfType == BufferType::ByteArray) {
733
            result->_buffer =
734
                    (char*)env->GetByteArrayElements((jbyteArray)result->_object._obj, isCopy);
735
        } else {
736
            static_assert(false);
737
        }
738
739
3.41k
        RETURN_ERROR_IF_EXC(env);
740
3.41k
        if (result->_buffer == nullptr) [[unlikely]] {
741
0
            return Status::JniError("GetStringUTFChars/GetByteArrayElements fail.");
742
0
        }
743
744
3.41k
        return Status::OK();
745
3.41k
    }
746
747
3.41k
    ~BufferGuard() {
748
3.41k
        if (_object.uninitialized() || _buffer == nullptr) [[unlikely]] {
749
0
            return;
750
0
        }
751
3.41k
        JNIEnv* env = nullptr;
752
753
3.41k
        if (auto st = RefHelper<Ref>::get_env(&env); !st.ok()) [[unlikely]] {
754
0
            LOG(WARNING) << "BufferGuard release fail: " << st;
755
0
            return;
756
0
        }
757
758
3.41k
        if constexpr (bufferfType == BufferType::Chars) {
759
3.41k
            env->ReleaseStringUTFChars((jstring)_object._obj, _buffer);
760
        } else if constexpr (bufferfType == BufferType::ByteArray) {
761
            env->ReleaseByteArrayElements((jbyteArray)_object._obj, (jbyte*)_buffer, JNI_ABORT);
762
        }
763
3.41k
    }
764
765
6.82k
    const char* get() const { return _buffer; }
766
767
private:
768
    Object<Ref> _object;
769
    const char* _buffer = nullptr;
770
771
    DISALLOW_COPY_AND_ASSIGN(BufferGuard);
772
};
773
774
template <RefType Ref>
775
using StringBufferGuard = BufferGuard<Chars, Ref>;
776
using LocalStringBufferGuard = BufferGuard<Chars, Local>;
777
using GlobalStringBufferGuard = BufferGuard<Chars, Global>;
778
779
template <RefType Ref>
780
using ByteArrayBufferGuard = BufferGuard<ByteArray, Ref>;
781
using LocalByteArrayBufferGuard = BufferGuard<ByteArray, Local>;
782
using GlobalByteArrayBufferGuard = BufferGuard<ByteArray, Global>;
783
784
template <RefType Ref>
785
class String : public Object<Ref> {
786
public:
787
50.1k
    String() = default;
788
789
46.3k
    static Status new_string(JNIEnv* env, const char* utf_chars, String<Ref>* result) {
790
46.3k
        DCHECK(result->uninitialized());
791
792
46.3k
        if constexpr (Ref == Local) {
793
46.3k
            result->_obj = env->NewStringUTF(utf_chars);
794
46.3k
            RETURN_ERROR_IF_EXC(env);
795
        } else if constexpr (Ref == Global) {
796
            String local_result;
797
            local_result->_obj = env->NewStringUTF(utf_chars);
798
            RETURN_ERROR_IF_EXC(env);
799
            RETURN_IF_ERROR(local_to_global_ref(env, local_result, result));
800
        } else {
801
            static_assert(false);
802
        }
803
46.3k
        return Status::OK();
804
46.3k
    }
805
806
3.41k
    Status get_string_chars(JNIEnv* env, StringBufferGuard<Ref>* jni_chars) const {
807
3.41k
        return StringBufferGuard<Ref>::create(env, *this, jni_chars, nullptr);
808
3.41k
    }
809
810
private:
811
    DISALLOW_COPY_AND_ASSIGN(String);
812
};
813
814
template <RefType Ref>
815
class Array : public Object<Ref> {
816
public:
817
7.05k
    Array() = default;
818
819
416
    Status get_length(JNIEnv* env, jsize* result) const {
820
416
        DCHECK(!this->uninitialized());
821
822
416
        *result = env->GetArrayLength((jarray)this->_obj);
823
416
        RETURN_ERROR_IF_EXC(env);
824
416
        return Status::OK();
825
416
    }
826
827
55.7k
    Status get_object_array_element(JNIEnv* env, jsize index, Jni::LocalObject* result) {
828
55.7k
        DCHECK(!this->uninitialized());
829
55.7k
        DCHECK(result->uninitialized());
830
55.7k
        result->_obj = env->GetObjectArrayElement((jobjectArray)this->_obj, index);
831
55.7k
        RETURN_ERROR_IF_EXC(env);
832
55.7k
        return Status::OK();
833
55.7k
    }
834
835
    Status get_byte_elements(JNIEnv* env, ByteArrayBufferGuard<Ref>* jni_bytes) const {
836
        DCHECK(!this->uninitialized());
837
        return ByteArrayBufferGuard<Ref>::create(env, *this, jni_bytes, nullptr);
838
    }
839
840
76
    Status get_byte_elements(JNIEnv* env, jsize start, jsize len, jbyte* buffer) {
841
76
        DCHECK(!this->uninitialized());
842
76
        env->GetByteArrayRegion((jbyteArray)this->_obj, start, len, buffer);
843
76
        RETURN_ERROR_IF_EXC(env);
844
76
        return Status::OK();
845
76
    }
846
847
    static Status WriteBufferToByteArray(JNIEnv* env, const jbyte* buffer, jint size,
848
6.11k
                                         Array<Local>* serialized_msg) {
849
6.11k
        DCHECK(serialized_msg->uninitialized());
850
        /// create jbyteArray given buffer
851
6.11k
        serialized_msg->_obj = env->NewByteArray(size);
852
6.11k
        RETURN_ERROR_IF_EXC(env);
853
6.11k
        if (serialized_msg->_obj == nullptr) [[unlikely]] {
854
0
            return Status::JniError("couldn't construct jbyteArray");
855
0
        }
856
6.11k
        env->SetByteArrayRegion((jbyteArray)serialized_msg->_obj, 0, size, buffer);
857
6.11k
        RETURN_ERROR_IF_EXC(env);
858
6.11k
        return Status::OK();
859
6.11k
    }
860
861
    template <class T>
862
6.18k
    static Status SerializeThriftMsg(JNIEnv* env, T* msg, Array<Local>* serialized_msg) {
863
6.18k
        int buffer_size = 100 * 1024; // start out with 100KB
864
6.18k
        ThriftSerializer serializer(false, buffer_size);
865
866
6.18k
        uint8_t* buffer = nullptr;
867
6.18k
        uint32_t size = 0;
868
6.18k
        RETURN_IF_ERROR(serializer.serialize(msg, &size, &buffer));
869
870
        // Make sure that 'size' is within the limit of INT_MAX as the use of
871
        // 'size' below takes int.
872
6.18k
        if (size > INT_MAX) [[unlikely]] {
873
0
            return Status::JniError(
874
0
                    "The length of the serialization buffer ({} bytes) exceeds the limit of {} "
875
0
                    "bytes",
876
0
                    size, INT_MAX);
877
0
        }
878
6.18k
        RETURN_IF_ERROR(WriteBufferToByteArray(env, (jbyte*)buffer, size, serialized_msg));
879
6.18k
        return Status::OK();
880
6.18k
    }
881
882
private:
883
    DISALLOW_COPY_AND_ASSIGN(Array);
884
};
885
886
template <RefType Ref>
887
class Class : public Object<Ref> {
888
public:
889
12.5k
    Class() = default;
_ZN5doris3Jni5ClassILNS0_7RefTypeE1EEC2Ev
Line
Count
Source
889
6.32k
    Class() = default;
_ZN5doris3Jni5ClassILNS0_7RefTypeE0EEC2Ev
Line
Count
Source
889
6.23k
    Class() = default;
890
891
44
    static Status find_class(JNIEnv* env, const char* class_str, Class<Ref>* result) {
892
44
        DCHECK(result->uninitialized());
893
        if constexpr (Ref == Local) {
894
            result->_obj = env->FindClass(class_str);
895
            RETURN_ERROR_IF_EXC(env);
896
            return Status::OK();
897
44
        } else if constexpr (Ref == Global) {
898
44
            Class<Local> local_class;
899
44
            local_class._obj = env->FindClass(class_str);
900
44
            RETURN_ERROR_IF_EXC(env);
901
44
            return local_to_global_ref(env, local_class, result);
902
        } else {
903
            static_assert(false);
904
        }
905
44
    }
906
907
    /**
908
     * The class of an object that is already in hand.
909
     *
910
     * Needed where a class cannot be named: an object produced by a plugin is an instance of a
911
     * class inside that plugin's classloader, which FindClass - searching BE's own loader -
912
     * cannot see. Asking the object is the only way to reach it.
913
     */
914
    template <RefType R>
915
6.13k
    static Status get_object_class(JNIEnv* env, const Object<R>& object, Class<Ref>* result) {
916
6.13k
        DCHECK(!object.uninitialized());
917
6.13k
        DCHECK(result->uninitialized());
918
        if constexpr (Ref == Local) {
919
            result->_obj = env->GetObjectClass(object._obj);
920
            RETURN_ERROR_IF_EXC(env);
921
            return Status::OK();
922
6.13k
        } else if constexpr (Ref == Global) {
923
6.13k
            Class<Local> local_class;
924
6.13k
            local_class._obj = env->GetObjectClass(object._obj);
925
6.13k
            RETURN_ERROR_IF_EXC(env);
926
6.13k
            return local_to_global_ref(env, local_class, result);
927
        } else {
928
            static_assert(false);
929
        }
930
6.13k
    }
931
932
    /**
933
     * Whether an object is an instance of this class.
934
     *
935
     * The one way to check the kind of something a plugin handed back: the object's own class is
936
     * private to the plugin's classloader, so the only comparable identity is a shared base class
937
     * BE resolved itself. IsInstanceOf raises no exception, hence the plain bool.
938
     */
939
    template <RefType R>
940
5
    bool is_instance(JNIEnv* env, const Object<R>& object) const {
941
5
        DCHECK(!this->uninitialized());
942
5
        DCHECK(!object.uninitialized());
943
5
        return env->IsInstanceOf(object._obj, (jclass)this->_obj) == JNI_TRUE;
944
5
    }
945
946
    Status get_static_method(JNIEnv* env, const char* method_str, const char* method_signature,
947
17
                             MethodId* method_id) const {
948
17
        DCHECK(!this->uninitialized());
949
17
        DCHECK(method_id->uninitialized());
950
17
        method_id->_id = env->GetStaticMethodID((jclass)this->_obj, method_str, method_signature);
951
17
        RETURN_ERROR_IF_EXC(env);
952
17
        return Status::OK();
953
17
    }
954
955
    Status get_method(JNIEnv* env, const char* method_str, const char* method_signature,
956
13.7k
                      MethodId* method_id) const {
957
13.7k
        DCHECK(!this->uninitialized());
958
13.7k
        DCHECK(method_id->uninitialized());
959
13.7k
        method_id->_id = env->GetMethodID((jclass)this->_obj, method_str, method_signature);
960
13.7k
        RETURN_ERROR_IF_EXC(env);
961
13.7k
        return Status::OK();
962
13.7k
    }
963
964
    Status get_static_fieldId(JNIEnv* env, const char* name, const char* signature,
965
18
                              FieldId* field_id) const {
966
18
        DCHECK(!this->uninitialized());
967
18
        DCHECK(field_id->uninitialized());
968
18
        field_id->_id = env->GetStaticFieldID((jclass)this->_obj, name, signature);
969
18
        RETURN_ERROR_IF_EXC(env);
970
18
        return Status::OK();
971
18
    }
972
973
    Status get_static_object_field(JNIEnv* env, const FieldId& field_id,
974
                                   Object<Local>* result) const {
975
        DCHECK(!this->uninitialized());
976
        DCHECK(!field_id.uninitialized());
977
        result->_obj = env->GetStaticObjectField((jclass)this->_obj, field_id._id);
978
        RETURN_ERROR_IF_EXC(env);
979
        return Status::OK();
980
    }
981
982
    Status get_static_object_field(JNIEnv* env, const FieldId& field_id,
983
18
                                   Object<Global>* global_result) const {
984
18
        DCHECK(!this->uninitialized());
985
18
        DCHECK(!field_id.uninitialized());
986
18
        Object<Local> local_result;
987
18
        local_result._obj = env->GetStaticObjectField((jclass)this->_obj, field_id._id);
988
18
        RETURN_ERROR_IF_EXC(env);
989
18
        return local_to_global_ref(env, local_result, global_result);
990
18
    }
991
992
    Status get_static_object_field(JNIEnv* env, const char* name, const char* signature,
993
18
                                   Object<Global>* global_result) const {
994
18
        Jni::FieldId tmpFieldID;
995
18
        RETURN_IF_ERROR(get_static_fieldId(env, name, signature, &tmpFieldID));
996
18
        RETURN_IF_ERROR(get_static_object_field(env, tmpFieldID, global_result));
997
18
        return Status::OK();
998
18
    }
999
1000
5.55k
    FunctionCall<NewObject> new_object(JNIEnv* env, MethodId method_id) const {
1001
5.55k
        DCHECK(!this->uninitialized());
1002
5.55k
        DCHECK(!method_id.uninitialized());
1003
5.55k
        return FunctionCall<NewObject>::instance(env, (jclass)this->_obj, method_id._id);
1004
5.55k
    }
1005
1006
    FunctionCall<StaticObjectMethod> call_static_object_method(JNIEnv* env,
1007
7.37k
                                                               MethodId method_id) const {
1008
7.37k
        DCHECK(!this->uninitialized());
1009
7.37k
        DCHECK(!method_id.uninitialized());
1010
7.37k
        return FunctionCall<StaticObjectMethod>::instance(env, (jclass)this->_obj, method_id._id);
1011
7.37k
    }
1012
1013
924
    FunctionCall<StaticVoidMethod> call_static_void_method(JNIEnv* env, MethodId method_id) const {
1014
924
        DCHECK(!this->uninitialized());
1015
924
        DCHECK(!method_id.uninitialized());
1016
924
        return FunctionCall<StaticVoidMethod>::instance(env, (jclass)this->_obj, method_id._id);
1017
924
    }
1018
1019
private:
1020
    DISALLOW_COPY_AND_ASSIGN(Class);
1021
};
1022
1023
using LocalClass = Class<Local>;
1024
using GlobalClass = Class<Global>;
1025
1026
using LocalArray = Array<Local>;
1027
using GlobalArray = Array<Global>;
1028
1029
using LocalString = String<Local>;
1030
using GlobalString = String<Global>;
1031
1032
template <CallTag tag>
1033
template <RefType Ref>
1034
58.8k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1035
58.8k
    jvalue v;
1036
58.8k
    std::memset(&v, 0, sizeof(v));
1037
58.8k
    v.l = obj._obj;
1038
58.8k
    _args.push_back(v);
1039
58.8k
    return *this;
1040
58.8k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1034
33.7k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1035
33.7k
    jvalue v;
1036
33.7k
    std::memset(&v, 0, sizeof(v));
1037
33.7k
    v.l = obj._obj;
1038
33.7k
    _args.push_back(v);
1039
33.7k
    return *this;
1040
33.7k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1034
222
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1035
222
    jvalue v;
1036
222
    std::memset(&v, 0, sizeof(v));
1037
222
    v.l = obj._obj;
1038
222
    _args.push_back(v);
1039
222
    return *this;
1040
222
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1034
5.32k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1035
5.32k
    jvalue v;
1036
5.32k
    std::memset(&v, 0, sizeof(v));
1037
5.32k
    v.l = obj._obj;
1038
5.32k
    _args.push_back(v);
1039
5.32k
    return *this;
1040
5.32k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1034
18.6k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1035
18.6k
    jvalue v;
1036
18.6k
    std::memset(&v, 0, sizeof(v));
1037
18.6k
    v.l = obj._obj;
1038
18.6k
    _args.push_back(v);
1039
18.6k
    return *this;
1040
18.6k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE8EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1034
924
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1035
924
    jvalue v;
1036
924
    std::memset(&v, 0, sizeof(v));
1037
924
    v.l = obj._obj;
1038
924
    _args.push_back(v);
1039
924
    return *this;
1040
924
}
1041
1042
template <CallTag tag>
1043
template <RefType Ref>
1044
77
NonvirtualFunctionCall<tag>& NonvirtualFunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1045
77
    jvalue v;
1046
77
    std::memset(&v, 0, sizeof(v));
1047
77
    v.l = obj._obj;
1048
77
    this->_args.push_back(v);
1049
77
    return *this;
1050
77
}
1051
1052
template <CallTag tag>
1053
76.2k
Status FunctionCall<tag>::call(Object<Local>* result) {
1054
76.2k
    DCHECK(result->uninitialized());
1055
76.2k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1056
76.2k
    RETURN_ERROR_IF_EXC(this->_env);
1057
76.2k
    return Status::OK();
1058
76.2k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EE4callEPNS0_6ObjectILNS0_7RefTypeE0EEE
Line
Count
Source
1053
1.36k
Status FunctionCall<tag>::call(Object<Local>* result) {
1054
1.36k
    DCHECK(result->uninitialized());
1055
1.36k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1056
1.36k
    RETURN_ERROR_IF_EXC(this->_env);
1057
1.36k
    return Status::OK();
1058
1.36k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE4callEPNS0_6ObjectILNS0_7RefTypeE0EEE
Line
Count
Source
1053
69.3k
Status FunctionCall<tag>::call(Object<Local>* result) {
1054
69.3k
    DCHECK(result->uninitialized());
1055
69.3k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1056
69.3k
    RETURN_ERROR_IF_EXC(this->_env);
1057
69.3k
    return Status::OK();
1058
69.3k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE9EE4callEPNS0_6ObjectILNS0_7RefTypeE0EEE
Line
Count
Source
1053
5.54k
Status FunctionCall<tag>::call(Object<Local>* result) {
1054
5.54k
    DCHECK(result->uninitialized());
1055
5.54k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1056
5.54k
    RETURN_ERROR_IF_EXC(this->_env);
1057
5.54k
    return Status::OK();
1058
5.54k
}
1059
1060
template <CallTag tag>
1061
6.01k
Status FunctionCall<tag>::call(Object<Global>* result) {
1062
6.01k
    DCHECK(result->uninitialized());
1063
6.01k
    Object<Local> local_result;
1064
6.01k
    local_result._obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1065
6.01k
    RETURN_ERROR_IF_EXC(this->_env);
1066
6.01k
    return local_to_global_ref(_env, local_result, result);
1067
6.01k
}
1068
1069
template <CallTag tag>
1070
77
Status NonvirtualFunctionCall<tag>::call(Object<Local>* result) {
1071
77
    DCHECK(result->uninitialized());
1072
77
    result->_obj = CallHelper<tag>::call_impl(this->_env, this->_base, _cls, this->_method,
1073
77
                                              this->_args.data());
1074
77
    RETURN_ERROR_IF_EXC(this->_env);
1075
77
    return Status::OK();
1076
77
}
1077
1078
template <RefType Ref>
1079
template <RefType R>
1080
NonvirtualFunctionCall<NonvirtualObjectMethod> Object<Ref>::call_nonvirtual_object_method(
1081
77
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1082
77
    DCHECK(!this->uninitialized());
1083
77
    DCHECK(!method_id.uninitialized());
1084
1085
77
    return NonvirtualFunctionCall<NonvirtualObjectMethod>::instance(env, _obj, (jclass)clazz._obj,
1086
77
                                                                    method_id._id);
1087
77
}
1088
1089
template <RefType Ref>
1090
template <RefType R>
1091
NonvirtualFunctionCall<NonvirtualVoidMethod> Object<Ref>::call_nonvirtual_void_method(
1092
6.63k
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1093
6.63k
    DCHECK(!this->uninitialized());
1094
6.63k
    DCHECK(!method_id.uninitialized());
1095
6.63k
    return NonvirtualFunctionCall<NonvirtualVoidMethod>::instance(env, _obj, (jclass)clazz._obj,
1096
6.63k
                                                                  method_id._id);
1097
6.63k
}
1098
1099
template <RefType Ref>
1100
template <RefType R>
1101
NonvirtualFunctionCall<NonvirtualIntMethod> Object<Ref>::call_nonvirtual_int_method(
1102
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1103
    DCHECK(!this->uninitialized());
1104
    DCHECK(!method_id.uninitialized());
1105
    return NonvirtualFunctionCall<NonvirtualIntMethod>::instance(env, _obj, (jclass)clazz._obj,
1106
                                                                 method_id._id);
1107
}
1108
1109
template <RefType Ref>
1110
template <RefType R>
1111
NonvirtualFunctionCall<NonvirtualBooleanMethod> Object<Ref>::call_nonvirtual_boolean_method(
1112
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1113
    DCHECK(!this->uninitialized());
1114
    DCHECK(!method_id.uninitialized());
1115
    return NonvirtualFunctionCall<NonvirtualBooleanMethod>::instance(env, _obj, (jclass)clazz._obj,
1116
                                                                     method_id._id);
1117
}
1118
1119
class Util {
1120
public:
1121
    static size_t get_max_jni_heap_memory_size();
1122
1123
    template <RefType Ref>
1124
44
    static Status find_class(JNIEnv* env, const char* class_str, Class<Ref>* result) {
1125
44
        return Class<Ref>::find_class(env, class_str, result);
1126
44
    }
1127
1128
    template <RefType Ref, RefType R>
1129
6.16k
    static Status get_object_class(JNIEnv* env, const Object<R>& object, Class<Ref>* result) {
1130
6.16k
        return Class<Ref>::get_object_class(env, object, result);
1131
6.16k
    }
1132
1133
    template <RefType Ref>
1134
    static Status WriteBufferToByteArray(JNIEnv* env, const jbyte* buffer, jint size,
1135
77
                                         Array<Ref>* serialized_msg) {
1136
77
        if constexpr (Ref == Local) {
1137
77
            return Array<Local>::WriteBufferToByteArray(env, buffer, size, serialized_msg);
1138
        } else if constexpr (Ref == Global) {
1139
            Array<Local> local_obj;
1140
            RETURN_IF_ERROR(Array<Local>::WriteBufferToByteArray(env, buffer, size, &local_obj));
1141
            return local_to_global_ref(env, local_obj, serialized_msg);
1142
        } else {
1143
            static_assert(false);
1144
        }
1145
77
    }
1146
1147
    template <class T, RefType Ref>
1148
6.22k
    static Status SerializeThriftMsg(JNIEnv* env, T* msg, Array<Ref>* serialized_msg) {
1149
6.22k
        if constexpr (Ref == Local) {
1150
6.22k
            return Array<Local>::SerializeThriftMsg(env, msg, serialized_msg);
1151
        } else if (Ref == Global) {
1152
            Array<Local> local_obj;
1153
            RETURN_IF_ERROR(Array<Local>::SerializeThriftMsg(env, msg, local_obj));
1154
            return local_to_global_ref(env, local_obj, serialized_msg);
1155
        } else {
1156
            static_assert(false);
1157
        }
1158
6.22k
    }
1159
1160
    template <RefType Ref>
1161
    static Status convert_to_java_map(JNIEnv* env, const std::map<std::string, std::string>& map,
1162
5.54k
                                      Object<Ref>* hashmap_object) {
1163
5.54k
        RETURN_IF_ERROR(hashmap_class.new_object(env, hashmap_constructor)
1164
5.54k
                                .with_arg((jint)map.size())
1165
5.54k
                                .call(hashmap_object));
1166
1167
16.7k
        for (const auto& it : map) {
1168
16.7k
            LocalString key;
1169
16.7k
            RETURN_IF_ERROR(String<Local>::new_string(env, it.first.c_str(), &key));
1170
1171
16.7k
            LocalString value;
1172
16.7k
            RETURN_IF_ERROR(String<Local>::new_string(env, it.second.c_str(), &value));
1173
1174
16.7k
            LocalObject result;
1175
16.7k
            RETURN_IF_ERROR(hashmap_object->call_object_method(env, hashmap_put)
1176
16.7k
                                    .with_arg(key)
1177
16.7k
                                    .with_arg(value)
1178
16.7k
                                    .call());
1179
16.7k
        }
1180
5.54k
        return Status::OK();
1181
5.54k
    }
1182
1183
    template <RefType Ref>
1184
    static Status convert_to_cpp_map(JNIEnv* env, const Object<Ref>& map,
1185
2
                                     std::map<std::string, std::string>* resultMap) {
1186
2
        LocalObject entrySet;
1187
2
        RETURN_IF_ERROR(map.call_object_method(env, mapEntrySetMethod).call(&entrySet));
1188
1189
        // Call the iterator method on the set to iterate over the key-value pairs
1190
2
        LocalObject iteratorSet;
1191
2
        RETURN_IF_ERROR(entrySet.call_object_method(env, iteratorSetMethod).call(&iteratorSet));
1192
1193
6
        while (true) {
1194
6
            jboolean hasNext = false;
1195
6
            RETURN_IF_ERROR(
1196
6
                    iteratorSet.call_boolean_method(env, iteratorHasNextMethod).call(&hasNext));
1197
6
            if (!hasNext) {
1198
2
                break;
1199
2
            }
1200
1201
4
            LocalObject entry;
1202
4
            RETURN_IF_ERROR(iteratorSet.call_object_method(env, iteratorNextMethod).call(&entry));
1203
1204
4
            LocalString javaKey;
1205
4
            RETURN_IF_ERROR(entry.call_object_method(env, getEntryKeyMethod).call(&javaKey));
1206
1207
4
            LocalString javaValue;
1208
4
            RETURN_IF_ERROR(entry.call_object_method(env, getEntryValueMethod).call(&javaValue));
1209
1210
4
            LocalStringBufferGuard key;
1211
4
            RETURN_IF_ERROR(javaKey.get_string_chars(env, &key));
1212
1213
4
            LocalStringBufferGuard value;
1214
4
            RETURN_IF_ERROR(javaValue.get_string_chars(env, &value));
1215
1216
            // Store the key-value pair in the map
1217
4
            (*resultMap)[key.get()] = value.get();
1218
4
        }
1219
2
        return Status::OK();
1220
2
    }
1221
1222
    // The outcome of the one attempt to resolve the JNI base, or nullopt when nothing has
1223
    // attempted it yet. Public, unlike ensure_jni_base() below, precisely because it never
1224
    // triggers the attempt: this is what a reader that must not create a JVM asks - the
1225
    // /api/jni_plugin_status endpoint, which exists to answer "why is Java not working here"
1226
    // and would otherwise have to start a JVM to find out.
1227
    static std::optional<Status> jni_base_outcome();
1228
1229
private:
1230
    // Resolves everything the BE needs from the JVM before it can call any Java code: the
1231
    // exception helpers, the native methods the Java side links against, and the
1232
    // collection classes cached below. Runs once, right after the JVM appears; every
1233
    // caller that follows gets the outcome of that one attempt.
1234
    //
1235
    // Deliberately NOT part of "does this process have a JVM": all of it comes out of
1236
    // doris-jni-spi.jar, and a BE whose Java deployment is incomplete still serves HDFS through
1237
    // libhdfs. JvmLauncher runs it once at the end of its bootstrap and logs a failure; Env, the
1238
    // door every Java caller comes through, refuses to hand out a JNIEnv while it is failing.
1239
    //
1240
    // Only those two may call it. JvmLauncher calls it from inside its bootstrap, with the
1241
    // calling thread already attached and its env cached, because the resolution asks Env::Get()
1242
    // for a JNIEnv and an unattached thread there would go back through ensure_jvm() and deadlock
1243
    // on the once flag the bootstrap is already holding.
1244
    //
1245
    // Env::GetJNIEnvSlowPath() calls it from an unattached thread on purpose, and the invariant
1246
    // that makes THAT safe is a different one, worth stating because nothing enforces it: by the
1247
    // time the slow path gets here, ensure_jvm()'s call_once has already run to completion on
1248
    // some thread, so the resolution below is never the one that runs - it is always the cached
1249
    // answer of the attempt the bootstrap made. Every early exit of _bootstrap() leaves
1250
    // jvm_status non-OK, and the slow path returns on that before reaching this line.
1251
    //
1252
    // Making the base lazy (that is, resolving it here for real rather than reading a cached
1253
    // answer) would put the deadlock straight back, so GetJNIEnvSlowPath() holds it down with a
1254
    // DCHECK: on that path an outcome must already exist before this is called.
1255
    static Status ensure_jni_base();
1256
    friend class JvmLauncher;
1257
    friend class Env;
1258
1259
    static void _parse_max_heap_memory_size_from_jvm();
1260
1261
    // Bytes named by the last -Xmx in `options`, or 0 when none of them says. Split out from the
1262
    // above so that the parsing can be tested without a JVM; see jni_util_test.cpp.
1263
    static jlong _parse_xmx(const std::string& options);
1264
1265
    static Status _init_jni_base() WARN_UNUSED_RESULT;
1266
    static Status _init_collect_class() WARN_UNUSED_RESULT;
1267
    static Status _init_register_natives() WARN_UNUSED_RESULT;
1268
1269
    // for jvm heap
1270
    static jlong max_jvm_heap_memory_size_;
1271
1272
    //for hashmap
1273
    static GlobalClass hashmap_class;
1274
    static MethodId hashmap_constructor;
1275
    static MethodId hashmap_put;
1276
1277
    //for map
1278
    static GlobalClass mapClass;
1279
    static MethodId mapEntrySetMethod;
1280
1281
    // for map entry
1282
    static GlobalClass mapEntryClass;
1283
    static MethodId getEntryKeyMethod;
1284
    static MethodId getEntryValueMethod;
1285
1286
    //for set
1287
    static GlobalClass setClass;
1288
    static MethodId iteratorSetMethod;
1289
1290
    // for iterator
1291
    static GlobalClass iteratorClass;
1292
    static MethodId iteratorHasNextMethod;
1293
    static MethodId iteratorNextMethod;
1294
};
1295
}; // namespace Jni
1296
1297
} // namespace doris