/* -*- 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_telephony_telephony_h__ #define mozilla_dom_telephony_telephony_h__ #include "TelephonyCommon.h" #include "nsITelephonyProvider.h" // Need to include TelephonyCall.h because we have inline methods that // assume they see the definition of TelephonyCall. #include "TelephonyCall.h" class nsPIDOMWindow; namespace mozilla { namespace dom { class TelephonyCallOrTelephonyCallGroupReturnValue; } } BEGIN_TELEPHONY_NAMESPACE class Telephony MOZ_FINAL : public nsDOMEventTargetHelper { /** * Class Telephony doesn't actually inherit nsITelephonyListener. * Instead, it owns an nsITelephonyListener derived instance mListener * and passes it to nsITelephonyProvider. The onreceived events are first * delivered to mListener and then forwarded to its owner, Telephony. See * also bug 775997 comment #51. */ class Listener; class EnumerationAck; friend class EnumerationAck; nsCOMPtr mProvider; nsRefPtr mListener; TelephonyCall* mActiveCall; nsTArray > mCalls; nsRefPtr mCallsList; nsRefPtr mGroup; bool mEnumerated; public: NS_DECL_ISUPPORTS_INHERITED NS_DECL_NSITELEPHONYLISTENER NS_REALLY_FORWARD_NSIDOMEVENTTARGET(nsDOMEventTargetHelper) NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(Telephony, nsDOMEventTargetHelper) nsPIDOMWindow* GetParentObject() const { return GetOwner(); } // WrapperCache virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aScope) MOZ_OVERRIDE; // WebIDL already_AddRefed Dial(const nsAString& aNumber, ErrorResult& aRv); already_AddRefed DialEmergency(const nsAString& aNumber, ErrorResult& aRv); bool GetMuted(ErrorResult& aRv) const; void SetMuted(bool aMuted, ErrorResult& aRv); bool GetSpeakerEnabled(ErrorResult& aRv) const; void SetSpeakerEnabled(bool aEnabled, ErrorResult& aRv); void GetActive(Nullable& aValue); already_AddRefed Calls() const; already_AddRefed ConferenceGroup() const; void StartTone(const nsAString& aDTMF, ErrorResult& aRv); void StopTone(ErrorResult& aRv); IMPL_EVENT_HANDLER(incoming) IMPL_EVENT_HANDLER(callschanged) IMPL_EVENT_HANDLER(remoteheld) IMPL_EVENT_HANDLER(remoteresumed) static already_AddRefed Create(nsPIDOMWindow* aOwner, ErrorResult& aRv); static bool CheckPermission(nsPIDOMWindow* aOwner); void AddCall(TelephonyCall* aCall) { NS_ASSERTION(!mCalls.Contains(aCall), "Already know about this one!"); mCalls.AppendElement(aCall); UpdateActiveCall(aCall, true); NotifyCallsChanged(aCall); } void RemoveCall(TelephonyCall* aCall) { NS_ASSERTION(mCalls.Contains(aCall), "Didn't know about this one!"); mCalls.RemoveElement(aCall); UpdateActiveCall(aCall, false); NotifyCallsChanged(aCall); } nsITelephonyProvider* Provider() const { return mProvider; } const nsTArray >& CallsArray() const { return mCalls; } virtual void EventListenerAdded(nsIAtom* aType) MOZ_OVERRIDE; private: Telephony(); ~Telephony(); already_AddRefed CreateNewDialingCall(const nsAString& aNumber); void NoteDialedCallFromOtherInstance(const nsAString& aNumber); nsresult NotifyCallsChanged(TelephonyCall* aCall); already_AddRefed DialInternal(bool isEmergency, const nsAString& aNumber, ErrorResult& aRv); nsresult DispatchCallEvent(const nsAString& aType, TelephonyCall* aCall); void EnqueueEnumerationAck(); void UpdateActiveCall(TelephonyCall* aCall, bool aIsAdding); already_AddRefed GetCall(uint32_t aCallIndex); bool MoveCall(uint32_t aCallIndex, bool aIsConference); void Shutdown(); }; END_TELEPHONY_NAMESPACE #endif // mozilla_dom_telephony_telephony_h__