mirror of
https://github.com/openharmony/ability_ability_runtime.git
synced 2026-08-24 22:21:36 -04:00
e8834e96a7
Signed-off-by: wangzhen <wangzhen416@huawei.com>
79 lines
2.9 KiB
C++
79 lines
2.9 KiB
C++
/*
|
|
* Copyright (c) 2022-2026 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_ABILITY_RUNTIME_CALL_CONTAINER_H
|
|
#define OHOS_ABILITY_RUNTIME_CALL_CONTAINER_H
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <mutex>
|
|
|
|
#include "ability_connect_callback_interface.h"
|
|
#include "call_record.h"
|
|
#include "element_name.h"
|
|
#include "iremote_object.h"
|
|
#include "nocopyable.h"
|
|
|
|
namespace OHOS {
|
|
namespace AAFwk {
|
|
class CallRecord;
|
|
/**
|
|
* @class CallContainer
|
|
* CallContainer provides a facility for managing the call records of ability.
|
|
*/
|
|
class CallContainer : public std::enable_shared_from_this<CallContainer> {
|
|
public:
|
|
using CallMapType = std::map<sptr<IRemoteObject>, std::shared_ptr<CallRecord>>;
|
|
using RecipientMapType = std::map<sptr<IRemoteObject>, sptr<IRemoteObject::DeathRecipient>>;
|
|
|
|
CallContainer();
|
|
virtual ~CallContainer();
|
|
|
|
void AddCallRecord(const sptr<IAbilityConnection> &connect, const std::shared_ptr<CallRecord> &callRecord);
|
|
std::shared_ptr<CallRecord> GetCallRecord(const sptr<IAbilityConnection> &connect) const;
|
|
bool RemoveCallRecord(const sptr<IAbilityConnection> &connect);
|
|
std::shared_ptr<CallRecord> FindCallRecordMap(sptr<IRemoteObject> object) const;
|
|
std::shared_ptr<CallRecord> RemoveCallRecordMap(sptr<IRemoteObject> object);
|
|
void InsertCallRecordMap(sptr<IRemoteObject> object, std::shared_ptr<CallRecord> callRecord);
|
|
CallMapType CopyCallRecordMap() const;
|
|
bool EmptyCallRecordMap();
|
|
bool CallRequestDone(const sptr<IRemoteObject> &callStub);
|
|
void Dump(std::vector<std::string> &info) const;
|
|
bool IsNeedToCallRequest() const;
|
|
bool IsExistConnection(const sptr<IAbilityConnection> &connect);
|
|
|
|
/**
|
|
* @brief Notify all callers that callee ability is terminating
|
|
* @param element Callee ability element name
|
|
*/
|
|
void NotifyAllCallDisconnect(const AppExecFwk::ElementName &element);
|
|
|
|
private:
|
|
void RemoveConnectDeathRecipient(const sptr<IAbilityConnection> &connect);
|
|
void AddConnectDeathRecipient(const sptr<IAbilityConnection> &connect);
|
|
void OnConnectionDied(const wptr<IRemoteObject> &remote);
|
|
|
|
private:
|
|
CallMapType callRecordMap_;
|
|
mutable std::mutex callRecordMapLock_;
|
|
RecipientMapType deathRecipientMap_;
|
|
|
|
DISALLOW_COPY_AND_MOVE(CallContainer);
|
|
};
|
|
} // namespace AAFwk
|
|
} // namespace OHOS
|
|
#endif // OHOS_ABILITY_RUNTIME_CALL_CONTAINER_H
|
|
|