mirror of
https://github.com/openharmony/ability_ability_runtime.git
synced 2026-08-24 22:21:36 -04:00
e48bf9692f
issues:https://gitee.com/openharmony/arkcompiler_ets_runtime/issues Signed-off-by: changjiaxing <changjiaxing2@huawei.com> Change-Id: I673ca996e220bb5f7692ae3ea47abf8cbd61aa1d
50 lines
1.7 KiB
C++
Executable File
50 lines
1.7 KiB
C++
Executable File
/*
|
|
* Copyright (c) 2022 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 "js_module_reader.h"
|
|
|
|
#include "file_path_utils.h"
|
|
#include "hilog_wrapper.h"
|
|
#include "js_runtime_utils.h"
|
|
|
|
using namespace OHOS::AbilityBase;
|
|
|
|
namespace OHOS {
|
|
namespace AbilityRuntime {
|
|
std::vector<uint8_t> JsModuleReader::operator()(const std::string& hapPath) const
|
|
{
|
|
std::vector<uint8_t> buffer;
|
|
if (hapPath.empty()) {
|
|
HILOG_ERROR("hapPath is empty");
|
|
return buffer;
|
|
}
|
|
std::string realHapPath = std::string(ABS_CODE_PATH) + hapPath + std::string(HAP_SUFFIX);
|
|
bool newCreate = false;
|
|
std::shared_ptr<Extractor> extractor = ExtractorUtil::GetExtractor(realHapPath, newCreate);
|
|
if (extractor == nullptr) {
|
|
HILOG_ERROR("realHapPath %{private}s GetExtractor failed", realHapPath.c_str());
|
|
return buffer;
|
|
}
|
|
std::unique_ptr<uint8_t[]> dataPtr = nullptr;
|
|
size_t len = 0;
|
|
if (!extractor->ExtractToBufByName(MERGE_ABC_PATH, dataPtr, len)) {
|
|
HILOG_ERROR("get mergeAbc fileBuffer failed");
|
|
return buffer;
|
|
}
|
|
buffer.assign(dataPtr.get(), dataPtr.get() + len);
|
|
return buffer;
|
|
}
|
|
} // namespace AbilityRuntime
|
|
} // namespace OHOS
|