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 #ifndef SETTING_DATA_SHARE_IMPL_H 16 #define SETTING_DATA_SHARE_IMPL_H 17 18 #include <singleton.h> 19 #include "datashare_helper.h" 20 #include "nfc_sdk_common.h" 21 #include "uri.h" 22 #include "element_name.h" 23 24 namespace OHOS { 25 namespace NFC { 26 using OHOS::AppExecFwk::ElementName; 27 class SettingDataShareImpl : public DelayedSingleton<SettingDataShareImpl> { 28 public: 29 DECLARE_INTERFACE_DESCRIPTOR(u"nfc.setting.data"); 30 SettingDataShareImpl(); 31 ~SettingDataShareImpl(); 32 KITS::ErrorCode RegisterDataObserver(const Uri &uri, const sptr<AAFwk::IDataAbilityObserver> &dataObserver); 33 KITS::ErrorCode ReleaseDataObserver(const Uri &uri, const sptr<AAFwk::IDataAbilityObserver> &dataObserver); 34 KITS::ErrorCode GetElementName(Uri &uri, const std::string &column, ElementName &value); 35 KITS::ErrorCode SetElementName(Uri &uri, const std::string &column, ElementName &value); 36 std::shared_ptr<DataShare::DataShareHelper> CreateDataShareHelper(); 37 38 private: 39 void Initialize(); 40 bool ParseElementURI(const std::string &uri, ElementName &value); 41 void Split(const std::string &str, const std::string &delim, std::vector<std::string> &vec); 42 43 sptr<IRemoteObject> remoteObj_; 44 std::shared_ptr<DataShare::DataShareHelper> dataShareHelper_; 45 }; 46 47 class ISettingData : public IRemoteBroker { 48 public: 49 DECLARE_INTERFACE_DESCRIPTOR(u"nfc.setting.data"); 50 }; 51 } // namespace NFC 52 } // namespace OHOS 53 #endif // SETTING_DATA_SHARE_IMPL_H