1/*
2 * Copyright (c) 2021-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
16import dataPreferences from '@ohos.data.preferences'
17import Logger from '../log/Logger'
18
19const TAG = 'PreferencesUtil'
20
21export const getPreferences = (preferenceName: string) => {
22  return dataPreferences.getPreferences(globalThis.abilityContext, preferenceName)
23}
24
25export const deletePreferences = (preferenceName: string) => {
26  return dataPreferences.deletePreferences(globalThis.abilityContext, preferenceName)
27}
28
29export const removePreferencesFromCache = (preferenceName: string) => {
30  return dataPreferences.removePreferencesFromCache(globalThis.abilityContext, preferenceName)
31}
32
33export const setPreferencesValue = (name: string, key: string, newVal) => {
34  return getPreferences(name).then(async preferences => {
35    await preferences.put(key, newVal)
36    await preferences.flush()
37  }).catch(err => {
38    Logger.e(TAG, 'setPreferencesValue error: ' + JSON.stringify(err))
39  })
40}
41