aboutsummaryrefslogtreecommitdiff
path: root/icing
diff options
context:
space:
mode:
authorTim Barron <tjbarron@google.com>2022-05-24 11:14:42 -0700
committerTim Barron <tjbarron@google.com>2022-05-24 20:00:56 +0000
commit20d5ec21a240dcd5cf0eaa8ab59a9607b4706dc7 (patch)
treec3c5d2902d8578dab800c01f3e9dff75ad809a63 /icing
parent9ea2234cfe87ffeca5e632704c8cf3ddbb00609b (diff)
downloadicing-20d5ec21a240dcd5cf0eaa8ab59a9607b4706dc7.tar.gz
Sync from upstream.
This sync simply re-runs the sync from go/oag/2101540 , but with a fix in the export script that ensures the newly added RAII classes in the jni folder are properly exported. Change-Id: I67d769bee6a602f5d8ac15c16d8feb49819a246a
Diffstat (limited to 'icing')
-rw-r--r--icing/jni/scoped-primitive-array-critical.h86
-rw-r--r--icing/jni/scoped-utf-chars.h82
2 files changed, 168 insertions, 0 deletions
diff --git a/icing/jni/scoped-primitive-array-critical.h b/icing/jni/scoped-primitive-array-critical.h
new file mode 100644
index 0000000..062c145
--- /dev/null
+++ b/icing/jni/scoped-primitive-array-critical.h
@@ -0,0 +1,86 @@
+// Copyright (C) 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 ICING_JNI_SCOPED_PRIMITIVE_ARRAY_CRITICAL_H_
+#define ICING_JNI_SCOPED_PRIMITIVE_ARRAY_CRITICAL_H_
+
+#include <jni.h>
+
+#include <utility>
+
+namespace icing {
+namespace lib {
+
+template <typename T>
+class ScopedPrimitiveArrayCritical {
+ public:
+ ScopedPrimitiveArrayCritical(JNIEnv* env, jarray array)
+ : env_(env), array_(array) {
+ if (array_ == nullptr) {
+ array_critical_ = nullptr;
+ array_critical_size_ = 0;
+ } else {
+ array_critical_size_ = env->GetArrayLength(array);
+ array_critical_ = static_cast<T*>(
+ env->GetPrimitiveArrayCritical(array, /*isCopy=*/nullptr));
+ }
+ }
+
+ ScopedPrimitiveArrayCritical(ScopedPrimitiveArrayCritical&& rhs)
+ : env_(nullptr),
+ array_(nullptr),
+ array_critical_(nullptr),
+ array_critical_size_(0) {
+ Swap(rhs);
+ }
+
+ ScopedPrimitiveArrayCritical(const ScopedPrimitiveArrayCritical&) = delete;
+
+ ScopedPrimitiveArrayCritical& operator=(ScopedPrimitiveArrayCritical&& rhs) {
+ Swap(rhs);
+ return *this;
+ }
+
+ ScopedPrimitiveArrayCritical& operator=(const ScopedPrimitiveArrayCritical&) =
+ delete;
+
+ ~ScopedPrimitiveArrayCritical() {
+ if (array_critical_ != nullptr && array_ != nullptr) {
+ env_->ReleasePrimitiveArrayCritical(array_, array_critical_, /*mode=*/0);
+ }
+ }
+
+ T* data() { return array_critical_; }
+ const T* data() const { return array_critical_; }
+
+ size_t size() const { return array_critical_size_; }
+
+ private:
+ void Swap(ScopedPrimitiveArrayCritical& other) {
+ std::swap(env_, other.env_);
+ std::swap(array_, other.array_);
+ std::swap(array_critical_, other.array_critical_);
+ std::swap(array_critical_size_, other.array_critical_size_);
+ }
+
+ JNIEnv* env_;
+ jarray array_;
+ T* array_critical_;
+ size_t array_critical_size_;
+};
+
+} // namespace lib
+} // namespace icing
+
+#endif // ICING_JNI_SCOPED_PRIMITIVE_ARRAY_CRITICAL_H_
diff --git a/icing/jni/scoped-utf-chars.h b/icing/jni/scoped-utf-chars.h
new file mode 100644
index 0000000..2dafcc1
--- /dev/null
+++ b/icing/jni/scoped-utf-chars.h
@@ -0,0 +1,82 @@
+// Copyright (C) 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 ICING_JNI_SCOPED_UTF_CHARS_H_
+#define ICING_JNI_SCOPED_UTF_CHARS_H_
+
+#include <jni.h>
+
+#include <cstddef>
+#include <cstring>
+#include <utility>
+
+namespace icing {
+namespace lib {
+
+// An RAII class to manage access and allocation of a Java string's UTF chars.
+class ScopedUtfChars {
+ public:
+ ScopedUtfChars(JNIEnv* env, jstring s) : env_(env), string_(s) {
+ if (s == nullptr) {
+ utf_chars_ = nullptr;
+ size_ = 0;
+ } else {
+ utf_chars_ = env->GetStringUTFChars(s, /*isCopy=*/nullptr);
+ size_ = strlen(utf_chars_);
+ }
+ }
+
+ ScopedUtfChars(ScopedUtfChars&& rhs)
+ : env_(nullptr), string_(nullptr), utf_chars_(nullptr) {
+ Swap(rhs);
+ }
+
+ ScopedUtfChars(const ScopedUtfChars&) = delete;
+
+ ScopedUtfChars& operator=(ScopedUtfChars&& rhs) {
+ Swap(rhs);
+ return *this;
+ }
+
+ ScopedUtfChars& operator=(const ScopedUtfChars&) = delete;
+
+ ~ScopedUtfChars() {
+ if (utf_chars_ != nullptr) {
+ env_->ReleaseStringUTFChars(string_, utf_chars_);
+ }
+ }
+
+ const char* c_str() const { return utf_chars_; }
+
+ size_t size() const { return size_; }
+
+ private:
+ void Swap(ScopedUtfChars& other) {
+ std::swap(env_, other.env_);
+ std::swap(string_, other.string_);
+ std::swap(utf_chars_, other.utf_chars_);
+ std::swap(size_, other.size_);
+ }
+
+ JNIEnv* env_;
+ jstring string_;
+ const char* utf_chars_;
+ size_t size_;
+};
+
+} // namespace lib
+} // namespace icing
+
+#endif // ICING_JNI_SCOPED_UTF_CHARS_H_