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