1 /*
2  * Copyright (c) 2023 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 "adapter/preview/external/ability/fa/fa_context.h"
17 
18 namespace OHOS::Ace {
FaContext()19 FaContext::FaContext()
20     : appInfo_(Referenced::MakeRefPtr<FaAppInfo>()), hapModuleInfo_(Referenced::MakeRefPtr<FaHapModuleInfo>())
21 {}
22 
Parse(const std::string & contents)23 void FaContext::Parse(const std::string& contents)
24 {
25     auto rootJson = JsonUtil::ParseJsonString(contents);
26     if (!rootJson || !rootJson->IsValid()) {
27         LOGW("The format of fa application config is illegal.");
28         return;
29     }
30     appInfo_->Parse(rootJson->GetValue("app"));
31     hapModuleInfo_->Parse(rootJson->GetValue("module"));
32 }
33 
GetAppInfo() const34 const RefPtr<FaAppInfo>& FaContext::GetAppInfo() const
35 {
36     return appInfo_;
37 }
38 
GetHapModuleInfo() const39 const RefPtr<FaHapModuleInfo>& FaContext::GetHapModuleInfo() const
40 {
41     return hapModuleInfo_;
42 }
43 } // namespace OHOS::Ace
44