/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef mozilla_dom_icc_IccParent_h #define mozilla_dom_icc_IccParent_h #include "mozilla/dom/icc/PIccParent.h" #include "mozilla/dom/icc/PIccRequestParent.h" #include "nsIIccService.h" namespace mozilla { namespace dom { namespace icc { class IccParent final : public PIccParent , public nsIIccListener { public: NS_DECL_ISUPPORTS NS_DECL_NSIICCLISTENER explicit IccParent(uint32_t aServiceId); protected: virtual ~IccParent() { MOZ_COUNT_DTOR(IccParent); } virtual void ActorDestroy(ActorDestroyReason aWhy) override; virtual bool RecvInit( OptionalIccInfoData* aInfoData, uint32_t* aCardState) override; virtual bool RecvStkResponse(const nsString& aCmd, const nsString& aResponse) override; virtual bool RecvStkMenuSelection(const uint16_t& aItemIdentifier, const bool& aHelpRequested) override; virtual bool RecvStkTimerExpiration(const uint16_t& aTimerId, const uint32_t& aTimerValue) override; virtual bool RecvStkEventDownload(const nsString& aEvent) override; virtual PIccRequestParent* AllocPIccRequestParent(const IccRequest& aRequest) override; virtual bool DeallocPIccRequestParent(PIccRequestParent* aActor) override; virtual bool RecvPIccRequestConstructor(PIccRequestParent* aActor, const IccRequest& aRequest) override; private: IccParent(); nsCOMPtr mIcc; }; class IccRequestParent final : public PIccRequestParent , public nsIIccCallback { friend class IccParent; public: NS_DECL_ISUPPORTS NS_DECL_NSIICCCALLBACK explicit IccRequestParent(nsIIcc* icc); protected: virtual void ActorDestroy(ActorDestroyReason why) override; private: ~IccRequestParent() { MOZ_COUNT_DTOR(IccRequestParent); } bool DoRequest(const GetCardLockEnabledRequest& aRequest); bool DoRequest(const UnlockCardLockRequest& aRequest); bool DoRequest(const SetCardLockEnabledRequest& aRequest); bool DoRequest(const ChangeCardLockPasswordRequest& aRequest); bool DoRequest(const GetCardLockRetryCountRequest& aRequest); bool DoRequest(const MatchMvnoRequest& aRequest); bool DoRequest(const GetServiceStateEnabledRequest& aRequest); bool DoRequest(const ReadContactsRequest& aRequest); bool DoRequest(const UpdateContactRequest& aRequest); nsresult SendReply(const IccReply& aReply); nsCOMPtr mIcc; }; } // namespace icc } // namespace dom } // namespace mozilla #endif // mozilla_dom_icc_IccParent_h