* 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 "frameworks/bridge/card_frontend/card_frontend_declarative.h"
#include "core/accessibility/accessibility_manager.h"
#include <tuple>
#include <type_traits>
#include <utility>
#include "frameworks/bridge/declarative_frontend/ng/page_router_manager_factory.h"
#include "frameworks/core/pipeline_ng/pipeline_context.h"
namespace OHOS::Ace {
namespace {
const char FILE_TYPE_BIN[] = ".abc";
template<typename Owner, typename... Args>
struct WeakDispatchTask {
using Dispatch = void (*)(Owner&, const Args& ...);
WeakPtr<Owner> weak;
Dispatch dispatch;
std::tuple<Args...> args;
void operator()() const
{
auto target = weak.Upgrade();
if (!target) {
return;
}
std::apply(
[this, &target](const auto&... unpacked) {
dispatch(*target, unpacked...);
},
args);
}
};
template<typename Owner, typename... Args>
WeakDispatchTask<Owner, std::decay_t<Args>...> MakeWeakDispatchTask(
const WeakPtr<Owner>& weak, typename WeakDispatchTask<Owner, std::decay_t<Args>...>::Dispatch dispatch,
Args&&... args)
{
return { weak, dispatch, std::tuple<std::decay_t<Args>...>{std::forward<Args>(args)...} };
}
}
CardFrontendDeclarative::~CardFrontendDeclarative()
{
TAG_LOGI(AceLogTag::ACE_FORM, "CardDeclarative Destroyed");
}
bool CardFrontendDeclarative::Initialize(FrontendType type, const RefPtr<TaskExecutor>& taskExecutor)
{
type_ = type;
taskExecutor_ = taskExecutor;
InitializeDelegate(taskExecutor);
manifestParser_ = AceType::MakeRefPtr<Framework::ManifestParser>();
return true;
}
void CardFrontendDeclarative::InitializeDelegate(const RefPtr<TaskExecutor>& taskExecutor)
{
auto pageRouterManager = NG::PageRouterManagerFactory::CreateManager();
delegate_ = AceType::MakeRefPtr<Framework::CardFrontendDelegateDeclarative>(taskExecutor);
delegate_->SetPageRouterManager(pageRouterManager);
}
RefPtr<NG::PageRouterManager> CardFrontendDeclarative::GetPageRouterManager() const
{
CHECK_NULL_RETURN(delegate_, nullptr);
return delegate_->GetPageRouterManager();
}
void CardFrontendDeclarative::Destroy()
{
CHECK_RUN_ON(JS);
delegate_.Reset();
eventHandler_.Reset();
}
void CardFrontendDeclarative::AttachPipelineContext(const RefPtr<PipelineBase>& context)
{
auto pipelineContext = DynamicCast<NG::PipelineContext>(context);
CHECK_NULL_VOID(delegate_);
CHECK_NULL_VOID(pipelineContext);
eventHandler_ = AceType::MakeRefPtr<CardEventHandlerDeclarative>(delegate_);
holder_.Attach(context);
delegate_->AttachPipelineContext(context);
}
void CardFrontendDeclarative::SetAssetManager(const RefPtr<AssetManager>& assetManager)
{
assetManager_ = assetManager;
if (delegate_) {
delegate_->SetAssetManager(assetManager);
}
}
UIContentErrorCode CardFrontendDeclarative::RunPage(const std::string& url, const std::string& params)
{
std::string urlPath;
if (GetFormSrc().empty()) {
ParseManifest();
if (!url.empty()) {
urlPath = manifestParser_->GetRouter()->GetPagePath(url, FILE_TYPE_BIN);
}
if (urlPath.empty()) {
urlPath = manifestParser_->GetRouter()->GetEntry(FILE_TYPE_BIN);
}
} else {
urlPath = GetFormSrcPath(GetFormSrc(), FILE_TYPE_BIN);
}
if (urlPath.empty()) {
return UIContentErrorCode::NULL_URL;
}
if (delegate_) {
auto container = Container::Current();
if (!container) {
return UIContentErrorCode::NULL_POINTER;
}
container->SetCardFrontend(AceType::WeakClaim(this), cardId_);
return delegate_->RunCard(urlPath, params, "", cardId_);
}
return UIContentErrorCode::NULL_POINTER;
}
void CardFrontendDeclarative::OnPageLoaded(const RefPtr<Framework::JsAcePage>& page)
{
CHECK_RUN_ON(JS);
auto jsCommands = std::make_shared<std::vector<RefPtr<Framework::JsCommand>>>();
page->PopAllCommands(*jsCommands);
page->SetPipelineContext(holder_.Get());
using Dispatch =
WeakDispatchTask<CardFrontendDeclarative, RefPtr<Framework::JsAcePage>,
std::shared_ptr<std::vector<RefPtr<Framework::JsCommand>>>>::Dispatch;
static constexpr Dispatch dispatch =
[](CardFrontendDeclarative& frontend, const RefPtr<Framework::JsAcePage>& loadedPage,
const std::shared_ptr<std::vector<RefPtr<Framework::JsCommand>>>& commands) {
for (const auto& command : *commands) {
command->Execute(loadedPage);
}
auto pipelineContext = AceType::DynamicCast<PipelineContext>(frontend.holder_.Get());
CHECK_NULL_VOID(pipelineContext);
auto minSdk = frontend.manifestParser_->GetMinPlatformVersion();
pipelineContext->SetMinPlatformVersion(minSdk);
auto document = loadedPage->GetDomDocument();
if (frontend.pageLoaded_) {
loadedPage->ClearShowCommand();
std::vector<NodeId> dirtyNodes;
loadedPage->PopAllDirtyNodes(dirtyNodes);
if (dirtyNodes.empty()) {
return;
}
auto rootNodeId = dirtyNodes.front();
if (rootNodeId == DOM_ROOT_NODE_ID_BASE) {
auto patchComponent = loadedPage->BuildPagePatch(rootNodeId);
if (patchComponent) {
pipelineContext->ScheduleUpdate(patchComponent);
}
}
if (document) {
for (int32_t nodeId : document->GetProxyRelatedNodes()) {
auto patchComponent = loadedPage->BuildPagePatch(nodeId);
if (patchComponent) {
pipelineContext->ScheduleUpdate(patchComponent);
}
}
}
return;
}
loadedPage->ClearAllDirtyNodes();
if (document) {
document->HandleComponentPostBinding();
}
if (pipelineContext->GetAccessibilityManager()) {
pipelineContext->GetAccessibilityManager()->HandleComponentPostBinding();
}
if (pipelineContext->CanPushPage()) {
pipelineContext->PushPage(loadedPage->BuildPage(loadedPage->GetUrl()));
frontend.pageLoaded_ = true;
}
};
taskExecutor_->PostTask(
MakeWeakDispatchTask(AceType::WeakClaim(this), dispatch, page, jsCommands),
TaskExecutor::TaskType::UI, "ArkUICardFrontendPageLoaded");
}
void CardFrontendDeclarative::UpdateData(const std::string& dataList)
{
using Dispatch = WeakDispatchTask<CardFrontendDeclarative, std::string>::Dispatch;
static constexpr Dispatch dispatch = [](CardFrontendDeclarative& frontend, const std::string& updateDataList) {
frontend.UpdatePageData(updateDataList);
};
taskExecutor_->PostTask(
MakeWeakDispatchTask(AceType::WeakClaim(this), dispatch, dataList), TaskExecutor::TaskType::UI,
"ArkUICardFrontendUpdatePageData");
}
void CardFrontendDeclarative::UpdatePageData(const std::string& dataList)
{
CHECK_RUN_ON(UI);
if (!delegate_) {
return;
}
delegate_->UpdatePageData(dataList);
}
void CardFrontendDeclarative::SetColorMode(ColorMode colorMode)
{
using Dispatch = WeakDispatchTask<CardFrontendDeclarative, ColorMode>::Dispatch;
static constexpr Dispatch dispatch = [](CardFrontendDeclarative& frontend, const ColorMode& newColorMode) {
frontend.colorMode_ = newColorMode;
if (!frontend.delegate_) {
return;
}
frontend.OnMediaFeatureUpdate();
};
taskExecutor_->PostTask(
MakeWeakDispatchTask(AceType::WeakClaim(this), dispatch, colorMode), TaskExecutor::TaskType::JS,
"ArkUICardFrontendSetColorMode");
}
void CardFrontendDeclarative::RebuildAllPages()
{
}
void CardFrontendDeclarative::OnSurfaceChanged(int32_t width, int32_t height)
{
using Dispatch = WeakDispatchTask<CardFrontendDeclarative, int32_t, int32_t>::Dispatch;
static constexpr Dispatch dispatch = [](CardFrontendDeclarative& frontend, const int32_t& changedWidth,
const int32_t& changedHeight) {
frontend.HandleSurfaceChanged(changedWidth, changedHeight);
};
taskExecutor_->PostTask(
MakeWeakDispatchTask(AceType::WeakClaim(this), dispatch, width, height),
TaskExecutor::TaskType::JS, "ArkUICardFrontendSurfaceChanged");
}
void CardFrontendDeclarative::HandleSurfaceChanged(int32_t width, int32_t height)
{
CHECK_RUN_ON(JS);
OnMediaFeatureUpdate();
}
void CardFrontendDeclarative::OnMediaFeatureUpdate()
{
CHECK_RUN_ON(JS);
}
}