1 /* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef NWEB_ADAPTER_HELPER_H 17 #define NWEB_ADAPTER_HELPER_H 18 19 #include "foundation/window/window_manager/interfaces/innerkits/wm/window.h" 20 #include "libxml/parser.h" 21 #include "libxml/tree.h" 22 #include "nweb_helper.h" 23 24 namespace OHOS { 25 class Surface; 26 } 27 28 namespace OHOS::NWeb { 29 class OHOS_NWEB_EXPORT NWebAdapterHelper { 30 public: 31 static NWebAdapterHelper &Instance(); 32 ~NWebAdapterHelper() = default; 33 bool Init(bool from_ark = true); 34 std::shared_ptr<NWeb> CreateNWeb(sptr<Surface> surface, 35 const NWebInitArgs &initArgs, 36 uint32_t width = 0, 37 uint32_t height = 0); 38 std::shared_ptr<NWeb> CreateNWeb(void *enhanceSurfaceInfo, 39 const NWebInitArgs &initArgs, 40 uint32_t width = 0, 41 uint32_t height = 0); 42 void ParseConfig(NWebInitArgs& createInfo); 43 private: 44 NWebAdapterHelper() = default; 45 std::string GetConfigPath(const std::string& configFileName); 46 void ParseConfig(NWebCreateInfo& createInfo); 47 void ReadConfig(const xmlNodePtr& rootPtr, NWebInitArgs& init_args); 48 }; 49 } // namespace OHOS 50 51 #endif // NWEB_ADAPTER_HELPER_H 52