1 /*
2 * Copyright (c) 2024 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 #define LOG_TAG "AppIdMappingConfigManager"
17 #include "app_id_mapping/app_id_mapping_config_manager.h"
18
19 namespace OHOS::DistributedData {
GetInstance()20 AppIdMappingConfigManager &AppIdMappingConfigManager::GetInstance()
21 {
22 static AppIdMappingConfigManager instance;
23 return instance;
24 }
25
Initialize(const std::vector<AppMappingInfo> & mapper)26 void AppIdMappingConfigManager::Initialize(const std::vector<AppMappingInfo> &mapper)
27 {
28 for (const auto &info : mapper) {
29 toDstMapper_.insert_or_assign(info.srcAppId, info.dstAppId);
30 }
31 }
32
Convert(const std::string & appId,const std::string & accountId)33 std::pair<std::string, std::string> AppIdMappingConfigManager::Convert(const std::string &appId,
34 const std::string &accountId)
35 {
36 auto it = toDstMapper_.find(appId);
37 if (it == toDstMapper_.end()) {
38 return std::make_pair(appId, accountId);
39 }
40 return std::make_pair(it->second, "default");
41 }
42
43 } // namespace OHOS::DistributedData