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 #include "AppLaunchSceneDbAdapter.h"
17
CreateRecord(const std::string & bundleName,const AppStartRecord & record)18 void AppLaunchSceneDbAdapter::CreateRecord(const std::string& bundleName, const AppStartRecord& record)
19 {
20 appStartRecords.insert(std::make_pair(bundleName, record));
21 }
22
UpdateRecord(const std::string & bundleName,const AppStartRecord & record)23 void AppLaunchSceneDbAdapter::UpdateRecord(const std::string& bundleName, const AppStartRecord& record)
24 {
25 appStartRecords[bundleName] = record;
26 }
27
DeleteRecord(const std::string & bundleName)28 void AppLaunchSceneDbAdapter::DeleteRecord(const std::string& bundleName)
29 {
30 appStartRecords.erase(bundleName);
31 }
32
QueryRecord(const std::string & bundleName)33 AppLaunchSceneDbAdapter::AppStartRecord AppLaunchSceneDbAdapter::QueryRecord(const std::string& bundleName)
34 {
35 AppStartRecord record;
36 auto it = appStartRecords.find(bundleName);
37 if (it != appStartRecords.end()) {
38 record = it->second;
39 }
40 return record;
41 }
42
CreateRecord(const AppStartRecord & record)43 void AppLaunchSceneDbAdapter::CreateRecord(const AppStartRecord& record)
44 {
45 appStartRecords.insert(std::make_pair(record.bundleName, record));
46 }
47
UpdateRecord(const AppStartRecord & record)48 void AppLaunchSceneDbAdapter::UpdateRecord(const AppStartRecord& record)
49 {
50 appStartRecords[record.bundleName] = record;
51 }