2020-07-06 15:02:01 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "jni/AndroidCommon/AndroidCommon.h"
|
|
|
|
|
|
|
|
#include <string>
|
2020-06-28 17:16:23 +00:00
|
|
|
#include <string_view>
|
2020-07-06 15:02:01 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
|
2020-06-28 17:16:23 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2020-06-26 15:52:31 +00:00
|
|
|
#include "jni/AndroidCommon/IDCache.h"
|
2020-06-28 17:16:23 +00:00
|
|
|
|
2020-07-06 15:02:01 +00:00
|
|
|
std::string GetJString(JNIEnv* env, jstring jstr)
|
|
|
|
{
|
2020-06-28 17:16:23 +00:00
|
|
|
const jchar* jchars = env->GetStringChars(jstr, nullptr);
|
|
|
|
const jsize length = env->GetStringLength(jstr);
|
|
|
|
const std::u16string_view string_view(reinterpret_cast<const char16_t*>(jchars), length);
|
|
|
|
const std::string converted_string = UTF16ToUTF8(string_view);
|
|
|
|
env->ReleaseStringChars(jstr, jchars);
|
|
|
|
return converted_string;
|
2020-07-06 15:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jstring ToJString(JNIEnv* env, const std::string& str)
|
|
|
|
{
|
2020-06-28 17:16:23 +00:00
|
|
|
const std::u16string converted_string = UTF8ToUTF16(str);
|
|
|
|
return env->NewString(reinterpret_cast<const jchar*>(converted_string.data()),
|
|
|
|
converted_string.size());
|
2020-07-06 15:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> JStringArrayToVector(JNIEnv* env, jobjectArray array)
|
|
|
|
{
|
|
|
|
const jsize size = env->GetArrayLength(array);
|
|
|
|
std::vector<std::string> result;
|
|
|
|
result.reserve(size);
|
|
|
|
|
|
|
|
for (jsize i = 0; i < size; ++i)
|
|
|
|
result.push_back(GetJString(env, (jstring)env->GetObjectArrayElement(array, i)));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2020-06-26 15:52:31 +00:00
|
|
|
|
|
|
|
int OpenAndroidContent(const std::string& uri, const std::string& mode)
|
|
|
|
{
|
|
|
|
JNIEnv* env = IDCache::GetEnvForThread();
|
|
|
|
const jint fd = env->CallStaticIntMethod(IDCache::GetContentHandlerClass(),
|
|
|
|
IDCache::GetContentHandlerOpenFd(), ToJString(env, uri),
|
|
|
|
ToJString(env, mode));
|
|
|
|
|
|
|
|
// We can get an IllegalArgumentException when passing an invalid mode
|
|
|
|
if (env->ExceptionCheck())
|
|
|
|
{
|
|
|
|
env->ExceptionDescribe();
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|