axmol/core/platform/android/FileUtils-android.cpp

329 lines
8.9 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md)
2019-11-23 20:27:39 +08:00
https://axmol.dev/
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "platform/android/FileUtils-android.h"
#include "platform/Common.h"
2019-11-23 20:27:39 +08:00
#include "platform/android/jni/JniHelper.h"
2022-10-01 16:24:52 +08:00
#include "platform/android/jni/Java_org_axmol_lib_AxmolEngine.h"
2019-11-23 20:27:39 +08:00
#include "android/asset_manager.h"
#include "android/asset_manager_jni.h"
#include "base/ZipUtils.h"
#include <stdlib.h>
#include <sys/types.h>
2019-11-23 20:27:39 +08:00
#include <sys/stat.h>
2023-06-24 21:18:27 +08:00
#include "yasio/string_view.hpp"
#define LOG_TAG "FileUtils-android.cpp"
2021-12-25 10:04:45 +08:00
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
#define ASSETS_FOLDER_NAME "assets/"
#define ASSETS_FOLDER_NAME_LENGTH 7
2019-11-23 20:27:39 +08:00
using namespace std;
2021-12-25 10:04:45 +08:00
#define DECLARE_GUARD (void)0 // std::lock_guard<std::recursive_mutex> mutexGuard(_mutex)
2019-11-23 20:27:39 +08:00
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
AAssetManager* FileUtilsAndroid::assetmanager = nullptr;
2021-12-25 10:04:45 +08:00
ZipFile* FileUtilsAndroid::obbfile = nullptr;
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
void FileUtilsAndroid::setassetmanager(AAssetManager* a)
{
if (nullptr == a)
{
2019-11-23 20:27:39 +08:00
LOGD("setassetmanager : received unexpected nullptr parameter");
return;
}
2022-08-08 18:02:17 +08:00
ax::FileUtilsAndroid::assetmanager = a;
2019-11-23 20:27:39 +08:00
}
FileUtils* FileUtils::getInstance()
{
if (s_sharedFileUtils == nullptr)
{
s_sharedFileUtils = new FileUtilsAndroid();
if (!s_sharedFileUtils->init())
{
2021-12-25 10:04:45 +08:00
delete s_sharedFileUtils;
s_sharedFileUtils = nullptr;
AXLOGE("ERROR: Could not init FileUtilsAndroid");
2019-11-23 20:27:39 +08:00
}
}
return s_sharedFileUtils;
}
2021-12-25 10:04:45 +08:00
FileUtilsAndroid::FileUtilsAndroid() {}
2019-11-23 20:27:39 +08:00
FileUtilsAndroid::~FileUtilsAndroid()
{
if (obbfile)
{
delete obbfile;
obbfile = nullptr;
}
}
bool FileUtilsAndroid::init()
{
DECLARE_GUARD;
_defaultResRootPath = ASSETS_FOLDER_NAME;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
std::string assetsPath(getApkPath());
if (assetsPath.find("/obb/") != std::string::npos)
{
obbfile = ZipFile::createFromFile(assetsPath);
2019-11-23 20:27:39 +08:00
}
return FileUtils::init();
}
bool FileUtilsAndroid::isFileExistInternal(std::string_view strFilePath) const
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
DECLARE_GUARD;
if (strFilePath.empty())
{
return false;
}
bool bFound = false;
// Check whether file exists in apk.
if (strFilePath[0] != '/')
{
const char* s = strFilePath.data();
2019-11-23 20:27:39 +08:00
// Found "assets/" at the beginning of the path and we don't want it
2021-12-25 10:04:45 +08:00
if (strFilePath.find(_defaultResRootPath) == 0)
s += _defaultResRootPath.length();
2019-11-23 20:27:39 +08:00
if (obbfile && obbfile->fileExists(s))
{
bFound = true;
}
else if (FileUtilsAndroid::assetmanager)
{
AAsset* aa = AAssetManager_open(FileUtilsAndroid::assetmanager, s, AASSET_MODE_UNKNOWN);
if (aa)
{
bFound = true;
AAsset_close(aa);
2021-12-25 10:04:45 +08:00
}
else
{
// AXLOGD("[AssetManager] ... in APK {}, found = false!", strFilePath);
2019-11-23 20:27:39 +08:00
}
}
}
else
{
2019-11-30 23:57:35 +08:00
struct stat st;
if (::stat(strFilePath.data(), &st) == 0)
2021-12-25 10:04:45 +08:00
bFound = S_ISREG(st.st_mode);
2019-11-23 20:27:39 +08:00
}
return bFound;
}
bool FileUtilsAndroid::isDirectoryExistInternal(std::string_view dirPath) const
2019-11-23 20:27:39 +08:00
{
if (dirPath.empty())
{
return false;
}
std::string_view path;
std::string dirPathCopy;
if (dirPath[dirPath.length() - 1] == '/')
2019-11-23 20:27:39 +08:00
{
dirPathCopy.assign(dirPath.data(), dirPath.length() - 1);
path = dirPathCopy;
2019-11-23 20:27:39 +08:00
}
else
path = dirPath;
2019-11-23 20:27:39 +08:00
const char* s = path.data();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// find absolute path in flash memory
if (s[0] == '/')
{
AXLOGD("find in flash memory dirPath({})", s);
2019-11-23 20:27:39 +08:00
struct stat st;
if (stat(s, &st) == 0)
{
return S_ISDIR(st.st_mode);
}
}
else
{
// find it in apk's assets dir
// Found "assets/" at the beginning of the path and we don't want it
AXLOGD("find in apk dirPath({})", s);
2019-11-23 20:27:39 +08:00
if (dirPath.find(ASSETS_FOLDER_NAME) == 0)
{
s += ASSETS_FOLDER_NAME_LENGTH;
}
if (FileUtilsAndroid::assetmanager)
{
AAssetDir* aa = AAssetManager_openDir(FileUtilsAndroid::assetmanager, s);
if (aa && AAssetDir_getNextFileName(aa))
{
AAssetDir_close(aa);
return true;
}
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return false;
}
bool FileUtilsAndroid::isAbsolutePath(std::string_view strPath) const
2019-11-23 20:27:39 +08:00
{
DECLARE_GUARD;
// On Android, there are two situations for full path.
// 1) Files in APK, e.g. assets/path/path/file.png
2022-10-01 16:24:52 +08:00
// 2) Files not in APK, e.g. /data/data/org.axmol.hellocpp/cache/path/path/file.png, or
2021-12-25 10:04:45 +08:00
// /sdcard/path/path/file.png. So these two situations need to be checked on Android.
2020-08-18 14:29:09 +08:00
return (strPath[0] == '/' || strPath.find(_defaultResRootPath) == 0);
2019-11-23 20:27:39 +08:00
}
int64_t FileUtilsAndroid::getFileSize(std::string_view filepath) const
2019-11-23 20:27:39 +08:00
{
DECLARE_GUARD;
int64_t size = FileUtils::getFileSize(filepath);
2021-12-25 10:04:45 +08:00
if (size != -1)
{
2019-11-23 20:27:39 +08:00
return size;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (FileUtilsAndroid::assetmanager)
{
std::string_view path;
std::string relativePath;
if (cxx20::starts_with(filepath, _defaultResRootPath))
2019-11-23 20:27:39 +08:00
{
path = relativePath = filepath.substr(_defaultResRootPath.size());
2019-11-23 20:27:39 +08:00
}
else
path = filepath;
2021-12-25 10:04:45 +08:00
AAsset* asset = AAssetManager_open(FileUtilsAndroid::assetmanager, path.data(), AASSET_MODE_UNKNOWN);
2019-11-23 20:27:39 +08:00
if (asset)
{
size = AAsset_getLength(asset);
AAsset_close(asset);
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return size;
}
std::vector<std::string> FileUtilsAndroid::listFiles(std::string_view dirPath) const
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
if (!dirPath.empty() && dirPath[0] == '/')
return FileUtils::listFiles(dirPath);
2019-11-23 20:27:39 +08:00
std::vector<std::string> fileList;
string fullPath = fullPathForDirectory(dirPath);
static const std::string apkprefix("assets/");
2020-08-18 14:29:09 +08:00
std::string relativePath;
2019-11-23 20:27:39 +08:00
size_t position = fullPath.find(apkprefix);
2021-12-25 10:04:45 +08:00
if (0 == position)
{
2019-11-23 20:27:39 +08:00
// "assets/" is at the beginning of the path and we don't want it
relativePath += fullPath.substr(apkprefix.size());
2021-12-25 10:04:45 +08:00
}
else
{
2019-11-23 20:27:39 +08:00
relativePath = fullPath;
}
2021-12-25 10:04:45 +08:00
if (obbfile)
return obbfile->listFiles(relativePath);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
if (nullptr == assetmanager)
{
2019-11-23 20:27:39 +08:00
LOGD("... FileUtilsAndroid::assetmanager is nullptr");
return fileList;
}
2021-12-25 10:04:45 +08:00
if (relativePath[relativePath.length() - 1] == '/')
2019-11-23 20:27:39 +08:00
{
relativePath.erase(relativePath.length() - 1);
}
2021-12-25 10:04:45 +08:00
auto* dir = AAssetManager_openDir(assetmanager, relativePath.c_str());
if (nullptr == dir)
{
2019-11-23 20:27:39 +08:00
LOGD("... FileUtilsAndroid::failed to open dir %s", relativePath.c_str());
AAssetDir_close(dir);
return fileList;
}
2021-12-25 10:04:45 +08:00
const char* tmpDir = nullptr;
while ((tmpDir = AAssetDir_getNextFileName(dir)) != nullptr)
2019-11-23 20:27:39 +08:00
{
string filepath(tmpDir);
2021-12-25 10:04:45 +08:00
if (isDirectoryExistInternal(filepath))
filepath += "/";
fileList.emplace_back(fullPath + filepath);
2019-11-23 20:27:39 +08:00
}
AAssetDir_close(dir);
return fileList;
}
2020-08-18 14:29:09 +08:00
std::string FileUtilsAndroid::getWritablePath() const
{
return getNativeWritableAbsolutePath();
}
std::string FileUtilsAndroid::getNativeWritableAbsolutePath() const
2019-11-23 20:27:39 +08:00
{
// Fix for Nexus 10 (Android 4.2 multi-user environment)
// the path is retrieved through Java Context.getCacheDir() method
2022-10-01 16:24:52 +08:00
std::string path = JniHelper::callStaticStringMethod("org.axmol.lib.AxmolEngine", "getWritablePath");
2020-08-18 14:29:09 +08:00
if (!path.empty())
path.append("/");
2020-08-18 14:29:09 +08:00
return path;
2019-11-23 20:27:39 +08:00
}
NS_AX_END
#undef DECLARE_GUARD
#undef ASSETS_FOLDER_NAME_LENGTH
#undef ASSETS_FOLDER_NAME
#undef LOGD
#undef LOG_TAG