/* * Copyright (c) 2022 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 #include #include #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 { public: using CallMapType = std::map, std::shared_ptr>; using RecipientMapType = std::map, sptr>; CallContainer(); virtual ~CallContainer(); void AddCallRecord(const sptr &connect, const std::shared_ptr &callRecord); std::shared_ptr GetCallRecord(const sptr &connect) const; bool RemoveCallRecord(const sptr &connect); std::shared_ptr FindCallRecordMap(sptr object) const; std::shared_ptr RemoveCallRecordMap(sptr object); void InsertCallRecordMap(sptr object, std::shared_ptr callRecord); CallMapType CopyCallRecordMap() const; bool EmptyCallRecordMap(); bool CallRequestDone(const sptr &callStub); void Dump(std::vector &info) const; bool IsNeedToCallRequest() const; bool IsExistConnection(const sptr &connect); private: void RemoveConnectDeathRecipient(const sptr &connect); void AddConnectDeathRecipient(const sptr &connect); void OnConnectionDied(const wptr &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