/* * Copyright (C) 2018 The Android Open Source Project * * 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 LIBTEXTCLASSIFIER_UTILS_INTENTS_JNI_H_ #define LIBTEXTCLASSIFIER_UTILS_INTENTS_JNI_H_ #include #include #include #include #include #include "utils/base/statusor.h" #include "utils/flatbuffers/flatbuffers.h" #include "utils/flatbuffers/mutable.h" #include "utils/intents/remote-action-template.h" #include "utils/java/jni-base.h" #include "utils/java/jni-cache.h" #include "utils/optional.h" #include "utils/variant.h" #ifndef TC3_REMOTE_ACTION_TEMPLATE_CLASS_NAME #define TC3_REMOTE_ACTION_TEMPLATE_CLASS_NAME RemoteActionTemplate #endif #define TC3_REMOTE_ACTION_TEMPLATE_CLASS_NAME_STR \ TC3_ADD_QUOTES(TC3_REMOTE_ACTION_TEMPLATE_CLASS_NAME) #ifndef TC3_NAMED_VARIANT_CLASS_NAME #define TC3_NAMED_VARIANT_CLASS_NAME NamedVariant #endif #define TC3_NAMED_VARIANT_CLASS_NAME_STR \ TC3_ADD_QUOTES(TC3_NAMED_VARIANT_CLASS_NAME) namespace libtextclassifier3 { // A helper class to create RemoteActionTemplate object from model results. class RemoteActionTemplatesHandler { public: static StatusOr> Create( const std::shared_ptr& jni_cache); StatusOr> AsUTF8String( const Optional& optional) const; StatusOr> AsInteger( const Optional& optional) const; StatusOr> AsStringArray( const std::vector& values) const; StatusOr> AsFloatArray( const std::vector& values) const; StatusOr> AsIntArray( const std::vector& values) const; StatusOr> AsNamedVariant(const std::string& name, const Variant& value) const; StatusOr> AsNamedVariantArray( const std::map& values) const; StatusOr> RemoteActionTemplatesToJObjectArray( const std::vector& remote_actions) const; StatusOr> EntityDataAsNamedVariantArray( const reflection::Schema* entity_data_schema, const std::string& serialized_entity_data) const; private: explicit RemoteActionTemplatesHandler( const std::shared_ptr& jni_cache) : jni_cache_(jni_cache), integer_class_(nullptr, jni_cache->jvm), remote_action_template_class_(nullptr, jni_cache->jvm), named_variant_class_(nullptr, jni_cache->jvm) {} std::shared_ptr jni_cache_; // java.lang.Integer ScopedGlobalRef integer_class_; jmethodID integer_init_ = nullptr; // RemoteActionTemplate ScopedGlobalRef remote_action_template_class_; jmethodID remote_action_template_init_ = nullptr; // NamedVariant ScopedGlobalRef named_variant_class_; jmethodID named_variant_from_int_ = nullptr; jmethodID named_variant_from_long_ = nullptr; jmethodID named_variant_from_float_ = nullptr; jmethodID named_variant_from_double_ = nullptr; jmethodID named_variant_from_bool_ = nullptr; jmethodID named_variant_from_string_ = nullptr; jmethodID named_variant_from_string_array_ = nullptr; jmethodID named_variant_from_float_array_ = nullptr; jmethodID named_variant_from_int_array_ = nullptr; jmethodID named_variant_from_named_variant_array_ = nullptr; }; } // namespace libtextclassifier3 #endif // LIBTEXTCLASSIFIER_UTILS_INTENTS_JNI_H_