1 /* 2 * Copyright (c) 2021 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 #include <string> 17 18 #include "core/common/font_loader.h" 19 #ifndef NG_BUILD 20 #ifndef NEW_SKIA 21 #include "core/components/font/flutter_font_loader.h" 22 #endif 23 #endif 24 #ifdef ENABLE_ROSEN_BACKEND 25 #include "core/components/font/rosen_font_loader.h" 26 #endif 27 28 namespace OHOS::Ace { 29 30 const char FONT_SRC_NETWORK[] = "http"; 31 const char FONT_SRC_RESOURCE[] = "resource"; 32 Create(const std::string & familyName,const std::string & familySrc)33RefPtr<FontLoader> FontLoader::Create(const std::string& familyName, const std::string& familySrc) 34 { 35 if (SystemProperties::GetRosenBackendEnabled()) { 36 #ifdef ENABLE_ROSEN_BACKEND 37 return AceType::MakeRefPtr<RosenFontLoader>(familyName, familySrc); 38 #else 39 return nullptr; 40 #endif 41 } else { 42 #ifdef NG_BUILD 43 // TODO: adapt to flutter fontloader for ng 44 return nullptr; 45 #else 46 #ifndef NEW_SKIA 47 return AceType::MakeRefPtr<FlutterFontLoader>(familyName, familySrc); 48 #else 49 return nullptr; 50 #endif 51 #endif 52 } 53 } 54 55 } // namespace OHOS::Ace 56