2013-08-13 23:56:21 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-07-18 20:27:19 -07: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/. */
|
|
|
|
|
|
|
|
#include "Voicemail.h"
|
2013-09-03 07:38:53 -07:00
|
|
|
|
|
|
|
#include "mozilla/dom/MozVoicemailBinding.h"
|
2014-06-10 18:23:34 -07:00
|
|
|
#include "mozilla/dom/MozVoicemailEvent.h"
|
2013-02-05 01:02:15 -08:00
|
|
|
#include "nsIDOMMozVoicemailStatus.h"
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-10-28 18:58:12 -07:00
|
|
|
#include "mozilla/Preferences.h"
|
2012-07-18 20:27:19 -07:00
|
|
|
#include "mozilla/Services.h"
|
|
|
|
#include "nsDOMClassInfo.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
|
2013-03-06 01:53:19 -08:00
|
|
|
#define NS_RILCONTENTHELPER_CONTRACTID "@mozilla.org/ril/content-helper;1"
|
2013-10-28 18:58:12 -07:00
|
|
|
const char* kPrefRilNumRadioInterfaces = "ril.numRadioInterfaces";
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-03-06 01:53:19 -08:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
|
|
|
class Voicemail::Listener : public nsIVoicemailListener
|
|
|
|
{
|
|
|
|
Voicemail* mVoicemail;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_FORWARD_SAFE_NSIVOICEMAILLISTENER(mVoicemail)
|
|
|
|
|
|
|
|
Listener(Voicemail* aVoicemail)
|
|
|
|
: mVoicemail(aVoicemail)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mVoicemail);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Disconnect()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mVoicemail);
|
|
|
|
mVoicemail = nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-04-27 00:06:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS(Voicemail::Listener, nsIVoicemailListener)
|
2013-03-06 01:53:19 -08:00
|
|
|
|
|
|
|
Voicemail::Voicemail(nsPIDOMWindow* aWindow,
|
|
|
|
nsIVoicemailProvider* aProvider)
|
2014-03-31 23:13:50 -07:00
|
|
|
: DOMEventTargetHelper(aWindow)
|
2013-09-03 07:38:53 -07:00
|
|
|
, mProvider(aProvider)
|
2012-07-18 20:27:19 -07:00
|
|
|
{
|
2013-03-06 01:53:19 -08:00
|
|
|
mListener = new Listener(this);
|
|
|
|
DebugOnly<nsresult> rv = mProvider->RegisterVoicemailMsg(mListener);
|
|
|
|
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv),
|
|
|
|
"Failed registering voicemail messages with provider");
|
2012-07-18 20:27:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Voicemail::~Voicemail()
|
|
|
|
{
|
2013-03-06 01:53:19 -08:00
|
|
|
MOZ_ASSERT(mProvider && mListener);
|
|
|
|
|
|
|
|
mListener->Disconnect();
|
|
|
|
mProvider->UnregisterVoicemailMsg(mListener);
|
2012-07-18 20:27:19 -07:00
|
|
|
}
|
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
JSObject*
|
2014-04-08 15:27:18 -07:00
|
|
|
Voicemail::WrapObject(JSContext* aCx)
|
2013-09-03 07:38:53 -07:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return MozVoicemailBinding::Wrap(aCx, this);
|
2013-09-03 07:38:53 -07:00
|
|
|
}
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-10-28 18:58:12 -07:00
|
|
|
bool
|
|
|
|
Voicemail::IsValidServiceId(uint32_t aServiceId) const
|
|
|
|
{
|
|
|
|
uint32_t numClients = mozilla::Preferences::GetUint(kPrefRilNumRadioInterfaces, 1);
|
|
|
|
|
|
|
|
return aServiceId < numClients;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Voicemail::PassedOrDefaultServiceId(const Optional<uint32_t>& aServiceId,
|
|
|
|
uint32_t& aResult) const
|
|
|
|
{
|
|
|
|
if (aServiceId.WasPassed()) {
|
|
|
|
if (!IsValidServiceId(aServiceId.Value())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aResult = aServiceId.Value();
|
|
|
|
} else {
|
|
|
|
mProvider->GetVoicemailDefaultServiceId(&aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
// MozVoicemail WebIDL
|
|
|
|
|
|
|
|
already_AddRefed<nsIDOMMozVoicemailStatus>
|
2013-10-28 18:58:12 -07:00
|
|
|
Voicemail::GetStatus(const Optional<uint32_t>& aServiceId,
|
|
|
|
ErrorResult& aRv) const
|
2012-07-18 20:27:19 -07:00
|
|
|
{
|
2013-09-03 07:38:53 -07:00
|
|
|
if (!mProvider) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-10-28 18:58:12 -07:00
|
|
|
uint32_t id = 0;
|
|
|
|
if (!PassedOrDefaultServiceId(aServiceId, id)) {
|
|
|
|
aRv.Throw(NS_ERROR_INVALID_ARG);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-09-03 07:38:53 -07:00
|
|
|
nsCOMPtr<nsIDOMMozVoicemailStatus> status;
|
2013-10-28 18:58:12 -07:00
|
|
|
nsresult rv = mProvider->GetVoicemailStatus(id, getter_AddRefs(status));
|
2013-09-03 07:38:53 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aRv.Throw(rv);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status.forget();
|
2012-07-18 20:27:19 -07:00
|
|
|
}
|
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
void
|
2013-10-28 18:58:12 -07:00
|
|
|
Voicemail::GetNumber(const Optional<uint32_t>& aServiceId, nsString& aNumber,
|
|
|
|
ErrorResult& aRv) const
|
2012-07-20 17:19:38 -07:00
|
|
|
{
|
|
|
|
aNumber.SetIsVoid(true);
|
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
if (!mProvider) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-28 18:58:12 -07:00
|
|
|
uint32_t id = 0;
|
|
|
|
if (!PassedOrDefaultServiceId(aServiceId, id)) {
|
|
|
|
aRv.Throw(NS_ERROR_INVALID_ARG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
aRv = mProvider->GetVoicemailNumber(id, aNumber);
|
2012-07-20 17:19:38 -07:00
|
|
|
}
|
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
void
|
2013-10-28 18:58:12 -07:00
|
|
|
Voicemail::GetDisplayName(const Optional<uint32_t>& aServiceId, nsString& aDisplayName,
|
|
|
|
ErrorResult& aRv) const
|
2012-07-20 17:19:38 -07:00
|
|
|
{
|
|
|
|
aDisplayName.SetIsVoid(true);
|
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
if (!mProvider) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return;
|
|
|
|
}
|
2012-07-20 17:19:38 -07:00
|
|
|
|
2013-10-28 18:58:12 -07:00
|
|
|
uint32_t id = 0;
|
|
|
|
if (!PassedOrDefaultServiceId(aServiceId, id)) {
|
|
|
|
aRv.Throw(NS_ERROR_INVALID_ARG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
aRv = mProvider->GetVoicemailDisplayName(id, aDisplayName);
|
2013-09-03 07:38:53 -07:00
|
|
|
}
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-03-06 01:53:19 -08:00
|
|
|
// nsIVoicemailListener
|
2012-07-18 20:27:19 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-03-06 01:53:19 -08:00
|
|
|
Voicemail::NotifyStatusChanged(nsIDOMMozVoicemailStatus* aStatus)
|
2012-07-18 20:27:19 -07:00
|
|
|
{
|
2014-06-10 18:23:34 -07:00
|
|
|
MozVoicemailEventInit init;
|
|
|
|
init.mBubbles = false;
|
|
|
|
init.mCancelable = false;
|
|
|
|
init.mStatus = aStatus;
|
|
|
|
|
|
|
|
nsRefPtr<MozVoicemailEvent> event =
|
|
|
|
MozVoicemailEvent::Constructor(this, NS_LITERAL_STRING("statuschanged"), init);
|
|
|
|
return DispatchTrustedEvent(event);
|
2012-07-18 20:27:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2013-09-03 07:38:53 -07:00
|
|
|
NS_NewVoicemail(nsPIDOMWindow* aWindow, Voicemail** aVoicemail)
|
2012-07-18 20:27:19 -07:00
|
|
|
{
|
|
|
|
nsPIDOMWindow* innerWindow = aWindow->IsInnerWindow() ?
|
|
|
|
aWindow :
|
|
|
|
aWindow->GetCurrentInnerWindow();
|
|
|
|
|
2013-03-06 01:53:19 -08:00
|
|
|
nsCOMPtr<nsIVoicemailProvider> provider =
|
2012-07-18 20:27:19 -07:00
|
|
|
do_GetService(NS_RILCONTENTHELPER_CONTRACTID);
|
2013-03-06 01:53:19 -08:00
|
|
|
NS_ENSURE_STATE(provider);
|
2012-07-18 20:27:19 -07:00
|
|
|
|
2013-09-03 07:38:53 -07:00
|
|
|
nsRefPtr<Voicemail> voicemail = new Voicemail(innerWindow, provider);
|
2012-07-18 20:27:19 -07:00
|
|
|
voicemail.forget(aVoicemail);
|
|
|
|
return NS_OK;
|
|
|
|
}
|