forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jniutil.h
68 lines (58 loc) · 2.3 KB
/
jniutil.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright 2010-2022 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef OR_TOOLS_BASE_JNIUTIL_H_
#define OR_TOOLS_BASE_JNIUTIL_H_
#include <jni.h>
#include <string>
#include "ortools/base/logging.h"
class JNIUtil {
public:
// Creates a Java jstring from a null-terminated UTF-8 encoded C String.
// The caller must delete the jstring reference.
static jstring MakeJString(JNIEnv* env, const char* cstr) {
if (cstr == nullptr) return nullptr;
return env->NewStringUTF(cstr);
}
// Creates a null-terminated UTF-8 encoded C string from a jstring.
// The returned string should be "delete[]"-ed when no longer needed.
static char* MakeCString(JNIEnv* env, jstring str) {
if (str == nullptr) return nullptr;
jsize length = env->GetStringUTFLength(str);
const char* src = env->GetStringUTFChars(str, nullptr);
char* dst = new char[length + 1];
memcpy(dst, src, length);
dst[length] = '\0';
env->ReleaseStringUTFChars(str, src);
return dst;
}
// Creates a new char array from a jbyteArray.
// The caller must delete[] the returned array.
static char* MakeCharArray(JNIEnv* env, jbyteArray a, int* size) {
jsize n = env->GetArrayLength(a);
*size = n;
jbyte* jba = new jbyte[n];
env->GetByteArrayRegion(a, 0, n, jba);
// We make use of the fact that jbyte's are really just chars.
// If this changes (different VM, etc.) things will break.
return reinterpret_cast<char*>(jba);
}
// Produces a jbyteArray from a char array.
static jbyteArray MakeJByteArray(JNIEnv* env, const char* a, int size) {
// Create empty array object
jbyteArray output = env->NewByteArray(size);
// Fill it
env->SetByteArrayRegion(output, 0, size, reinterpret_cast<const jbyte*>(a));
return output;
}
};
#endif // OR_TOOLS_BASE_JNIUTIL_H_