/* * 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 "interfaces/inner_api/ace/ui_content.h" #include #include namespace OHOS::Ace { using CreateCardFunc = UIContent* (*)(void*, void*, bool); using CreateFunc = UIContent* (*)(void*, void*); using CreateFunction = UIContent* (*)(void*); constexpr char UI_CONTENT_CREATE_FUNC[] = "OHOS_ACE_CreateUIContent"; constexpr char Card_CREATE_FUNC[] = "OHOS_ACE_CreateFormContent"; constexpr char SUB_WINDOW_UI_CONTENT_CREATE_FUNC[] = "OHOS_ACE_CreateSubWindowUIContent"; OHOS::AbilityRuntime::Context* context_ = nullptr; UIContent* CreateUIContent(void* context, void* runtime, bool isFormRender) { void* handle = dlopen("libace.z.so", RTLD_LAZY); if (handle == nullptr) { return nullptr; } auto entry = reinterpret_cast(dlsym(handle, Card_CREATE_FUNC)); if (entry == nullptr) { dlclose(handle); return nullptr; } auto content = entry(context, runtime, isFormRender); if (content == nullptr) { dlclose(handle); } return content; } UIContent* CreateUIContent(void* context, void* runtime) { void* handle = dlopen("libace.z.so", RTLD_LAZY); if (handle == nullptr) { return nullptr; } auto entry = reinterpret_cast(dlsym(handle, UI_CONTENT_CREATE_FUNC)); if (entry == nullptr) { dlclose(handle); return nullptr; } auto content = entry(context, runtime); if (content == nullptr) { dlclose(handle); } return content; } UIContent* CreateUIContent(void* ability) { void* handle = dlopen("libace.z.so", RTLD_LAZY); if (handle == nullptr) { return nullptr; } auto entry = reinterpret_cast(dlsym(handle, SUB_WINDOW_UI_CONTENT_CREATE_FUNC)); if (entry == nullptr) { dlclose(handle); return nullptr; } auto content = entry(ability); if (content == nullptr) { dlclose(handle); } return content; } std::unique_ptr UIContent::Create(OHOS::AbilityRuntime::Context* context, NativeEngine* runtime) { std::unique_ptr content; content.reset(CreateUIContent(reinterpret_cast(context), reinterpret_cast(runtime))); return content; } std::unique_ptr UIContent::Create(OHOS::AbilityRuntime::Context* context, NativeEngine* runtime, bool isFormRender) { std::unique_ptr content; content.reset(CreateUIContent(reinterpret_cast(context), reinterpret_cast(runtime), isFormRender)); return content; } std::unique_ptr UIContent::Create(OHOS::AppExecFwk::Ability* ability) { std::unique_ptr content; content.reset(CreateUIContent(reinterpret_cast(ability))); return content; } void UIContent::ShowDumpHelp(std::vector& info) { info.emplace_back(" -element |show element tree"); info.emplace_back(" -render |show render tree"); info.emplace_back(" -inspector |show inspector tree"); info.emplace_back(" -frontend |show path and components count of current page"); } } // namespace OHOS::Ace