/** * Copyright 2020 Huawei Technologies Co., Ltd * * 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. */ #include #include #include "common/ms_log.h" #include "common/jni_utils.h" #include "include/model.h" extern "C" JNIEXPORT jlong JNICALL Java_com_mindspore_lite_Model_loadModel(JNIEnv *env, jobject thiz, jobject buffer) { MS_LOGD("Start getting buffer from java"); if (buffer == nullptr) { MS_LOGE("Buffer from java is nullptr"); return reinterpret_cast(nullptr); } jlong buffer_len = env->GetDirectBufferCapacity(buffer); auto *model_buffer = static_cast(env->GetDirectBufferAddress(buffer)); MS_LOGD("Start Loading model"); auto model = mindspore::lite::Model::Import(model_buffer, buffer_len); // env->DeleteLocalRef(*(jobject *)model_buffer); if (model == nullptr) { MS_LOGE("Import model failed"); return reinterpret_cast(nullptr); } return reinterpret_cast(model); } extern "C" JNIEXPORT jlong JNICALL Java_com_mindspore_lite_Model_loadModelByPath(JNIEnv *env, jobject thiz, jstring model_path) { auto model_path_char = JstringToChar(env, model_path); if (nullptr == model_path_char) { MS_LOGE("model_path_char is nullptr"); return reinterpret_cast(nullptr); } std::ifstream ifs(model_path_char); if (!ifs.good()) { MS_LOGE("file: %s is not exist", model_path_char); return reinterpret_cast(nullptr); } if (!ifs.is_open()) { MS_LOGE("file: %s open failed", model_path_char); return reinterpret_cast(nullptr); } ifs.seekg(0, std::ios::end); auto size = ifs.tellg(); std::unique_ptr buf(new (std::nothrow) char[size]); if (buf == nullptr) { MS_LOGE("malloc buf failed, file: %s", model_path_char); ifs.close(); return reinterpret_cast(nullptr); } ifs.seekg(0, std::ios::beg); ifs.read(buf.get(), size); ifs.close(); delete[](model_path_char); MS_LOGD("Start Loading model"); auto model = mindspore::lite::Model::Import(buf.get(), size); if (model == nullptr) { MS_LOGE("Import model failed"); return reinterpret_cast(nullptr); } return reinterpret_cast(model); } extern "C" JNIEXPORT void JNICALL Java_com_mindspore_lite_Model_free(JNIEnv *env, jobject thiz, jlong model_ptr) { auto *pointer = reinterpret_cast(model_ptr); if (pointer == nullptr) { MS_LOGE("Model pointer from java is nullptr"); return; } auto *lite_model_ptr = static_cast(pointer); delete (lite_model_ptr); }