Coverage Report

Created: 2026-09-16 16:03

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
274k
    do {                                              \
43
274k
        if (env->ExceptionCheck()) [[unlikely]]       \
44
4
            return Jni::Env::GetJniExceptionMsg(env); \
45
274k
    } 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
232k
    static Status Get(JNIEnv** env) {
57
232k
        if (tls_env_) {
58
231k
            *env = tls_env_;
59
231k
        } else {
60
172
            Status status = GetJNIEnvSlowPath(env);
61
172
            if (!status.ok()) {
62
0
                return status;
63
0
            }
64
172
        }
65
232k
        if (*env == nullptr) [[unlikely]] {
66
0
            return Status::JniError("Failed to get JNIEnv: it is nullptr.");
67
0
        }
68
232k
        return Status::OK();
69
232k
    }
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
48
    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
683
    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
340
    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.37k
    static jobject create(JNIEnv* env, jobject obj) { return env->NewLocalRef(obj); }
175
176
199k
    static void destroy(JNIEnv* env, jobject obj) { env->DeleteLocalRef(obj); }
177
178
202k
    static Status get_env(JNIEnv** env) {
179
        // Get the JNIEnv* corresponding to current thread.
180
202k
        return Jni::Env::Get(env);
181
202k
    }
182
};
183
184
template <>
185
struct RefHelper<Global> {
186
12.2k
    static jobject create(JNIEnv* env, jobject obj) { return env->NewGlobalRef(obj); }
187
188
12.3k
    static void destroy(JNIEnv* env, jobject obj) { env->DeleteGlobalRef(obj); }
189
190
12.3k
    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.7k
    MethodId() = default;
202
141k
    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
85.4k
    static jobject call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
255
85.4k
        return env->CallObjectMethodA(obj, methodID, args);
256
85.4k
    }
257
    using BASE_TYPE = jobject;
258
    using RETURN_TYPE = jobject;
259
};
260
261
template <>
262
struct CallHelper<IntMethod> {
263
1.01k
    static jint call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
264
1.01k
        return env->CallIntMethodA(obj, methodID, args);
265
1.01k
    }
266
    using BASE_TYPE = jobject;
267
    using RETURN_TYPE = jint;
268
};
269
270
template <>
271
struct CallHelper<LongMethod> {
272
13.8k
    static jlong call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
273
13.8k
        return env->CallLongMethodA(obj, methodID, args);
274
13.8k
    }
275
    using BASE_TYPE = jobject;
276
    using RETURN_TYPE = jlong;
277
};
278
279
template <>
280
struct CallHelper<VoidMethod> {
281
252
    static void call_impl(JNIEnv* env, jobject obj, jmethodID methodID, const jvalue* args) {
282
252
        env->CallVoidMethodA(obj, methodID, args);
283
252
    }
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.41k
    static jobject call_impl(JNIEnv* env, jclass cls, jmethodID methodID, const jvalue* args) {
300
7.41k
        return env->CallStaticObjectMethodA(cls, methodID, args);
301
7.41k
    }
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.53k
    static jobject call_impl(JNIEnv* env, jclass cls, jmethodID methodID, const jvalue* args) {
337
5.53k
        return env->NewObjectA(cls, methodID, args);
338
5.53k
    }
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.62k
                          const jvalue* args) {
348
6.62k
        return env->CallNonvirtualVoidMethodA(obj, clazz, methodID, args);
349
6.62k
    }
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
64
                             const jvalue* args) {
359
64
        return env->CallNonvirtualObjectMethodA(obj, clazz, methodID, args);
360
64
    }
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
114k
                                 jmethodID method_id) {
395
114k
        return FunctionCall(env, base, method_id);
396
114k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EE8instanceEP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
394
7.42k
                                 jmethodID method_id) {
395
7.42k
        return FunctionCall(env, base, method_id);
396
7.42k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
85.3k
                                 jmethodID method_id) {
395
85.3k
        return FunctionCall(env, base, method_id);
396
85.3k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
13.8k
                                 jmethodID method_id) {
395
13.8k
        return FunctionCall(env, base, method_id);
396
13.8k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE1EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
1.01k
                                 jmethodID method_id) {
395
1.01k
        return FunctionCall(env, base, method_id);
396
1.01k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE8instanceEP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
394
248
                                 jmethodID method_id) {
395
248
        return FunctionCall(env, base, method_id);
396
248
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE9EE8instanceEP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
394
5.53k
                                 jmethodID method_id) {
395
5.53k
        return FunctionCall(env, base, method_id);
396
5.53k
    }
_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
227
            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.93k
        } else if constexpr (std::is_same_v<T, jint>) {
417
9.93k
            v.i = arg;
418
9.93k
        } else if constexpr (std::is_same_v<T, jlong>) {
419
1.34k
            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.70k
    FunctionCall& with_arg(T arg) {
406
3.70k
        jvalue v;
407
3.70k
        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.70k
        } else if constexpr (std::is_same_v<T, jint>) {
417
3.70k
            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.70k
        _args.push_back(v);
428
3.70k
        return *this;
429
3.70k
    }
_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.52k
    FunctionCall& with_arg(T arg) {
406
5.52k
        jvalue v;
407
5.52k
        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.52k
        } else if constexpr (std::is_same_v<T, jint>) {
417
5.52k
            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.52k
        _args.push_back(v);
428
5.52k
        return *this;
429
5.52k
    }
_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
227
    FunctionCall& with_arg(T arg) {
406
227
        jvalue v;
407
227
        std::memset(&v, 0, sizeof(v));
408
227
        if constexpr (std::is_same_v<T, jboolean>) {
409
227
            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
227
        _args.push_back(v);
428
227
        return *this;
429
227
    }
_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
692
    FunctionCall& with_arg(T arg) {
406
692
        jvalue v;
407
692
        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
692
        } else if constexpr (std::is_same_v<T, jint>) {
417
692
            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
692
        _args.push_back(v);
428
692
        return *this;
429
692
    }
_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
228
    FunctionCall& with_arg(T arg) {
406
228
        jvalue v;
407
228
        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
228
        } else if constexpr (std::is_same_v<T, jlong>) {
419
228
            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
228
        _args.push_back(v);
428
228
        return *this;
429
228
    }
_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
14.8k
    Status call(ReturnType* result) {
437
14.8k
        *result = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
438
14.8k
        RETURN_ERROR_IF_EXC(_env);
439
14.8k
        return Status::OK();
440
14.8k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EE4callIlQsr3stdE9is_same_vINS0_10CallHelperIXT_EE11RETURN_TYPEETL0__EEENS_6StatusEPT_
Line
Count
Source
436
13.8k
    Status call(ReturnType* result) {
437
13.8k
        *result = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
438
13.8k
        RETURN_ERROR_IF_EXC(_env);
439
13.8k
        return Status::OK();
440
13.8k
    }
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE1EE4callIiQsr3stdE9is_same_vINS0_10CallHelperIXT_EE11RETURN_TYPEETL0__EEENS_6StatusEPT_
Line
Count
Source
436
1.01k
    Status call(ReturnType* result) {
437
1.01k
        *result = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
438
1.01k
        RETURN_ERROR_IF_EXC(_env);
439
1.01k
        return Status::OK();
440
1.01k
    }
_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.17k
                              std::is_same<return_type, void>>) {
454
1.17k
            CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
455
1.17k
            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_7CallTagE3EE4callEv
Line
Count
Source
446
252
    Status call() {
447
252
        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
252
                              std::is_same<return_type, void>>) {
454
252
            CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
455
252
            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
252
        return Status::OK();
464
252
    }
_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_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
121k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EEC2EP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
469
7.42k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
85.3k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
13.8k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE1EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
1.01k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
248
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE9EEC2EP7JNIEnv_P7_jclassP10_jmethodID
Line
Count
Source
469
5.53k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE10EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
6.61k
            : _env(env), _base(base), _method(method_id) {}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE11EEC2EP7JNIEnv_P8_jobjectP10_jmethodID
Line
Count
Source
469
64
            : _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.67k
                                           jclass cls, jmethodID method_id) {
486
6.67k
        return NonvirtualFunctionCall(env, base, cls, method_id);
487
6.67k
    }
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE10EE8instanceEP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
485
6.61k
                                           jclass cls, jmethodID method_id) {
486
6.61k
        return NonvirtualFunctionCall(env, base, cls, method_id);
487
6.61k
    }
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE11EE8instanceEP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
485
64
                                           jclass cls, jmethodID method_id) {
486
64
        return NonvirtualFunctionCall(env, base, cls, method_id);
487
64
    }
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
163
    NonvirtualFunctionCall& with_arg(T arg) {
496
163
        jvalue v;
497
163
        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
163
        } else if constexpr (std::is_same_v<T, jlong>) {
509
163
            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
163
        this->_args.push_back(v);
518
163
        return *this;
519
163
    }
_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
100
    NonvirtualFunctionCall& with_arg(T arg) {
496
100
        jvalue v;
497
100
        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
100
        } else if constexpr (std::is_same_v<T, jlong>) {
509
100
            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
100
        this->_args.push_back(v);
518
100
        return *this;
519
100
    }
_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
63
    NonvirtualFunctionCall& with_arg(T arg) {
496
63
        jvalue v;
497
63
        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
63
        } else if constexpr (std::is_same_v<T, jlong>) {
509
63
            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
63
        this->_args.push_back(v);
518
63
        return *this;
519
63
    }
520
521
    template <RefType Ref>
522
    NonvirtualFunctionCall& with_arg(const Object<Ref>& obj) WARN_UNUSED_RESULT;
523
524
    // no override
525
6.61k
    Status call() {
526
6.61k
        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.61k
                              std::is_same<return_type, void>>) {
533
6.61k
            CallHelper<tag>::call_impl(this->_env, this->_base, _cls, this->_method,
534
6.61k
                                       this->_args.data());
535
6.61k
            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.61k
        return Status::OK();
545
6.61k
    }
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.67k
            : FunctionCall<tag>(env, base, method_id), _cls(cls) {}
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE10EEC2EP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
561
6.61k
            : FunctionCall<tag>(env, base, method_id), _cls(cls) {}
_ZN5doris3Jni22NonvirtualFunctionCallILNS0_7CallTagE11EEC2EP7JNIEnv_P8_jobjectP7_jclassP10_jmethodID
Line
Count
Source
561
64
            : 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
228k
    Object() = default;
_ZN5doris3Jni6ObjectILNS0_7RefTypeE1EEC2Ev
Line
Count
Source
597
12.4k
    Object() = default;
_ZN5doris3Jni6ObjectILNS0_7RefTypeE0EEC2Ev
Line
Count
Source
597
215k
    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
228k
    virtual ~Object() {
621
228k
        if (_obj != nullptr) [[likely]] {
622
211k
            JNIEnv* env = nullptr;
623
211k
            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
211k
            RefHelper<Ref>::destroy(env, _obj);
628
211k
        }
629
228k
    }
_ZN5doris3Jni6ObjectILNS0_7RefTypeE0EED2Ev
Line
Count
Source
620
215k
    virtual ~Object() {
621
215k
        if (_obj != nullptr) [[likely]] {
622
199k
            JNIEnv* env = nullptr;
623
199k
            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
199k
            RefHelper<Ref>::destroy(env, _obj);
628
199k
        }
629
215k
    }
_ZN5doris3Jni6ObjectILNS0_7RefTypeE1EED2Ev
Line
Count
Source
620
12.5k
    virtual ~Object() {
621
12.5k
        if (_obj != nullptr) [[likely]] {
622
12.3k
            JNIEnv* env = nullptr;
623
12.3k
            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.3k
            RefHelper<Ref>::destroy(env, _obj);
628
12.3k
        }
629
12.5k
    }
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.37k
    static Status create(JNIEnv* env, const Object<R>& other, Object<Ref>* result) {
633
3.37k
        DCHECK(!other.uninitialized());
634
3.37k
        DCHECK(result->uninitialized());
635
636
3.37k
        result->_obj = RefHelper<Ref>::create(env, other._obj);
637
3.37k
        RETURN_ERROR_IF_EXC(env);
638
3.37k
        return Status::OK();
639
3.37k
    }
640
641
725k
    bool uninitialized() const { return _obj == nullptr; }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE0EE13uninitializedEv
Line
Count
Source
641
530k
    bool uninitialized() const { return _obj == nullptr; }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE1EE13uninitializedEv
Line
Count
Source
641
194k
    bool uninitialized() const { return _obj == nullptr; }
642
643
    // Access the JNI handle without changing ownership.
644
0
    jobject get() const { return _obj; }
Unexecuted instantiation: _ZNK5doris3Jni6ObjectILNS0_7RefTypeE0EE3getEv
Unexecuted instantiation: _ZNK5doris3Jni6ObjectILNS0_7RefTypeE1EE3getEv
645
646
2
    void reset(JNIEnv* env) {
647
2
        if (_obj == nullptr) {
648
0
            return;
649
0
        }
650
2
        RefHelper<Ref>::destroy(env, _obj);
651
2
        _obj = nullptr;
652
2
    }
653
654
    template <RefType T>
655
113k
    bool equal(JNIEnv* env, const Object<T>& other) {
656
113k
        DCHECK(!uninitialized());
657
113k
        DCHECK(!other.uninitialized());
658
113k
        return env->IsSameObject(this->_obj, other._obj); //assume not throw exception.
659
113k
    }
660
661
85.3k
    FunctionCall<ObjectMethod> call_object_method(JNIEnv* env, MethodId method_id) const {
662
85.3k
        DCHECK(!this->uninitialized());
663
85.3k
        DCHECK(!method_id.uninitialized());
664
85.3k
        return FunctionCall<ObjectMethod>::instance(env, _obj, method_id._id);
665
85.3k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE0EE18call_object_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
661
85.3k
    FunctionCall<ObjectMethod> call_object_method(JNIEnv* env, MethodId method_id) const {
662
85.3k
        DCHECK(!this->uninitialized());
663
        DCHECK(!method_id.uninitialized());
664
85.3k
        return FunctionCall<ObjectMethod>::instance(env, _obj, method_id._id);
665
85.3k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE1EE18call_object_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
661
2
    FunctionCall<ObjectMethod> call_object_method(JNIEnv* env, MethodId method_id) const {
662
2
        DCHECK(!this->uninitialized());
663
        DCHECK(!method_id.uninitialized());
664
2
        return FunctionCall<ObjectMethod>::instance(env, _obj, method_id._id);
665
2
    }
666
667
1.01k
    FunctionCall<IntMethod> call_int_method(JNIEnv* env, MethodId method_id) const {
668
1.01k
        DCHECK(!this->uninitialized());
669
1.01k
        DCHECK(!method_id.uninitialized());
670
1.01k
        return FunctionCall<IntMethod>::instance(env, _obj, method_id._id);
671
1.01k
    }
672
673
13.8k
    FunctionCall<LongMethod> call_long_method(JNIEnv* env, MethodId method_id) const {
674
13.8k
        DCHECK(!this->uninitialized());
675
13.8k
        DCHECK(!method_id.uninitialized());
676
13.8k
        return FunctionCall<LongMethod>::instance(env, _obj, method_id._id);
677
13.8k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE0EE16call_long_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
673
11.1k
    FunctionCall<LongMethod> call_long_method(JNIEnv* env, MethodId method_id) const {
674
11.1k
        DCHECK(!this->uninitialized());
675
        DCHECK(!method_id.uninitialized());
676
11.1k
        return FunctionCall<LongMethod>::instance(env, _obj, method_id._id);
677
11.1k
    }
_ZNK5doris3Jni6ObjectILNS0_7RefTypeE1EE16call_long_methodEP7JNIEnv_NS0_8MethodIdE
Line
Count
Source
673
2.75k
    FunctionCall<LongMethod> call_long_method(JNIEnv* env, MethodId method_id) const {
674
2.75k
        DCHECK(!this->uninitialized());
675
        DCHECK(!method_id.uninitialized());
676
2.75k
        return FunctionCall<LongMethod>::instance(env, _obj, method_id._id);
677
2.75k
    }
678
679
249
    FunctionCall<VoidMethod> call_void_method(JNIEnv* env, MethodId method_id) const {
680
249
        DCHECK(!this->uninitialized());
681
249
        DCHECK(!method_id.uninitialized());
682
249
        return FunctionCall<VoidMethod>::instance(env, _obj, method_id._id);
683
249
    }
684
685
6
    FunctionCall<BooleanMethod> call_boolean_method(JNIEnv* env, MethodId method_id) const {
686
6
        DCHECK(!this->uninitialized());
687
6
        DCHECK(!method_id.uninitialized());
688
6
        return FunctionCall<BooleanMethod>::instance(env, _obj, method_id._id);
689
6
    }
690
691
    template <RefType R>
692
    NonvirtualFunctionCall<NonvirtualVoidMethod> call_nonvirtual_void_method(
693
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
694
695
    template <RefType R>
696
    NonvirtualFunctionCall<NonvirtualObjectMethod> call_nonvirtual_object_method(
697
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
698
699
    template <RefType R>
700
    NonvirtualFunctionCall<NonvirtualIntMethod> call_nonvirtual_int_method(
701
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
702
703
    template <RefType R>
704
    NonvirtualFunctionCall<NonvirtualBooleanMethod> call_nonvirtual_boolean_method(
705
            JNIEnv* env, const Class<R>& clazz, MethodId method_id) const;
706
707
protected:
708
    jobject _obj = nullptr;
709
    DISALLOW_COPY_AND_ASSIGN(Object);
710
};
711
712
using LocalObject = Object<Local>;
713
using GlobalObject = Object<Global>;
714
715
static inline Status local_to_global_ref(JNIEnv* env, const LocalObject& local_ref,
716
12.3k
                                         GlobalObject* global_ref) {
717
12.3k
    return Object<Global>::create(env, local_ref, global_ref);
718
12.3k
}
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
716
62
                                         GlobalObject* global_ref) {
717
62
    return Object<Global>::create(env, local_ref, global_ref);
718
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_14_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
716
12.2k
                                         GlobalObject* global_ref) {
717
12.2k
    return Object<Global>::create(env, local_ref, global_ref);
718
12.2k
}
Unexecuted instantiation: unity_8_cxx.cxx:_ZN5doris3JniL19local_to_global_refEP7JNIEnv_RKNS0_6ObjectILNS0_7RefTypeE0EEEPNS3_ILS4_1EEE
Unexecuted instantiation: unity_7_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_6_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
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: 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: 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: iceberg_partition_function.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: 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
719
720
// auto ReleaseStringUTFChars ReleaseByteArrayElements ...
721
template <BufferType bufferfType, RefType Ref>
722
class BufferGuard {
723
public:
724
3.37k
    BufferGuard() = default;
725
726
    template <RefType R>
727
    static Status create(JNIEnv* env, const Object<R>& object,
728
3.37k
                         BufferGuard<bufferfType, Ref>* result, jboolean* isCopy) {
729
3.37k
        DCHECK(result->_buffer == nullptr && result->_object.uninitialized());
730
731
3.37k
        RETURN_IF_ERROR(Object<Ref>::create(env, object, &result->_object));
732
733
3.37k
        if constexpr (bufferfType == BufferType::Chars) {
734
3.37k
            result->_buffer = env->GetStringUTFChars((jstring)result->_object._obj, isCopy);
735
        } else if constexpr (bufferfType == BufferType::ByteArray) {
736
            result->_buffer =
737
                    (char*)env->GetByteArrayElements((jbyteArray)result->_object._obj, isCopy);
738
        } else {
739
            static_assert(false);
740
        }
741
742
3.37k
        RETURN_ERROR_IF_EXC(env);
743
3.37k
        if (result->_buffer == nullptr) [[unlikely]] {
744
0
            return Status::JniError("GetStringUTFChars/GetByteArrayElements fail.");
745
0
        }
746
747
3.37k
        return Status::OK();
748
3.37k
    }
749
750
3.37k
    ~BufferGuard() {
751
3.37k
        if (_object.uninitialized() || _buffer == nullptr) [[unlikely]] {
752
0
            return;
753
0
        }
754
3.37k
        JNIEnv* env = nullptr;
755
756
3.37k
        if (auto st = RefHelper<Ref>::get_env(&env); !st.ok()) [[unlikely]] {
757
0
            LOG(WARNING) << "BufferGuard release fail: " << st;
758
0
            return;
759
0
        }
760
761
3.37k
        if constexpr (bufferfType == BufferType::Chars) {
762
3.37k
            env->ReleaseStringUTFChars((jstring)_object._obj, _buffer);
763
        } else if constexpr (bufferfType == BufferType::ByteArray) {
764
            env->ReleaseByteArrayElements((jbyteArray)_object._obj, (jbyte*)_buffer, JNI_ABORT);
765
        }
766
3.37k
    }
767
768
6.74k
    const char* get() const { return _buffer; }
769
770
private:
771
    Object<Ref> _object;
772
    const char* _buffer = nullptr;
773
774
    DISALLOW_COPY_AND_ASSIGN(BufferGuard);
775
};
776
777
template <RefType Ref>
778
using StringBufferGuard = BufferGuard<Chars, Ref>;
779
using LocalStringBufferGuard = BufferGuard<Chars, Local>;
780
using GlobalStringBufferGuard = BufferGuard<Chars, Global>;
781
782
template <RefType Ref>
783
using ByteArrayBufferGuard = BufferGuard<ByteArray, Ref>;
784
using LocalByteArrayBufferGuard = BufferGuard<ByteArray, Local>;
785
using GlobalByteArrayBufferGuard = BufferGuard<ByteArray, Global>;
786
787
template <RefType Ref>
788
class String : public Object<Ref> {
789
public:
790
49.8k
    String() = default;
791
792
46.3k
    static Status new_string(JNIEnv* env, const char* utf_chars, String<Ref>* result) {
793
46.3k
        DCHECK(result->uninitialized());
794
795
46.3k
        if constexpr (Ref == Local) {
796
46.3k
            result->_obj = env->NewStringUTF(utf_chars);
797
46.3k
            RETURN_ERROR_IF_EXC(env);
798
        } else if constexpr (Ref == Global) {
799
            String local_result;
800
            local_result->_obj = env->NewStringUTF(utf_chars);
801
            RETURN_ERROR_IF_EXC(env);
802
            RETURN_IF_ERROR(local_to_global_ref(env, local_result, result));
803
        } else {
804
            static_assert(false);
805
        }
806
46.3k
        return Status::OK();
807
46.3k
    }
808
809
3.37k
    Status get_string_chars(JNIEnv* env, StringBufferGuard<Ref>* jni_chars) const {
810
3.37k
        return StringBufferGuard<Ref>::create(env, *this, jni_chars, nullptr);
811
3.37k
    }
812
813
private:
814
    DISALLOW_COPY_AND_ASSIGN(String);
815
};
816
817
template <RefType Ref>
818
class Array : public Object<Ref> {
819
public:
820
6.95k
    Array() = default;
821
822
400
    Status get_length(JNIEnv* env, jsize* result) const {
823
400
        DCHECK(!this->uninitialized());
824
825
400
        *result = env->GetArrayLength((jarray)this->_obj);
826
400
        RETURN_ERROR_IF_EXC(env);
827
400
        return Status::OK();
828
400
    }
829
830
55.2k
    Status get_object_array_element(JNIEnv* env, jsize index, Jni::LocalObject* result) {
831
55.2k
        DCHECK(!this->uninitialized());
832
55.2k
        DCHECK(result->uninitialized());
833
55.2k
        result->_obj = env->GetObjectArrayElement((jobjectArray)this->_obj, index);
834
55.2k
        RETURN_ERROR_IF_EXC(env);
835
55.2k
        return Status::OK();
836
55.2k
    }
837
838
    Status get_byte_elements(JNIEnv* env, ByteArrayBufferGuard<Ref>* jni_bytes) const {
839
        DCHECK(!this->uninitialized());
840
        return ByteArrayBufferGuard<Ref>::create(env, *this, jni_bytes, nullptr);
841
    }
842
843
64
    Status get_byte_elements(JNIEnv* env, jsize start, jsize len, jbyte* buffer) {
844
64
        DCHECK(!this->uninitialized());
845
64
        env->GetByteArrayRegion((jbyteArray)this->_obj, start, len, buffer);
846
64
        RETURN_ERROR_IF_EXC(env);
847
64
        return Status::OK();
848
64
    }
849
850
    static Status WriteBufferToByteArray(JNIEnv* env, const jbyte* buffer, jint size,
851
6.11k
                                         Array<Local>* serialized_msg) {
852
6.11k
        DCHECK(serialized_msg->uninitialized());
853
        /// create jbyteArray given buffer
854
6.11k
        serialized_msg->_obj = env->NewByteArray(size);
855
6.11k
        RETURN_ERROR_IF_EXC(env);
856
6.11k
        if (serialized_msg->_obj == nullptr) [[unlikely]] {
857
0
            return Status::JniError("couldn't construct jbyteArray");
858
0
        }
859
6.11k
        env->SetByteArrayRegion((jbyteArray)serialized_msg->_obj, 0, size, buffer);
860
6.11k
        RETURN_ERROR_IF_EXC(env);
861
6.11k
        return Status::OK();
862
6.11k
    }
863
864
    template <class T>
865
6.13k
    static Status SerializeThriftMsg(JNIEnv* env, T* msg, Array<Local>* serialized_msg) {
866
6.13k
        int buffer_size = 100 * 1024; // start out with 100KB
867
6.13k
        ThriftSerializer serializer(false, buffer_size);
868
869
6.13k
        uint8_t* buffer = nullptr;
870
6.13k
        uint32_t size = 0;
871
6.13k
        RETURN_IF_ERROR(serializer.serialize(msg, &size, &buffer));
872
873
        // Make sure that 'size' is within the limit of INT_MAX as the use of
874
        // 'size' below takes int.
875
6.13k
        if (size > INT_MAX) [[unlikely]] {
876
0
            return Status::JniError(
877
0
                    "The length of the serialization buffer ({} bytes) exceeds the limit of {} "
878
0
                    "bytes",
879
0
                    size, INT_MAX);
880
0
        }
881
6.13k
        RETURN_IF_ERROR(WriteBufferToByteArray(env, (jbyte*)buffer, size, serialized_msg));
882
6.13k
        return Status::OK();
883
6.13k
    }
884
885
private:
886
    DISALLOW_COPY_AND_ASSIGN(Array);
887
};
888
889
template <RefType Ref>
890
class Class : public Object<Ref> {
891
public:
892
12.4k
    Class() = default;
_ZN5doris3Jni5ClassILNS0_7RefTypeE1EEC2Ev
Line
Count
Source
892
6.22k
    Class() = default;
_ZN5doris3Jni5ClassILNS0_7RefTypeE0EEC2Ev
Line
Count
Source
892
6.17k
    Class() = default;
893
894
44
    static Status find_class(JNIEnv* env, const char* class_str, Class<Ref>* result) {
895
44
        DCHECK(result->uninitialized());
896
        if constexpr (Ref == Local) {
897
            result->_obj = env->FindClass(class_str);
898
            RETURN_ERROR_IF_EXC(env);
899
            return Status::OK();
900
44
        } else if constexpr (Ref == Global) {
901
44
            Class<Local> local_class;
902
44
            local_class._obj = env->FindClass(class_str);
903
44
            RETURN_ERROR_IF_EXC(env);
904
44
            return local_to_global_ref(env, local_class, result);
905
        } else {
906
            static_assert(false);
907
        }
908
44
    }
909
910
    /**
911
     * The class of an object that is already in hand.
912
     *
913
     * Needed where a class cannot be named: an object produced by a plugin is an instance of a
914
     * class inside that plugin's classloader, which FindClass - searching BE's own loader -
915
     * cannot see. Asking the object is the only way to reach it.
916
     */
917
    template <RefType R>
918
6.09k
    static Status get_object_class(JNIEnv* env, const Object<R>& object, Class<Ref>* result) {
919
6.09k
        DCHECK(!object.uninitialized());
920
6.09k
        DCHECK(result->uninitialized());
921
6.09k
        if constexpr (Ref == Local) {
922
0
            result->_obj = env->GetObjectClass(object._obj);
923
0
            RETURN_ERROR_IF_EXC(env);
924
0
            return Status::OK();
925
6.09k
        } else if constexpr (Ref == Global) {
926
6.09k
            Class<Local> local_class;
927
6.09k
            local_class._obj = env->GetObjectClass(object._obj);
928
6.09k
            RETURN_ERROR_IF_EXC(env);
929
6.09k
            return local_to_global_ref(env, local_class, result);
930
        } else {
931
            static_assert(false);
932
        }
933
6.09k
    }
Unexecuted instantiation: _ZN5doris3Jni5ClassILNS0_7RefTypeE0EE16get_object_classILS2_1EEENS_6StatusEP7JNIEnv_RKNS0_6ObjectIXT_EEEPS3_
_ZN5doris3Jni5ClassILNS0_7RefTypeE1EE16get_object_classILS2_1EEENS_6StatusEP7JNIEnv_RKNS0_6ObjectIXT_EEEPS3_
Line
Count
Source
918
6.09k
    static Status get_object_class(JNIEnv* env, const Object<R>& object, Class<Ref>* result) {
919
6.09k
        DCHECK(!object.uninitialized());
920
6.09k
        DCHECK(result->uninitialized());
921
        if constexpr (Ref == Local) {
922
            result->_obj = env->GetObjectClass(object._obj);
923
            RETURN_ERROR_IF_EXC(env);
924
            return Status::OK();
925
6.09k
        } else if constexpr (Ref == Global) {
926
6.09k
            Class<Local> local_class;
927
6.09k
            local_class._obj = env->GetObjectClass(object._obj);
928
6.09k
            RETURN_ERROR_IF_EXC(env);
929
6.09k
            return local_to_global_ref(env, local_class, result);
930
        } else {
931
            static_assert(false);
932
        }
933
6.09k
    }
934
935
    /**
936
     * Whether an object is an instance of this class.
937
     *
938
     * The one way to check the kind of something a plugin handed back: the object's own class is
939
     * private to the plugin's classloader, so the only comparable identity is a shared base class
940
     * BE resolved itself. IsInstanceOf raises no exception, hence the plain bool.
941
     */
942
    template <RefType R>
943
5
    bool is_instance(JNIEnv* env, const Object<R>& object) const {
944
5
        DCHECK(!this->uninitialized());
945
5
        DCHECK(!object.uninitialized());
946
5
        return env->IsInstanceOf(object._obj, (jclass)this->_obj) == JNI_TRUE;
947
5
    }
948
949
    Status get_static_method(JNIEnv* env, const char* method_str, const char* method_signature,
950
17
                             MethodId* method_id) const {
951
17
        DCHECK(!this->uninitialized());
952
17
        DCHECK(method_id->uninitialized());
953
17
        method_id->_id = env->GetStaticMethodID((jclass)this->_obj, method_str, method_signature);
954
17
        RETURN_ERROR_IF_EXC(env);
955
17
        return Status::OK();
956
17
    }
957
958
    Status get_method(JNIEnv* env, const char* method_str, const char* method_signature,
959
13.9k
                      MethodId* method_id) const {
960
13.9k
        DCHECK(!this->uninitialized());
961
13.9k
        DCHECK(method_id->uninitialized());
962
13.9k
        method_id->_id = env->GetMethodID((jclass)this->_obj, method_str, method_signature);
963
13.9k
        RETURN_ERROR_IF_EXC(env);
964
13.9k
        return Status::OK();
965
13.9k
    }
966
967
    Status get_static_fieldId(JNIEnv* env, const char* name, const char* signature,
968
18
                              FieldId* field_id) const {
969
18
        DCHECK(!this->uninitialized());
970
18
        DCHECK(field_id->uninitialized());
971
18
        field_id->_id = env->GetStaticFieldID((jclass)this->_obj, name, signature);
972
18
        RETURN_ERROR_IF_EXC(env);
973
18
        return Status::OK();
974
18
    }
975
976
    Status get_static_object_field(JNIEnv* env, const FieldId& field_id,
977
                                   Object<Local>* result) const {
978
        DCHECK(!this->uninitialized());
979
        DCHECK(!field_id.uninitialized());
980
        result->_obj = env->GetStaticObjectField((jclass)this->_obj, field_id._id);
981
        RETURN_ERROR_IF_EXC(env);
982
        return Status::OK();
983
    }
984
985
    Status get_static_object_field(JNIEnv* env, const FieldId& field_id,
986
18
                                   Object<Global>* global_result) const {
987
18
        DCHECK(!this->uninitialized());
988
18
        DCHECK(!field_id.uninitialized());
989
18
        Object<Local> local_result;
990
18
        local_result._obj = env->GetStaticObjectField((jclass)this->_obj, field_id._id);
991
18
        RETURN_ERROR_IF_EXC(env);
992
18
        return local_to_global_ref(env, local_result, global_result);
993
18
    }
994
995
    Status get_static_object_field(JNIEnv* env, const char* name, const char* signature,
996
18
                                   Object<Global>* global_result) const {
997
18
        Jni::FieldId tmpFieldID;
998
18
        RETURN_IF_ERROR(get_static_fieldId(env, name, signature, &tmpFieldID));
999
18
        RETURN_IF_ERROR(get_static_object_field(env, tmpFieldID, global_result));
1000
18
        return Status::OK();
1001
18
    }
1002
1003
5.52k
    FunctionCall<NewObject> new_object(JNIEnv* env, MethodId method_id) const {
1004
5.52k
        DCHECK(!this->uninitialized());
1005
5.52k
        DCHECK(!method_id.uninitialized());
1006
5.52k
        return FunctionCall<NewObject>::instance(env, (jclass)this->_obj, method_id._id);
1007
5.52k
    }
1008
1009
    FunctionCall<StaticObjectMethod> call_static_object_method(JNIEnv* env,
1010
7.40k
                                                               MethodId method_id) const {
1011
7.40k
        DCHECK(!this->uninitialized());
1012
7.40k
        DCHECK(!method_id.uninitialized());
1013
7.40k
        return FunctionCall<StaticObjectMethod>::instance(env, (jclass)this->_obj, method_id._id);
1014
7.40k
    }
1015
1016
924
    FunctionCall<StaticVoidMethod> call_static_void_method(JNIEnv* env, MethodId method_id) const {
1017
924
        DCHECK(!this->uninitialized());
1018
924
        DCHECK(!method_id.uninitialized());
1019
924
        return FunctionCall<StaticVoidMethod>::instance(env, (jclass)this->_obj, method_id._id);
1020
924
    }
1021
1022
private:
1023
    DISALLOW_COPY_AND_ASSIGN(Class);
1024
};
1025
1026
using LocalClass = Class<Local>;
1027
using GlobalClass = Class<Global>;
1028
1029
using LocalArray = Array<Local>;
1030
using GlobalArray = Array<Global>;
1031
1032
using LocalString = String<Local>;
1033
using GlobalString = String<Global>;
1034
1035
template <CallTag tag>
1036
template <RefType Ref>
1037
58.4k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1038
58.4k
    jvalue v;
1039
58.4k
    std::memset(&v, 0, sizeof(v));
1040
58.4k
    v.l = obj._obj;
1041
58.4k
    _args.push_back(v);
1042
58.4k
    return *this;
1043
58.4k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1037
33.6k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1038
33.6k
    jvalue v;
1039
33.6k
    std::memset(&v, 0, sizeof(v));
1040
33.6k
    v.l = obj._obj;
1041
33.6k
    _args.push_back(v);
1042
33.6k
    return *this;
1043
33.6k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE3EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1037
229
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1038
229
    jvalue v;
1039
229
    std::memset(&v, 0, sizeof(v));
1040
229
    v.l = obj._obj;
1041
229
    _args.push_back(v);
1042
229
    return *this;
1043
229
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE2EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1037
5.30k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1038
5.30k
    jvalue v;
1039
5.30k
    std::memset(&v, 0, sizeof(v));
1040
5.30k
    v.l = obj._obj;
1041
5.30k
    _args.push_back(v);
1042
5.30k
    return *this;
1043
5.30k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1037
18.3k
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1038
18.3k
    jvalue v;
1039
18.3k
    std::memset(&v, 0, sizeof(v));
1040
18.3k
    v.l = obj._obj;
1041
18.3k
    _args.push_back(v);
1042
18.3k
    return *this;
1043
18.3k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE8EE8with_argILNS0_7RefTypeE0EEERS3_RKNS0_6ObjectIXT_EEE
Line
Count
Source
1037
924
FunctionCall<tag>& FunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1038
924
    jvalue v;
1039
924
    std::memset(&v, 0, sizeof(v));
1040
924
    v.l = obj._obj;
1041
924
    _args.push_back(v);
1042
924
    return *this;
1043
924
}
1044
1045
template <CallTag tag>
1046
template <RefType Ref>
1047
64
NonvirtualFunctionCall<tag>& NonvirtualFunctionCall<tag>::with_arg(const Object<Ref>& obj) {
1048
64
    jvalue v;
1049
64
    std::memset(&v, 0, sizeof(v));
1050
64
    v.l = obj._obj;
1051
64
    this->_args.push_back(v);
1052
64
    return *this;
1053
64
}
1054
1055
template <CallTag tag>
1056
75.6k
Status FunctionCall<tag>::call(Object<Local>* result) {
1057
75.6k
    DCHECK(result->uninitialized());
1058
75.6k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1059
75.6k
    RETURN_ERROR_IF_EXC(this->_env);
1060
75.6k
    return Status::OK();
1061
75.6k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE5EE4callEPNS0_6ObjectILNS0_7RefTypeE0EEE
Line
Count
Source
1056
1.34k
Status FunctionCall<tag>::call(Object<Local>* result) {
1057
1.34k
    DCHECK(result->uninitialized());
1058
1.34k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1059
1.34k
    RETURN_ERROR_IF_EXC(this->_env);
1060
1.34k
    return Status::OK();
1061
1.34k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE0EE4callEPNS0_6ObjectILNS0_7RefTypeE0EEE
Line
Count
Source
1056
68.7k
Status FunctionCall<tag>::call(Object<Local>* result) {
1057
68.7k
    DCHECK(result->uninitialized());
1058
68.7k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1059
68.7k
    RETURN_ERROR_IF_EXC(this->_env);
1060
68.7k
    return Status::OK();
1061
68.7k
}
_ZN5doris3Jni12FunctionCallILNS0_7CallTagE9EE4callEPNS0_6ObjectILNS0_7RefTypeE0EEE
Line
Count
Source
1056
5.52k
Status FunctionCall<tag>::call(Object<Local>* result) {
1057
5.52k
    DCHECK(result->uninitialized());
1058
5.52k
    result->_obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1059
5.52k
    RETURN_ERROR_IF_EXC(this->_env);
1060
5.52k
    return Status::OK();
1061
5.52k
}
1062
1063
template <CallTag tag>
1064
6.03k
Status FunctionCall<tag>::call(Object<Global>* result) {
1065
6.03k
    DCHECK(result->uninitialized());
1066
6.03k
    Object<Local> local_result;
1067
6.03k
    local_result._obj = CallHelper<tag>::call_impl(_env, _base, _method, _args.data());
1068
6.03k
    RETURN_ERROR_IF_EXC(this->_env);
1069
6.03k
    return local_to_global_ref(_env, local_result, result);
1070
6.03k
}
1071
1072
template <CallTag tag>
1073
64
Status NonvirtualFunctionCall<tag>::call(Object<Local>* result) {
1074
64
    DCHECK(result->uninitialized());
1075
64
    result->_obj = CallHelper<tag>::call_impl(this->_env, this->_base, _cls, this->_method,
1076
64
                                              this->_args.data());
1077
64
    RETURN_ERROR_IF_EXC(this->_env);
1078
64
    return Status::OK();
1079
64
}
1080
1081
template <RefType Ref>
1082
template <RefType R>
1083
NonvirtualFunctionCall<NonvirtualObjectMethod> Object<Ref>::call_nonvirtual_object_method(
1084
63
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1085
63
    DCHECK(!this->uninitialized());
1086
63
    DCHECK(!method_id.uninitialized());
1087
1088
63
    return NonvirtualFunctionCall<NonvirtualObjectMethod>::instance(env, _obj, (jclass)clazz._obj,
1089
63
                                                                    method_id._id);
1090
63
}
1091
1092
template <RefType Ref>
1093
template <RefType R>
1094
NonvirtualFunctionCall<NonvirtualVoidMethod> Object<Ref>::call_nonvirtual_void_method(
1095
6.61k
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1096
6.61k
    DCHECK(!this->uninitialized());
1097
6.61k
    DCHECK(!method_id.uninitialized());
1098
6.61k
    return NonvirtualFunctionCall<NonvirtualVoidMethod>::instance(env, _obj, (jclass)clazz._obj,
1099
6.61k
                                                                  method_id._id);
1100
6.61k
}
1101
1102
template <RefType Ref>
1103
template <RefType R>
1104
NonvirtualFunctionCall<NonvirtualIntMethod> Object<Ref>::call_nonvirtual_int_method(
1105
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1106
    DCHECK(!this->uninitialized());
1107
    DCHECK(!method_id.uninitialized());
1108
    return NonvirtualFunctionCall<NonvirtualIntMethod>::instance(env, _obj, (jclass)clazz._obj,
1109
                                                                 method_id._id);
1110
}
1111
1112
template <RefType Ref>
1113
template <RefType R>
1114
NonvirtualFunctionCall<NonvirtualBooleanMethod> Object<Ref>::call_nonvirtual_boolean_method(
1115
        JNIEnv* env, const Class<R>& clazz, MethodId method_id) const {
1116
    DCHECK(!this->uninitialized());
1117
    DCHECK(!method_id.uninitialized());
1118
    return NonvirtualFunctionCall<NonvirtualBooleanMethod>::instance(env, _obj, (jclass)clazz._obj,
1119
                                                                     method_id._id);
1120
}
1121
1122
class Util {
1123
public:
1124
    static size_t get_max_jni_heap_memory_size();
1125
1126
    template <RefType Ref>
1127
44
    static Status find_class(JNIEnv* env, const char* class_str, Class<Ref>* result) {
1128
44
        return Class<Ref>::find_class(env, class_str, result);
1129
44
    }
1130
1131
    template <RefType Ref, RefType R>
1132
6.11k
    static Status get_object_class(JNIEnv* env, const Object<R>& object, Class<Ref>* result) {
1133
6.11k
        return Class<Ref>::get_object_class(env, object, result);
1134
6.11k
    }
Unexecuted instantiation: _ZN5doris3Jni4Util16get_object_classILNS0_7RefTypeE0ELS3_1EEENS_6StatusEP7JNIEnv_RKNS0_6ObjectIXT0_EEEPNS0_5ClassIXT_EEE
_ZN5doris3Jni4Util16get_object_classILNS0_7RefTypeE1ELS3_1EEENS_6StatusEP7JNIEnv_RKNS0_6ObjectIXT0_EEEPNS0_5ClassIXT_EEE
Line
Count
Source
1132
6.11k
    static Status get_object_class(JNIEnv* env, const Object<R>& object, Class<Ref>* result) {
1133
6.11k
        return Class<Ref>::get_object_class(env, object, result);
1134
6.11k
    }
1135
1136
    template <RefType Ref>
1137
    static Status WriteBufferToByteArray(JNIEnv* env, const jbyte* buffer, jint size,
1138
64
                                         Array<Ref>* serialized_msg) {
1139
64
        if constexpr (Ref == Local) {
1140
64
            return Array<Local>::WriteBufferToByteArray(env, buffer, size, serialized_msg);
1141
        } else if constexpr (Ref == Global) {
1142
            Array<Local> local_obj;
1143
            RETURN_IF_ERROR(Array<Local>::WriteBufferToByteArray(env, buffer, size, &local_obj));
1144
            return local_to_global_ref(env, local_obj, serialized_msg);
1145
        } else {
1146
            static_assert(false);
1147
        }
1148
64
    }
1149
1150
    template <class T, RefType Ref>
1151
6.15k
    static Status SerializeThriftMsg(JNIEnv* env, T* msg, Array<Ref>* serialized_msg) {
1152
6.15k
        if constexpr (Ref == Local) {
1153
6.15k
            return Array<Local>::SerializeThriftMsg(env, msg, serialized_msg);
1154
        } else if (Ref == Global) {
1155
            Array<Local> local_obj;
1156
            RETURN_IF_ERROR(Array<Local>::SerializeThriftMsg(env, msg, local_obj));
1157
            return local_to_global_ref(env, local_obj, serialized_msg);
1158
        } else {
1159
            static_assert(false);
1160
        }
1161
6.15k
    }
1162
1163
    template <RefType Ref>
1164
    static Status convert_to_java_map(JNIEnv* env, const std::map<std::string, std::string>& map,
1165
5.53k
                                      Object<Ref>* hashmap_object) {
1166
5.53k
        RETURN_IF_ERROR(hashmap_class.new_object(env, hashmap_constructor)
1167
5.53k
                                .with_arg((jint)map.size())
1168
5.53k
                                .call(hashmap_object));
1169
1170
16.6k
        for (const auto& it : map) {
1171
16.6k
            LocalString key;
1172
16.6k
            RETURN_IF_ERROR(String<Local>::new_string(env, it.first.c_str(), &key));
1173
1174
16.6k
            LocalString value;
1175
16.6k
            RETURN_IF_ERROR(String<Local>::new_string(env, it.second.c_str(), &value));
1176
1177
16.6k
            LocalObject result;
1178
16.6k
            RETURN_IF_ERROR(hashmap_object->call_object_method(env, hashmap_put)
1179
16.6k
                                    .with_arg(key)
1180
16.6k
                                    .with_arg(value)
1181
16.6k
                                    .call());
1182
16.6k
        }
1183
5.53k
        return Status::OK();
1184
5.53k
    }
1185
1186
    template <RefType Ref>
1187
    static Status convert_to_cpp_map(JNIEnv* env, const Object<Ref>& map,
1188
2
                                     std::map<std::string, std::string>* resultMap) {
1189
2
        LocalObject entrySet;
1190
2
        RETURN_IF_ERROR(map.call_object_method(env, mapEntrySetMethod).call(&entrySet));
1191
1192
        // Call the iterator method on the set to iterate over the key-value pairs
1193
2
        LocalObject iteratorSet;
1194
2
        RETURN_IF_ERROR(entrySet.call_object_method(env, iteratorSetMethod).call(&iteratorSet));
1195
1196
6
        while (true) {
1197
6
            jboolean hasNext = false;
1198
6
            RETURN_IF_ERROR(
1199
6
                    iteratorSet.call_boolean_method(env, iteratorHasNextMethod).call(&hasNext));
1200
6
            if (!hasNext) {
1201
2
                break;
1202
2
            }
1203
1204
4
            LocalObject entry;
1205
4
            RETURN_IF_ERROR(iteratorSet.call_object_method(env, iteratorNextMethod).call(&entry));
1206
1207
4
            LocalString javaKey;
1208
4
            RETURN_IF_ERROR(entry.call_object_method(env, getEntryKeyMethod).call(&javaKey));
1209
1210
4
            LocalString javaValue;
1211
4
            RETURN_IF_ERROR(entry.call_object_method(env, getEntryValueMethod).call(&javaValue));
1212
1213
4
            LocalStringBufferGuard key;
1214
4
            RETURN_IF_ERROR(javaKey.get_string_chars(env, &key));
1215
1216
4
            LocalStringBufferGuard value;
1217
4
            RETURN_IF_ERROR(javaValue.get_string_chars(env, &value));
1218
1219
            // Store the key-value pair in the map
1220
4
            (*resultMap)[key.get()] = value.get();
1221
4
        }
1222
2
        return Status::OK();
1223
2
    }
1224
1225
    // The outcome of the one attempt to resolve the JNI base, or nullopt when nothing has
1226
    // attempted it yet. Public, unlike ensure_jni_base() below, precisely because it never
1227
    // triggers the attempt: this is what a reader that must not create a JVM asks - the
1228
    // /api/jni_plugin_status endpoint, which exists to answer "why is Java not working here"
1229
    // and would otherwise have to start a JVM to find out.
1230
    static std::optional<Status> jni_base_outcome();
1231
1232
private:
1233
    // Resolves everything the BE needs from the JVM before it can call any Java code: the
1234
    // exception helpers, the native methods the Java side links against, and the
1235
    // collection classes cached below. Runs once, right after the JVM appears; every
1236
    // caller that follows gets the outcome of that one attempt.
1237
    //
1238
    // Deliberately NOT part of "does this process have a JVM": all of it comes out of
1239
    // doris-jni-spi.jar, and a BE whose Java deployment is incomplete still serves HDFS through
1240
    // libhdfs. JvmLauncher runs it once at the end of its bootstrap and logs a failure; Env, the
1241
    // door every Java caller comes through, refuses to hand out a JNIEnv while it is failing.
1242
    //
1243
    // Only those two may call it. JvmLauncher calls it from inside its bootstrap, with the
1244
    // calling thread already attached and its env cached, because the resolution asks Env::Get()
1245
    // for a JNIEnv and an unattached thread there would go back through ensure_jvm() and deadlock
1246
    // on the once flag the bootstrap is already holding.
1247
    //
1248
    // Env::GetJNIEnvSlowPath() calls it from an unattached thread on purpose, and the invariant
1249
    // that makes THAT safe is a different one, worth stating because nothing enforces it: by the
1250
    // time the slow path gets here, ensure_jvm()'s call_once has already run to completion on
1251
    // some thread, so the resolution below is never the one that runs - it is always the cached
1252
    // answer of the attempt the bootstrap made. Every early exit of _bootstrap() leaves
1253
    // jvm_status non-OK, and the slow path returns on that before reaching this line.
1254
    //
1255
    // Making the base lazy (that is, resolving it here for real rather than reading a cached
1256
    // answer) would put the deadlock straight back, so GetJNIEnvSlowPath() holds it down with a
1257
    // DCHECK: on that path an outcome must already exist before this is called.
1258
    static Status ensure_jni_base();
1259
    friend class JvmLauncher;
1260
    friend class Env;
1261
1262
    static void _parse_max_heap_memory_size_from_jvm();
1263
1264
    // Bytes named by the last -Xmx in `options`, or 0 when none of them says. Split out from the
1265
    // above so that the parsing can be tested without a JVM; see jni_util_test.cpp.
1266
    static jlong _parse_xmx(const std::string& options);
1267
1268
    static Status _init_jni_base() WARN_UNUSED_RESULT;
1269
    static Status _init_collect_class() WARN_UNUSED_RESULT;
1270
    static Status _init_register_natives() WARN_UNUSED_RESULT;
1271
1272
    // for jvm heap
1273
    static jlong max_jvm_heap_memory_size_;
1274
1275
    //for hashmap
1276
    static GlobalClass hashmap_class;
1277
    static MethodId hashmap_constructor;
1278
    static MethodId hashmap_put;
1279
1280
    //for map
1281
    static GlobalClass mapClass;
1282
    static MethodId mapEntrySetMethod;
1283
1284
    // for map entry
1285
    static GlobalClass mapEntryClass;
1286
    static MethodId getEntryKeyMethod;
1287
    static MethodId getEntryValueMethod;
1288
1289
    //for set
1290
    static GlobalClass setClass;
1291
    static MethodId iteratorSetMethod;
1292
1293
    // for iterator
1294
    static GlobalClass iteratorClass;
1295
    static MethodId iteratorHasNextMethod;
1296
    static MethodId iteratorNextMethod;
1297
};
1298
}; // namespace Jni
1299
1300
} // namespace doris