mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
210 lines
5.1 KiB
C++
210 lines
5.1 KiB
C++
/* -*- 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 "mozilla/dom/BindingDeclarations.h"
|
|
#include "mozilla/dom/telephony/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 OwningTelephonyCallOrTelephonyCallGroup;
|
|
|
|
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<nsITelephonyProvider> mProvider;
|
|
nsRefPtr<Listener> mListener;
|
|
|
|
TelephonyCall* mActiveCall;
|
|
nsTArray<nsRefPtr<TelephonyCall> > mCalls;
|
|
nsRefPtr<CallsList> mCallsList;
|
|
|
|
nsRefPtr<TelephonyCallGroup> 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<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
// WebIDL
|
|
already_AddRefed<TelephonyCall>
|
|
Dial(const nsAString& aNumber, const Optional<uint32_t>& aServiceId,
|
|
ErrorResult& aRv);
|
|
|
|
already_AddRefed<TelephonyCall>
|
|
DialEmergency(const nsAString& aNumber, const Optional<uint32_t>& aServiceId,
|
|
ErrorResult& aRv);
|
|
|
|
void
|
|
StartTone(const nsAString& aDTMFChar, const Optional<uint32_t>& aServiceId,
|
|
ErrorResult& aRv);
|
|
|
|
void
|
|
StopTone(const Optional<uint32_t>& aServiceId, 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<OwningTelephonyCallOrTelephonyCallGroup>& aValue);
|
|
|
|
already_AddRefed<CallsList>
|
|
Calls() const;
|
|
|
|
already_AddRefed<TelephonyCallGroup>
|
|
ConferenceGroup() const;
|
|
|
|
IMPL_EVENT_HANDLER(incoming)
|
|
IMPL_EVENT_HANDLER(callschanged)
|
|
IMPL_EVENT_HANDLER(remoteheld)
|
|
IMPL_EVENT_HANDLER(remoteresumed)
|
|
|
|
static already_AddRefed<Telephony>
|
|
Create(nsPIDOMWindow* aOwner, ErrorResult& aRv);
|
|
|
|
void
|
|
AddCall(TelephonyCall* aCall)
|
|
{
|
|
NS_ASSERTION(!mCalls.Contains(aCall), "Already know about this one!");
|
|
mCalls.AppendElement(aCall);
|
|
UpdateActiveCall(aCall, IsActiveState(aCall->CallState()));
|
|
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<nsRefPtr<TelephonyCall> >&
|
|
CallsArray() const
|
|
{
|
|
return mCalls;
|
|
}
|
|
|
|
virtual void EventListenerAdded(nsIAtom* aType) MOZ_OVERRIDE;
|
|
|
|
private:
|
|
Telephony(nsPIDOMWindow* aOwner);
|
|
~Telephony();
|
|
|
|
void
|
|
Shutdown();
|
|
|
|
static bool
|
|
IsValidNumber(const nsAString& aNumber);
|
|
|
|
static uint32_t
|
|
GetNumServices();
|
|
|
|
static bool
|
|
IsValidServiceId(uint32_t aServiceId);
|
|
|
|
static bool
|
|
IsActiveState(uint16_t aCallState);
|
|
|
|
uint32_t
|
|
ProvidedOrDefaultServiceId(const Optional<uint32_t>& aServiceId);
|
|
|
|
bool
|
|
HasDialingCall();
|
|
|
|
bool
|
|
MatchActiveCall(TelephonyCall* aCall);
|
|
|
|
already_AddRefed<TelephonyCall>
|
|
DialInternal(uint32_t aServiceId, const nsAString& aNumber,
|
|
bool isEmergency, ErrorResult& aRv);
|
|
|
|
already_AddRefed<TelephonyCall>
|
|
CreateNewDialingCall(uint32_t aServiceId, const nsAString& aNumber);
|
|
|
|
void
|
|
NoteDialedCallFromOtherInstance(uint32_t aServiceId,
|
|
const nsAString& aNumber);
|
|
|
|
nsresult
|
|
NotifyCallsChanged(TelephonyCall* aCall);
|
|
|
|
nsresult
|
|
DispatchCallEvent(const nsAString& aType, TelephonyCall* aCall);
|
|
|
|
void
|
|
EnqueueEnumerationAck();
|
|
|
|
void
|
|
UpdateActiveCall(TelephonyCall* aCall, bool aIsActive);
|
|
|
|
already_AddRefed<TelephonyCall>
|
|
GetCall(uint32_t aServiceId, uint32_t aCallIndex);
|
|
|
|
already_AddRefed<TelephonyCall>
|
|
GetOutgoingCall();
|
|
|
|
already_AddRefed<TelephonyCall>
|
|
GetCallFromEverywhere(uint32_t aServiceId, uint32_t aCallIndex);
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_telephony_telephony_h__
|