a5178874创建于 2025年6月15日历史提交
/*
 * Copyright (c) 2023 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 DISTRIBUTED_OBJECT_SERVICE_PROXY_H
#define DISTRIBUTED_OBJECT_SERVICE_PROXY_H

#include <iremote_proxy.h>
#include "iobject_service.h"

namespace OHOS::DistributedObject {
class ObjectServiceProxy : public IRemoteProxy<IObjectService> {
public:
    explicit ObjectServiceProxy(const sptr<IRemoteObject> &impl);
    ~ObjectServiceProxy() = default;
    int32_t ObjectStoreSave(const std::string &bundleName, const std::string &sessionId,
        const std::string &deviceId, const std::map<std::string, std::vector<uint8_t>> &data,
        sptr<IRemoteObject> callback) override;
    int32_t ObjectStoreRetrieve(
        const std::string &bundleName, const std::string &sessionId, sptr<IRemoteObject> callback) override;
    int32_t ObjectStoreRevokeSave(const std::string &bundleName, const std::string &sessionId,
        sptr<IRemoteObject> callback) override;
    int32_t RegisterDataObserver(const std::string &bundleName, const std::string &sessionId,
        sptr<IRemoteObject> callback) override;
    int32_t UnregisterDataChangeObserver(const std::string &bundleName, const std::string &sessionId) override;
    int32_t RegisterProgressObserver(const std::string &bundleName, const std::string &sessionId,
        sptr<IRemoteObject> callback) override;
    int32_t UnregisterProgressObserver(const std::string &bundleName, const std::string &sessionId) override;

    int32_t OnAssetChanged(const std::string &bundleName, const std::string &sessionId,
        const std::string &deviceId, const ObjectStore::Asset &assetValue) override;
    int32_t BindAssetStore(const std::string &bundleName, const std::string &sessionId,
       ObjectStore::Asset &asset, ObjectStore::AssetBindInfo &bindInfo) override;
    int32_t DeleteSnapshot(const std::string &bundleName, const std::string &sessionId) override;
    int32_t IsContinue(bool &result) override;
private:
    static inline BrokerDelegator<ObjectServiceProxy> delegator_;
};
} // namespace OHOS::DistributedObject
#endif