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