2013-10-09 09:40:12 +00:00
|
|
|
/* 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_h
|
|
|
|
#define mozilla_dom_Icc_h
|
|
|
|
|
2014-11-11 10:16:57 +00:00
|
|
|
#include "mozilla/dom/MozIccBinding.h"
|
2014-04-01 06:13:50 +00:00
|
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
2014-09-19 07:53:05 +00:00
|
|
|
|
2015-01-13 10:03:44 +00:00
|
|
|
class nsIIcc;
|
2014-09-19 07:53:05 +00:00
|
|
|
class nsIIccInfo;
|
|
|
|
class nsIIccProvider;
|
2013-10-09 09:40:12 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
class DOMRequest;
|
2014-10-01 18:43:26 +00:00
|
|
|
class OwningMozIccInfoOrMozGsmIccInfoOrMozCdmaIccInfo;
|
2014-12-26 02:11:20 +00:00
|
|
|
class Promise;
|
2014-05-19 20:37:58 +00:00
|
|
|
|
2014-04-01 06:13:50 +00:00
|
|
|
class Icc MOZ_FINAL : public DOMEventTargetHelper
|
2013-10-09 09:40:12 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-09-19 07:53:05 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(Icc, DOMEventTargetHelper)
|
2014-04-01 06:13:50 +00:00
|
|
|
NS_REALLY_FORWARD_NSIDOMEVENTTARGET(DOMEventTargetHelper)
|
2013-10-09 09:40:12 +00:00
|
|
|
|
2015-01-13 10:03:44 +00:00
|
|
|
Icc(nsPIDOMWindow* aWindow, long aClientId,
|
|
|
|
nsIIcc* aHandler, nsIIccInfo* aIccInfo);
|
2013-10-09 09:40:12 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
Shutdown();
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NotifyEvent(const nsAString& aName);
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NotifyStkEvent(const nsAString& aName, const nsAString& aMessage);
|
|
|
|
|
|
|
|
nsString
|
|
|
|
GetIccId()
|
|
|
|
{
|
|
|
|
return mIccId;
|
|
|
|
}
|
|
|
|
|
2014-09-19 07:53:05 +00:00
|
|
|
void
|
|
|
|
UpdateIccInfo(nsIIccInfo* aIccInfo);
|
|
|
|
|
2013-10-09 09:40:12 +00:00
|
|
|
nsPIDOMWindow*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
return GetOwner();
|
|
|
|
}
|
|
|
|
|
|
|
|
// WrapperCache
|
|
|
|
virtual JSObject*
|
2014-04-08 22:27:18 +00:00
|
|
|
WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
2013-10-09 09:40:12 +00:00
|
|
|
|
|
|
|
// MozIcc WebIDL
|
2014-09-19 07:53:05 +00:00
|
|
|
void
|
|
|
|
GetIccInfo(Nullable<OwningMozIccInfoOrMozGsmIccInfoOrMozCdmaIccInfo>& aIccInfo) const;
|
2013-10-09 09:40:12 +00:00
|
|
|
|
2014-09-03 11:31:00 +00:00
|
|
|
Nullable<IccCardState>
|
|
|
|
GetCardState() const;
|
2013-10-09 09:40:12 +00:00
|
|
|
|
|
|
|
void
|
2014-01-09 17:39:36 +00:00
|
|
|
SendStkResponse(const JSContext* aCx, JS::Handle<JS::Value> aCommand,
|
|
|
|
JS::Handle<JS::Value> aResponse, ErrorResult& aRv);
|
2013-10-09 09:40:12 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
SendStkMenuSelection(uint16_t aItemIdentifier, bool aHelpRequested,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
void
|
2014-01-09 17:39:36 +00:00
|
|
|
SendStkTimerExpiration(const JSContext* aCx, JS::Handle<JS::Value> aTimer,
|
2013-10-09 09:40:12 +00:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
void
|
2014-01-09 17:39:36 +00:00
|
|
|
SendStkEventDownload(const JSContext* aCx, JS::Handle<JS::Value> aEvent,
|
2013-10-09 09:40:12 +00:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
already_AddRefed<DOMRequest>
|
2014-11-11 10:16:57 +00:00
|
|
|
GetCardLock(IccLockType aLockType, ErrorResult& aRv);
|
2013-10-09 09:40:12 +00:00
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
already_AddRefed<DOMRequest>
|
2014-11-11 10:16:57 +00:00
|
|
|
UnlockCardLock(const IccUnlockCardLockOptions& aOptions, ErrorResult& aRv);
|
2013-10-09 09:40:12 +00:00
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
already_AddRefed<DOMRequest>
|
2014-11-11 10:16:57 +00:00
|
|
|
SetCardLock(const IccSetCardLockOptions& aOptions, ErrorResult& aRv);
|
2013-10-09 09:40:12 +00:00
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
already_AddRefed<DOMRequest>
|
2014-11-11 10:16:57 +00:00
|
|
|
GetCardLockRetryCount(IccLockType aLockType, ErrorResult& aRv);
|
2013-10-09 09:40:12 +00:00
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
already_AddRefed<DOMRequest>
|
2014-12-12 03:08:27 +00:00
|
|
|
ReadContacts(IccContactType aContactType, ErrorResult& aRv);
|
2013-10-09 09:40:12 +00:00
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
already_AddRefed<DOMRequest>
|
2014-12-12 03:08:27 +00:00
|
|
|
UpdateContact(const JSContext* aCx, IccContactType aContactType,
|
2014-01-09 17:39:36 +00:00
|
|
|
JS::Handle<JS::Value> aContact, const nsAString& aPin2,
|
2013-10-09 09:40:12 +00:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-05-19 20:37:58 +00:00
|
|
|
already_AddRefed<DOMRequest>
|
2014-12-12 11:04:00 +00:00
|
|
|
MatchMvno(IccMvnoType aMvnoType, const nsAString& aMatchData,
|
2014-01-28 10:58:00 +00:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-12-26 02:11:20 +00:00
|
|
|
already_AddRefed<Promise>
|
|
|
|
GetServiceState(IccService aService, ErrorResult& aRv);
|
|
|
|
|
2013-10-09 09:40:12 +00:00
|
|
|
IMPL_EVENT_HANDLER(iccinfochange)
|
|
|
|
IMPL_EVENT_HANDLER(cardstatechange)
|
|
|
|
IMPL_EVENT_HANDLER(stkcommand)
|
|
|
|
IMPL_EVENT_HANDLER(stksessionend)
|
|
|
|
|
|
|
|
private:
|
2015-01-13 10:03:44 +00:00
|
|
|
// Put definition of the destructor in Icc.cpp to ensure forward declaration
|
|
|
|
// of nsIIccProvider, nsIIcc for the auto-generated .cpp file (i.e.,
|
|
|
|
// MozIccManagerBinding.cpp) that includes this header.
|
2015-03-12 15:55:50 +00:00
|
|
|
~Icc();
|
2015-03-03 10:06:46 +00:00
|
|
|
|
2013-10-09 09:40:12 +00:00
|
|
|
bool mLive;
|
|
|
|
uint32_t mClientId;
|
|
|
|
nsString mIccId;
|
2015-01-13 10:03:44 +00:00
|
|
|
// mProvider is a xpcom service and will be released at Shutdown(), so it
|
2013-10-09 09:40:12 +00:00
|
|
|
// doesn't need to be cycle collected.
|
|
|
|
nsCOMPtr<nsIIccProvider> mProvider;
|
2015-01-13 10:03:44 +00:00
|
|
|
// mHandler will be released at Shutdown(), so there is no need to join cycle
|
|
|
|
// collection.
|
|
|
|
nsCOMPtr<nsIIcc> mHandler;
|
2014-09-19 07:53:05 +00:00
|
|
|
Nullable<OwningMozIccInfoOrMozGsmIccInfoOrMozCdmaIccInfo> mIccInfo;
|
2013-10-09 09:40:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_icc_Icc_h
|