1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00
Files
OpenRCT2/src/openrct2/core/ZipAndroid.cpp
2025-03-26 12:00:43 +01:00

178 lines
5.6 KiB
C++

/*****************************************************************************
* Copyright (c) 2014-2025 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#ifdef __ANDROID__
#include "../Diagnostic.h"
#include "../platform/Platform.h"
#include "IStream.hpp"
#include "Memory.hpp"
#include "MemoryStream.h"
#include "Zip.h"
#include <SDL.h>
#include <jni.h>
#include <string>
using namespace OpenRCT2;
class ZipArchive final : public IZipArchive
{
private:
jobject _zip;
public:
ZipArchive(std::string_view path, ZipAccess access)
{
// retrieve the JNI environment.
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
jclass jniClass = Platform::AndroidFindClass(env, "io/openrct2/ZipArchive");
jmethodID constructor = env->GetMethodID(jniClass, "<init>", "(Ljava/lang/String;)V");
jstring jniPath = env->NewStringUTF(path.data());
// TODO: Catch exceptions. Should probably be done on Java side, and just return null from a static method
jobject zip = env->NewObject(jniClass, constructor, jniPath);
_zip = env->NewGlobalRef(zip);
}
~ZipArchive() override
{
// retrieve the JNI environment.
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
jclass zipClass = env->GetObjectClass(_zip);
jmethodID closeMethod = env->GetMethodID(zipClass, "close", "()V");
env->CallVoidMethod(_zip, closeMethod);
env->DeleteGlobalRef(_zip);
}
size_t GetNumFiles() const override
{
// retrieve the JNI environment.
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
jclass zipClass = env->GetObjectClass(_zip);
jmethodID fileCountMethod = env->GetMethodID(zipClass, "getNumFiles", "()I");
return static_cast<size_t>(env->CallIntMethod(_zip, fileCountMethod));
}
std::string GetFileName(size_t index) const override
{
// retrieve the JNI environment.
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
jclass zipClass = env->GetObjectClass(_zip);
jmethodID fileNameMethod = env->GetMethodID(zipClass, "getFileName", "(I)Ljava/lang/String;");
jstring jniString = (jstring)env->CallObjectMethod(_zip, fileNameMethod, (jint)index);
const char* jniChars = env->GetStringUTFChars(jniString, nullptr);
std::string string = jniChars;
env->ReleaseStringUTFChars(jniString, jniChars);
return string;
}
uint64_t GetFileSize(size_t index) const override
{
// retrieve the JNI environment.
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
jclass zipClass = env->GetObjectClass(_zip);
jmethodID fileSizeMethod = env->GetMethodID(zipClass, "getFileSize", "(I)J");
return (size_t)env->CallLongMethod(_zip, fileSizeMethod, (jint)index);
}
std::vector<uint8_t> GetFileData(std::string_view path) const override
{
// retrieve the JNI environment.
JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();
jclass zipClass = env->GetObjectClass(_zip);
jstring javaPath = env->NewStringUTF(path.data());
jmethodID indexMethod = env->GetMethodID(zipClass, "getFileIndex", "(Ljava/lang/String;)I");
jint index = env->CallIntMethod(_zip, indexMethod, javaPath);
jmethodID fileMethod = env->GetMethodID(zipClass, "getFile", "(I)J");
jlong ptr = env->CallLongMethod(_zip, fileMethod, index);
auto dataPtr = reinterpret_cast<uint8_t*>(ptr);
auto dataSize = this->GetFileSize(index);
return std::vector<uint8_t>(dataPtr, dataPtr + dataSize);
}
std::unique_ptr<IStream> GetFileStream(std::string_view path) const override
{
auto data = GetFileData(path);
return std::make_unique<MemoryStream>(std::move(data));
}
void SetFileData(std::string_view path, std::vector<uint8_t>&& data) override
{
LOG_WARNING("Function %s at %s:%d is a stub.", __PRETTY_FUNCTION__, __FILE__, __LINE__);
}
void DeleteFile(std::string_view) override
{
LOG_WARNING("Function %s at %s:%d is a stub.", __PRETTY_FUNCTION__, __FILE__, __LINE__);
}
void RenameFile(std::string_view, std::string_view) override
{
LOG_WARNING("Function %s at %s:%d is a stub.", __PRETTY_FUNCTION__, __FILE__, __LINE__);
}
};
namespace OpenRCT2::Zip
{
std::unique_ptr<IZipArchive> Open(std::string_view path, ZipAccess access)
{
return std::make_unique<ZipArchive>(path, access);
}
std::unique_ptr<IZipArchive> TryOpen(std::string_view path, ZipAccess access)
{
std::unique_ptr<IZipArchive> result;
try
{
result = std::make_unique<ZipArchive>(path, access);
}
catch (const std::exception&)
{
}
return result;
}
} // namespace OpenRCT2::Zip
extern "C" {
JNIEXPORT jlong JNICALL Java_io_openrct2_ZipArchive_allocBytes(JNIEnv* env, jclass, jbyteArray input, jint numBytes);
}
JNIEXPORT jlong JNICALL Java_io_openrct2_ZipArchive_allocBytes(JNIEnv* env, jclass, jbyteArray input, jint numBytes)
{
jbyte* bufferPtr = env->GetByteArrayElements(input, nullptr);
void* data = Memory::Allocate<void>((size_t)numBytes);
std::memcpy(data, bufferPtr, numBytes);
env->ReleaseByteArrayElements(input, bufferPtr, 0);
return reinterpret_cast<uintptr_t>(data);
}
#endif // __ANDROID__