mirror of
https://github.com/openharmony/ace_ace_engine.git
synced 2026-07-19 22:54:50 -04:00
f61db233f8
add GetResourceData interface to return targetFilePath Signed-off-by: y00576111 <yaojian16@huawei.com> Change-Id: I485357546e790ca8727f8c9db75f421c9d1f0290
125 lines
4.0 KiB
C++
125 lines
4.0 KiB
C++
/*
|
|
* Copyright (c) 2021 Huawei Device 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 "frameworks/bridge/js_frontend/frontend_delegate.h"
|
|
|
|
#include <string>
|
|
|
|
#include "core/common/ace_application_info.h"
|
|
#include "frameworks/bridge/common/utils/utils.h"
|
|
|
|
namespace OHOS::Ace::Framework {
|
|
namespace {
|
|
|
|
const char SLASH = '/';
|
|
const char SLASHSTR[] = "/";
|
|
|
|
bool ParseFileUri(const RefPtr<AssetManager>& assetManager, const std::string& fileUri, std::string& assetsFilePath)
|
|
{
|
|
if (!assetManager || fileUri.empty() || (fileUri.length() > PATH_MAX)) {
|
|
return false;
|
|
}
|
|
|
|
std::string fileName;
|
|
std::string filePath;
|
|
size_t slashPos = fileUri.find_last_of(SLASH);
|
|
if (slashPos == std::string::npos) {
|
|
fileName = fileUri;
|
|
} else {
|
|
fileName = fileUri.substr(slashPos + 1);
|
|
filePath = fileUri.substr(0, slashPos + 1);
|
|
}
|
|
|
|
if (StartWith(filePath, SLASHSTR)) {
|
|
filePath = filePath.substr(1);
|
|
}
|
|
|
|
std::vector<std::string> files;
|
|
assetManager->GetAssetList(filePath, files);
|
|
|
|
bool fileExist = false;
|
|
for (const auto& file : files) {
|
|
bool startWithSlash = StartWith(file, SLASHSTR);
|
|
if ((startWithSlash && (file.substr(1) == fileName)) || (!startWithSlash && (file == fileName))) {
|
|
assetsFilePath = filePath + file;
|
|
fileExist = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return fileExist;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
template<typename T>
|
|
bool FrontendDelegate::GetResourceData(const std::string& fileUri, T& content)
|
|
{
|
|
std::string targetFilePath;
|
|
if (!ParseFileUri(assetManager_, fileUri, targetFilePath)) {
|
|
LOGE("GetResourceData parse file uri failed.");
|
|
return false;
|
|
}
|
|
if (!GetAssetContentAllowEmpty(assetManager_, targetFilePath, content)) {
|
|
LOGE("GetResourceData GetAssetContent failed.");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
template<typename T>
|
|
bool FrontendDelegate::GetResourceData(const std::string& fileUri, T& content, std::string& ami)
|
|
{
|
|
std::string targetFilePath;
|
|
if (!ParseFileUri(assetManager_, fileUri, targetFilePath)) {
|
|
LOGE("GetResourceData parse file uri failed.");
|
|
return false;
|
|
}
|
|
ami = assetManager_->GetAssetPath(targetFilePath) + targetFilePath;
|
|
if (!GetAssetContentAllowEmpty(assetManager_, targetFilePath, content)) {
|
|
LOGE("GetResourceData GetAssetContent failed.");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
template<typename T>
|
|
bool FrontendDelegate::GetResourceData(const std::string& fileUri, const RefPtr<AssetManager>& assetManager,
|
|
T& content)
|
|
{
|
|
std::string targetFilePath;
|
|
if (!ParseFileUri(assetManager, fileUri, targetFilePath)) {
|
|
LOGE("GetResourceData parse file uri failed.");
|
|
return false;
|
|
}
|
|
if (!GetAssetContentAllowEmpty(assetManager, targetFilePath, content)) {
|
|
LOGE("GetResourceData GetAssetContent failed.");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
template bool FrontendDelegate::GetResourceData(const std::string& fileUri, std::string& content);
|
|
template bool FrontendDelegate::GetResourceData(const std::string& fileUri, std::vector<uint8_t>& content);
|
|
template bool FrontendDelegate::GetResourceData(const std::string& fileUri, std::vector<uint8_t>& content,
|
|
std::string& ami);
|
|
template bool FrontendDelegate::GetResourceData(const std::string& fileUri, const RefPtr<AssetManager>& assetManager,
|
|
std::vector<uint8_t>& content);
|
|
|
|
} // namespace OHOS::Ace::Framework
|