/* * 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 #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, 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 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 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 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 bool FrontendDelegate::GetResourceData(const std::string& fileUri, const RefPtr& 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& content); template bool FrontendDelegate::GetResourceData(const std::string& fileUri, std::vector& content, std::string& ami); template bool FrontendDelegate::GetResourceData(const std::string& fileUri, const RefPtr& assetManager, std::vector& content); } // namespace OHOS::Ace::Framework