/* * Copyright (c) 2024 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef OHOS_CLOUD_DISK_SERVICE_NOTIFY_H #define OHOS_CLOUD_DISK_SERVICE_NOTIFY_H #include #include #include "clouddisk_notify_const.h" #include "dataobs_mgr_client.h" #include "nocopyable.h" namespace OHOS::FileManagement::CloudDisk { using namespace std; using ChangeInfo = OHOS::AAFwk::ChangeInfo; struct CacheNotifyInfo { NotifyType notifyType; mutable list uriList; mutable list isDirList; }; class CloudDiskNotify final : public NoCopyable { public: static CloudDiskNotify &GetInstance(); void TryNotify(const NotifyParamDisk ¶mDisk, const ParamDiskOthers ¶mOthers = {}); void TryNotifyService(const NotifyParamService ¶mService, const ParamServiceOther ¶mOthers = {}); int32_t GetDeleteNotifyData(const vector &deleteIds, vector ¬ifyDataList, const ParamServiceOther ¶mOthers); void AddNotify(const NotifyData notifyData); void NotifyChangeOuter(); private: CloudDiskNotify() = default; ~CloudDiskNotify() = default; list nfList_; mutex mutex_; }; } // namespace OHOS::FileManagement::CloudDisk #endif // OHOS_CLOUD_DISK_SERVICE_NOTIFY_H